Skip to content

Instantly share code, notes, and snippets.

@alspringsteen
Last active December 26, 2015 15:49
Show Gist options
  • Save alspringsteen/7175682 to your computer and use it in GitHub Desktop.
Save alspringsteen/7175682 to your computer and use it in GitHub Desktop.
Grace's Map
This file has been truncated, but you can view the full file.
<!DOCTYPE html>
<head>
<title>Where is Grace?</title>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.css" />
<!--[if lte IE 8]>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.ie.css" />
<![endif]-->
<script src="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.js"></script>
<script>
(function () {
'use strict';
L.TileLayer.Provider = L.TileLayer.extend({
initialize: function (arg, options) {
var providers = L.TileLayer.Provider.providers;
var parts = arg.split('.');
var providerName = parts[0];
var variantName = parts[1];
if (!providers[providerName]) {
throw 'No such provider (' + providerName + ')';
}
var provider = {
url: providers[providerName].url,
options: providers[providerName].options
};
// overwrite values in provider from variant.
if (variantName && 'variants' in providers[providerName]) {
if (!(variantName in providers[providerName].variants)) {
throw 'No such name in provider (' + variantName + ')';
}
var variant = providers[providerName].variants[variantName];
provider = {
url: variant.url || provider.url,
options: L.Util.extend({}, provider.options, variant.options)
};
} else if (typeof provider.url === 'function') {
provider.url = provider.url(parts.splice(1).join('.'));
}
// replace attribution placeholders with their values from toplevel provider attribution,
// recursively
var attributionReplacer = function (attr) {
if (attr.indexOf('{attribution.') === -1) {
return attr;
}
return attr.replace(/\{attribution.(\w*)\}/,
function (match, attributionName) {
return attributionReplacer(providers[attributionName].options.attribution);
}
);
};
provider.options.attribution = attributionReplacer(provider.options.attribution);
// Compute final options combining provider options with any user overrides
var layerOpts = L.Util.extend({}, provider.options, options);
L.TileLayer.prototype.initialize.call(this, provider.url, layerOpts);
}
});
/**
* Definition of providers.
* see http://leafletjs.com/reference.html#tilelayer for options in the options map.
*/
//jshint maxlen:220
L.TileLayer.Provider.providers = {
OpenStreetMap: {
url: 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
options: {
attribution:
'&copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, ' +
'<a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>'
},
variants: {
Mapnik: {},
BlackAndWhite: {
url: 'http://{s}.www.toolserver.org/tiles/bw-mapnik/{z}/{x}/{y}.png'
},
DE: {
url: 'http://{s}.tile.openstreetmap.de/tiles/osmde/{z}/{x}/{y}.png'
},
HOT: {
url: 'http://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png',
options: {
attribution: '{attribution.OpenStreetMap}, Tiles courtesy of <a href="http://hot.openstreetmap.org/" target="_blank">Humanitarian OpenStreetMap Team</a>'
}
}
}
},
Thunderforest: {
url: 'http://{s}.tile.opencyclemap.org/cycle/{z}/{x}/{y}.png',
options: {
attribution: '{attribution.OpenCycleMap}'
},
variants: {
OpenCycleMap: {},
Transport: {
url: 'http://{s}.tile2.opencyclemap.org/transport/{z}/{x}/{y}.png'
},
Landscape: {
url: 'http://{s}.tile3.opencyclemap.org/landscape/{z}/{x}/{y}.png'
},
Outdoors: {
url: 'http://{s}.tile.thunderforest.com/outdoors/{z}/{x}/{y}.png'
}
}
},
Stamen: {
url: 'http://{s}.tile.stamen.com/toner/{z}/{x}/{y}.png',
options: {
attribution:
'Map tiles by <a href="http://stamen.com">Stamen Design</a>, ' +
'<a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a> &mdash; ' +
'Map data {attribution.OpenStreetMap}',
subdomains: 'abcd',
minZoom: 0,
maxZoom: 20
},
variants: {
Toner: {},
TonerBackground: {
url: 'http://{s}.tile.stamen.com/toner-background/{z}/{x}/{y}.png'
},
TonerHybrid: {
url: 'http://{s}.tile.stamen.com/toner-hybrid/{z}/{x}/{y}.png'
},
TonerLines: {
url: 'http://{s}.tile.stamen.com/toner-lines/{z}/{x}/{y}.png'
},
TonerLabels: {
url: 'http://{s}.tile.stamen.com/toner-labels/{z}/{x}/{y}.png'
},
TonerLite: {
url: 'http://{s}.tile.stamen.com/toner-lite/{z}/{x}/{y}.png'
},
Terrain: {
url: 'http://{s}.tile.stamen.com/terrain/{z}/{x}/{y}.jpg',
options: {
minZoom: 4,
maxZoom: 18
}
},
TerrainBackground: {
url: 'http://{s}.tile.stamen.com/terrain-background/{z}/{x}/{y}.jpg',
options: {
minZoom: 4,
maxZoom: 18
}
},
Watercolor: {
url: 'http://{s}.tile.stamen.com/watercolor/{z}/{x}/{y}.jpg',
options: {
minZoom: 3,
maxZoom: 16
}
}
}
},
OpenWeatherMap: {
options: {
attribution: 'Map data &copy; <a href="http://openweathermap.org">OpenWeatherMap</a>',
opacity: 0.5
},
variants: {
Clouds: {
url: 'http://{s}.tile.openweathermap.org/map/clouds/{z}/{x}/{y}.png'
},
CloudsClassic: {
url: 'http://{s}.tile.openweathermap.org/map/clouds_cls/{z}/{x}/{y}.png'
},
Precipitation: {
url: 'http://{s}.tile.openweathermap.org/map/precipitation/{z}/{x}/{y}.png'
},
PrecipitationClassic: {
url: 'http://{s}.tile.openweathermap.org/map/precipitation_cls/{z}/{x}/{y}.png'
},
Rain: {
url: 'http://{s}.tile.openweathermap.org/map/rain/{z}/{x}/{y}.png'
},
RainClassic: {
url: 'http://{s}.tile.openweathermap.org/map/rain_cls/{z}/{x}/{y}.png'
},
Pressure: {
url: 'http://{s}.tile.openweathermap.org/map/pressure/{z}/{x}/{y}.png'
},
PressureContour: {
url: 'http://{s}.tile.openweathermap.org/map/pressure_cntr/{z}/{x}/{y}.png'
},
Wind: {
url: 'http://{s}.tile.openweathermap.org/map/wind/{z}/{x}/{y}.png'
},
Temperature: {
url: 'http://{s}.tile.openweathermap.org/map/temp/{z}/{x}/{y}.png'
},
Snow: {
url: 'http://{s}.tile.openweathermap.org/map/snow/{z}/{x}/{y}.png'
}
}
},
};
L.tileLayer.provider = function (provider, options) {
return new L.TileLayer.Provider(provider, options);
};
L.Control.Layers.Provided = L.Control.Layers.extend({
initialize: function (base, overlay, options) {
var first;
var labelFormatter = function (label) {
return label.replace(/\./g, ': ').replace(/([a-z])([A-Z])/g, '$1 $2');
};
if (base.length) {
(function () {
var out = {},
len = base.length,
i = 0;
while (i < len) {
if (typeof base[i] === 'string') {
if (i === 0) {
first = L.tileLayer.provider(base[0]);
out[labelFormatter(base[i])] = first;
} else {
out[labelFormatter(base[i])] = L.tileLayer.provider(base[i]);
}
}
i++;
}
base = out;
}());
this._first = first;
}
if (overlay && overlay.length) {
(function () {
var out = {},
len = overlay.length,
i = 0;
while (i < len) {
if (typeof base[i] === 'string') {
out[labelFormatter(overlay[i])] = L.tileLayer.provider(overlay[i]);
}
i++;
}
overlay = out;
}());
}
L.Control.Layers.prototype.initialize.call(this, base, overlay, options);
},
onAdd: function (map) {
this._first.addTo(map);
return L.Control.Layers.prototype.onAdd.call(this, map);
}
});
L.control.layers.provided = function (baseLayers, overlays, options) {
return new L.Control.Layers.Provided(baseLayers, overlays, options);
};
}());
</script>
<style>
body {
margin: 0;
font-size: 14px;
font-family: "Helvetica Neue", Helvetica;
position: relative;
}
#footer {
position: absolute;
top: 0;
}
#footer {
display: block;
font-weight: 300;
text-shadow: 0 1px 0 #fff;
background-color: #fff;
border-radius: 10px;
padding: 15px 15px 15px;
border-top:2px solid #d9d9d9;
border-bottom: 2px solid #d9d9d9;
border-left: 2px solid #d9d9d9;
border-right: 2px solid #d9d9d9;
box-shadow: 0 0 15px rgba(0,0,0,0.2);
top: 10px;
right: 10px;
opacity: 0.9;
z-index: 2;
font-size: 32px;
text-align: right;
}
#footer.inverted{
color: #fff;
text-shadow: 0 1px 4px #000;
}
#map {
position: fixed;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
z-index: 1;
}
</style>
</head>
<body>
<div id="body">
<div id="map" style="width: 100%; height: 100%"></div>
<div id="footer">Where is Grace?!</div>
</div>
<script>
window.onload = function () {
var states = {"type":"FeatureCollection","features":[
{"type":"Feature","id":"01","properties":{"name":"Alabama","density":94.65,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-87.359296,35.00118],[-85.606675,34.984749],[-85.431413,34.124869],[-85.184951,32.859696],[-85.069935,32.580372],[-84.960397,32.421541],[-85.004212,32.322956],[-84.889196,32.262709],[-85.058981,32.13674],[-85.053504,32.01077],[-85.141136,31.840985],[-85.042551,31.539753],[-85.113751,31.27686],[-85.004212,31.003013],[-85.497137,30.997536],[-87.600282,30.997536],[-87.633143,30.86609],[-87.408589,30.674397],[-87.446927,30.510088],[-87.37025,30.427934],[-87.518128,30.280057],[-87.655051,30.247195],[-87.90699,30.411504],[-87.934375,30.657966],[-88.011052,30.685351],[-88.10416,30.499135],[-88.137022,30.318396],[-88.394438,30.367688],[-88.471115,31.895754],[-88.241084,33.796253],[-88.098683,34.891641],[-88.202745,34.995703],[-87.359296,35.00118]]]}},
{"type":"Feature","id":"02","properties":{"name":"Alaska","density":1.264,"visited":0},"geometry":{"type":"MultiPolygon","coordinates":[[[[-131.602021,55.117982],[-131.569159,55.28229],[-131.355558,55.183705],[-131.38842,55.01392],[-131.645836,55.035827],[-131.602021,55.117982]]],[[[-131.832052,55.42469],[-131.645836,55.304197],[-131.749898,55.128935],[-131.832052,55.189182],[-131.832052,55.42469]]],[[[-132.976733,56.437924],[-132.735747,56.459832],[-132.631685,56.421493],[-132.664547,56.273616],[-132.878148,56.240754],[-133.069841,56.333862],[-132.976733,56.437924]]],[[[-133.595627,56.350293],[-133.162949,56.317431],[-133.05341,56.125739],[-132.620732,55.912138],[-132.472854,55.780691],[-132.4619,55.671152],[-132.357838,55.649245],[-132.341408,55.506844],[-132.166146,55.364444],[-132.144238,55.238474],[-132.029222,55.276813],[-131.97993,55.178228],[-131.958022,54.789365],[-132.029222,54.701734],[-132.308546,54.718165],[-132.385223,54.915335],[-132.483808,54.898904],[-132.686455,55.046781],[-132.746701,54.997489],[-132.916486,55.046781],[-132.889102,54.898904],[-132.73027,54.937242],[-132.626209,54.882473],[-132.675501,54.679826],[-132.867194,54.701734],[-133.157472,54.95915],[-133.239626,55.090597],[-133.223195,55.22752],[-133.453227,55.216566],[-133.453227,55.320628],[-133.277964,55.331582],[-133.102702,55.42469],[-133.17938,55.588998],[-133.387503,55.62186],[-133.420365,55.884753],[-133.497042,56.0162],[-133.639442,55.923092],[-133.694212,56.070969],[-133.546335,56.142169],[-133.666827,56.311955],[-133.595627,56.350293]]],[[[-133.738027,55.556137],[-133.546335,55.490413],[-133.414888,55.572568],[-133.283441,55.534229],[-133.420365,55.386352],[-133.633966,55.430167],[-133.738027,55.556137]]],[[[-133.907813,56.930849],[-134.050213,57.029434],[-133.885905,57.095157],[-133.343688,57.002049],[-133.102702,57.007526],[-132.932917,56.82131],[-132.620732,56.667956],[-132.653593,56.55294],[-132.817901,56.492694],[-133.042456,56.520078],[-133.201287,56.448878],[-133.420365,56.492694],[-133.66135,56.448878],[-133.710643,56.684386],[-133.688735,56.837741],[-133.869474,56.843218],[-133.907813,56.930849]]],[[[-134.115936,56.48174],[-134.25286,56.558417],[-134.400737,56.722725],[-134.417168,56.848695],[-134.296675,56.908941],[-134.170706,56.848695],[-134.143321,56.952757],[-133.748981,56.772017],[-133.710643,56.596755],[-133.847566,56.574848],[-133.935197,56.377678],[-133.836612,56.322908],[-133.957105,56.092877],[-134.110459,56.142169],[-134.132367,55.999769],[-134.230952,56.070969],[-134.291198,56.350293],[-134.115936,56.48174]]],[[[-134.636246,56.28457],[-134.669107,56.169554],[-134.806031,56.235277],[-135.178463,56.67891],[-135.413971,56.810356],[-135.331817,56.914418],[-135.424925,57.166357],[-135.687818,57.369004],[-135.419448,57.566174],[-135.298955,57.48402],[-135.063447,57.418296],[-134.849846,57.407343],[-134.844369,57.248511],[-134.636246,56.728202],[-134.636246,56.28457]]],[[[-134.712923,58.223407],[-134.373353,58.14673],[-134.176183,58.157683],[-134.187137,58.081006],[-133.902336,57.807159],[-134.099505,57.850975],[-134.148798,57.757867],[-133.935197,57.615466],[-133.869474,57.363527],[-134.083075,57.297804],[-134.154275,57.210173],[-134.499322,57.029434],[-134.603384,57.034911],[-134.6472,57.226604],[-134.575999,57.341619],[-134.608861,57.511404],[-134.729354,57.719528],[-134.707446,57.829067],[-134.784123,58.097437],[-134.91557,58.212453],[-134.953908,58.409623],[-134.712923,58.223407]]],[[[-135.857603,57.330665],[-135.715203,57.330665],[-135.567326,57.149926],[-135.633049,57.023957],[-135.857603,56.996572],[-135.824742,57.193742],[-135.857603,57.330665]]],[[[-136.279328,58.206976],[-135.978096,58.201499],[-135.780926,58.28913],[-135.496125,58.168637],[-135.64948,58.037191],[-135.59471,57.987898],[-135.45231,58.135776],[-135.107263,58.086483],[-134.91557,57.976944],[-135.025108,57.779775],[-134.937477,57.763344],[-134.822462,57.500451],[-135.085355,57.462112],[-135.572802,57.675713],[-135.556372,57.456635],[-135.709726,57.369004],[-135.890465,57.407343],[-136.000004,57.544266],[-136.208128,57.637374],[-136.366959,57.829067],[-136.569606,57.916698],[-136.558652,58.075529],[-136.421728,58.130299],[-136.377913,58.267222],[-136.279328,58.206976]]],[[[-147.079854,60.200582],[-147.501579,59.948643],[-147.53444,59.850058],[-147.874011,59.784335],[-147.80281,59.937689],[-147.435855,60.09652],[-147.205824,60.271782],[-147.079854,60.200582]]],[[[-147.561825,60.578491],[-147.616594,60.370367],[-147.758995,60.156767],[-147.956165,60.227967],[-147.791856,60.474429],[-147.561825,60.578491]]],[[[-147.786379,70.245291],[-147.682318,70.201475],[-147.162008,70.15766],[-146.888161,70.185044],[-146.510252,70.185044],[-146.099482,70.146706],[-145.858496,70.168614],[-145.622988,70.08646],[-145.195787,69.993352],[-144.620708,69.971444],[-144.461877,70.026213],[-144.078491,70.059075],[-143.914183,70.130275],[-143.497935,70.141229],[-143.503412,70.091936],[-143.25695,70.119321],[-142.747594,70.042644],[-142.402547,69.916674],[-142.079408,69.856428],[-142.008207,69.801659],[-141.712453,69.790705],[-141.433129,69.697597],[-141.378359,69.63735],[-141.208574,69.686643],[-141.00045,69.648304],[-141.00045,60.304644],[-140.53491,60.22249],[-140.474664,60.310121],[-139.987216,60.184151],[-139.696939,60.342983],[-139.088998,60.359413],[-139.198537,60.091043],[-139.045183,59.997935],[-138.700135,59.910304],[-138.623458,59.767904],[-137.604747,59.242118],[-137.445916,58.908024],[-137.265177,59.001132],[-136.827022,59.159963],[-136.580559,59.16544],[-136.465544,59.285933],[-136.476498,59.466672],[-136.301236,59.466672],[-136.25742,59.625503],[-135.945234,59.663842],[-135.479694,59.800766],[-135.025108,59.565257],[-135.068924,59.422857],[-134.959385,59.280456],[-134.701969,59.247595],[-134.378829,59.033994],[-134.400737,58.973748],[-134.25286,58.858732],[-133.842089,58.727285],[-133.173903,58.152206],[-133.075318,57.998852],[-132.867194,57.845498],[-132.560485,57.505928],[-132.253777,57.21565],[-132.368792,57.095157],[-132.05113,57.051341],[-132.127807,56.876079],[-131.870391,56.804879],[-131.837529,56.602232],[-131.580113,56.613186],[-131.087188,56.405062],[-130.78048,56.366724],[-130.621648,56.268139],[-130.468294,56.240754],[-130.424478,56.142169],[-130.101339,56.114785],[-130.002754,55.994292],[-130.150631,55.769737],[-130.128724,55.583521],[-129.986323,55.276813],[-130.095862,55.200136],[-130.336847,54.920812],[-130.687372,54.718165],[-130.785957,54.822227],[-130.917403,54.789365],[-131.010511,54.997489],[-130.983126,55.08512],[-131.092665,55.189182],[-130.862634,55.298721],[-130.928357,55.337059],[-131.158389,55.200136],[-131.284358,55.287767],[-131.426759,55.238474],[-131.843006,55.457552],[-131.700606,55.698537],[-131.963499,55.616383],[-131.974453,55.49589],[-132.182576,55.588998],[-132.226392,55.704014],[-132.083991,55.829984],[-132.127807,55.955953],[-132.324977,55.851892],[-132.522147,56.076446],[-132.642639,56.032631],[-132.719317,56.218847],[-132.527624,56.339339],[-132.341408,56.339339],[-132.396177,56.487217],[-132.297592,56.67891],[-132.450946,56.673433],[-132.768609,56.837741],[-132.993164,57.034911],[-133.51895,57.177311],[-133.507996,57.577128],[-133.677781,57.62642],[-133.639442,57.790728],[-133.814705,57.834544],[-134.072121,58.053622],[-134.143321,58.168637],[-134.586953,58.206976],[-135.074401,58.502731],[-135.282525,59.192825],[-135.38111,59.033994],[-135.337294,58.891593],[-135.140124,58.617746],[-135.189417,58.573931],[-135.05797,58.349376],[-135.085355,58.201499],[-135.277048,58.234361],[-135.430402,58.398669],[-135.633049,58.426053],[-135.91785,58.382238],[-135.912373,58.617746],[-136.087635,58.814916],[-136.246466,58.75467],[-136.876314,58.962794],[-136.931084,58.902547],[-136.586036,58.836824],[-136.317666,58.672516],[-136.213604,58.667039],[-136.180743,58.535592],[-136.043819,58.382238],[-136.388867,58.294607],[-136.591513,58.349376],[-136.59699,58.212453],[-136.859883,58.316515],[-136.947514,58.393192],[-137.111823,58.393192],[-137.566409,58.590362],[-137.900502,58.765624],[-137.933364,58.869686],[-138.11958,59.02304],[-138.634412,59.132579],[-138.919213,59.247595],[-139.417615,59.379041],[-139.746231,59.505011],[-139.718846,59.641934],[-139.625738,59.598119],[-139.5162,59.68575],[-139.625738,59.88292],[-139.488815,59.992458],[-139.554538,60.041751],[-139.801,59.833627],[-140.315833,59.696704],[-140.92925,59.745996],[-141.444083,59.871966],[-141.46599,59.970551],[-141.706976,59.948643],[-141.964392,60.019843],[-142.539471,60.085566],[-142.873564,60.091043],[-143.623905,60.036274],[-143.892275,59.997935],[-144.231845,60.140336],[-144.65357,60.206059],[-144.785016,60.29369],[-144.834309,60.441568],[-145.124586,60.430614],[-145.223171,60.299167],[-145.738004,60.474429],[-145.820158,60.551106],[-146.351421,60.408706],[-146.608837,60.238921],[-146.718376,60.397752],[-146.608837,60.485383],[-146.455483,60.463475],[-145.951604,60.578491],[-146.017328,60.666122],[-146.252836,60.622307],[-146.345944,60.737322],[-146.565022,60.753753],[-146.784099,61.044031],[-146.866253,60.972831],[-147.172962,60.934492],[-147.271547,60.972831],[-147.375609,60.879723],[-147.758995,60.912584],[-147.775426,60.808523],[-148.032842,60.781138],[-148.153334,60.819476],[-148.065703,61.005692],[-148.175242,61.000215],[-148.350504,60.803046],[-148.109519,60.737322],[-148.087611,60.594922],[-147.939734,60.441568],[-148.027365,60.277259],[-148.219058,60.332029],[-148.273827,60.249875],[-148.087611,60.217013],[-147.983549,59.997935],[-148.251919,59.95412],[-148.399797,59.997935],[-148.635305,59.937689],[-148.755798,59.986981],[-149.067984,59.981505],[-149.05703,60.063659],[-149.204907,60.008889],[-149.287061,59.904827],[-149.418508,59.997935],[-149.582816,59.866489],[-149.511616,59.806242],[-149.741647,59.729565],[-149.949771,59.718611],[-150.031925,59.61455],[-150.25648,59.521442],[-150.409834,59.554303],[-150.579619,59.444764],[-150.716543,59.450241],[-151.001343,59.225687],[-151.308052,59.209256],[-151.406637,59.280456],[-151.592853,59.159963],[-151.976239,59.253071],[-151.888608,59.422857],[-151.636669,59.483103],[-151.47236,59.472149],[-151.423068,59.537872],[-151.127313,59.669319],[-151.116359,59.778858],[-151.505222,59.63098],[-151.828361,59.718611],[-151.8667,59.778858],[-151.702392,60.030797],[-151.423068,60.211536],[-151.379252,60.359413],[-151.297098,60.386798],[-151.264237,60.545629],[-151.406637,60.720892],[-151.06159,60.786615],[-150.404357,61.038554],[-150.245526,60.939969],[-150.042879,60.912584],[-149.741647,61.016646],[-150.075741,61.15357],[-150.207187,61.257632],[-150.47008,61.246678],[-150.656296,61.29597],[-150.711066,61.252155],[-151.023251,61.180954],[-151.165652,61.044031],[-151.477837,61.011169],[-151.800977,60.852338],[-151.833838,60.748276],[-152.080301,60.693507],[-152.13507,60.578491],[-152.310332,60.507291],[-152.392486,60.304644],[-152.732057,60.173197],[-152.567748,60.069136],[-152.704672,59.915781],[-153.022334,59.888397],[-153.049719,59.691227],[-153.345474,59.620026],[-153.438582,59.702181],[-153.586459,59.548826],[-153.761721,59.543349],[-153.72886,59.433811],[-154.117723,59.368087],[-154.1944,59.066856],[-153.750768,59.050425],[-153.400243,58.968271],[-153.301658,58.869686],[-153.444059,58.710854],[-153.679567,58.612269],[-153.898645,58.606793],[-153.920553,58.519161],[-154.062953,58.4863],[-153.99723,58.376761],[-154.145107,58.212453],[-154.46277,58.059098],[-154.643509,58.059098],[-154.818771,58.004329],[-154.988556,58.015283],[-155.120003,57.955037],[-155.081664,57.872883],[-155.328126,57.829067],[-155.377419,57.708574],[-155.547204,57.785251],[-155.73342,57.549743],[-156.045606,57.566174],[-156.023698,57.440204],[-156.209914,57.473066],[-156.34136,57.418296],[-156.34136,57.248511],[-156.549484,56.985618],[-156.883577,56.952757],[-157.157424,56.832264],[-157.20124,56.766541],[-157.376502,56.859649],[-157.672257,56.607709],[-157.754411,56.67891],[-157.918719,56.657002],[-157.957058,56.514601],[-158.126843,56.459832],[-158.32949,56.48174],[-158.488321,56.339339],[-158.208997,56.295524],[-158.510229,55.977861],[-159.375585,55.873799],[-159.616571,55.594475],[-159.676817,55.654722],[-159.643955,55.829984],[-159.813741,55.857368],[-160.027341,55.791645],[-160.060203,55.720445],[-160.394296,55.605429],[-160.536697,55.473983],[-160.580512,55.567091],[-160.668143,55.457552],[-160.865313,55.528752],[-161.232268,55.358967],[-161.506115,55.364444],[-161.467776,55.49589],[-161.588269,55.62186],[-161.697808,55.517798],[-161.686854,55.408259],[-162.053809,55.074166],[-162.179779,55.15632],[-162.218117,55.03035],[-162.470057,55.052258],[-162.508395,55.249428],[-162.661749,55.293244],[-162.716519,55.222043],[-162.579595,55.134412],[-162.645319,54.997489],[-162.847965,54.926289],[-163.00132,55.079643],[-163.187536,55.090597],[-163.220397,55.03035],[-163.034181,54.942719],[-163.373752,54.800319],[-163.14372,54.76198],[-163.138243,54.696257],[-163.329936,54.74555],[-163.587352,54.614103],[-164.085754,54.61958],[-164.332216,54.531949],[-164.354124,54.466226],[-164.638925,54.389548],[-164.847049,54.416933],[-164.918249,54.603149],[-164.710125,54.663395],[-164.551294,54.88795],[-164.34317,54.893427],[-163.894061,55.041304],[-163.532583,55.046781],[-163.39566,54.904381],[-163.291598,55.008443],[-163.313505,55.128935],[-163.105382,55.183705],[-162.880827,55.183705],[-162.579595,55.446598],[-162.245502,55.682106],[-161.807347,55.89023],[-161.292514,55.983338],[-161.078914,55.939523],[-160.87079,55.999769],[-160.816021,55.912138],[-160.931036,55.813553],[-160.805067,55.736876],[-160.766728,55.857368],[-160.509312,55.868322],[-160.438112,55.791645],[-160.27928,55.76426],[-160.273803,55.857368],[-160.536697,55.939523],[-160.558604,55.994292],[-160.383342,56.251708],[-160.147834,56.399586],[-159.830171,56.541986],[-159.326293,56.667956],[-158.959338,56.848695],[-158.784076,56.782971],[-158.641675,56.810356],[-158.701922,56.925372],[-158.658106,57.034911],[-158.378782,57.264942],[-157.995396,57.41282],[-157.688688,57.609989],[-157.705118,57.719528],[-157.458656,58.497254],[-157.07527,58.705377],[-157.119086,58.869686],[-158.039212,58.634177],[-158.32949,58.661562],[-158.40069,58.760147],[-158.564998,58.803962],[-158.619768,58.913501],[-158.767645,58.864209],[-158.860753,58.694424],[-158.701922,58.480823],[-158.893615,58.387715],[-159.0634,58.420577],[-159.392016,58.760147],[-159.616571,58.929932],[-159.731586,58.929932],[-159.808264,58.803962],[-159.906848,58.782055],[-160.054726,58.886116],[-160.235465,58.902547],[-160.317619,59.072332],[-160.854359,58.88064],[-161.33633,58.743716],[-161.374669,58.667039],[-161.752577,58.552023],[-161.938793,58.656085],[-161.769008,58.776578],[-161.829255,59.061379],[-161.955224,59.36261],[-161.703285,59.48858],[-161.911409,59.740519],[-162.092148,59.88292],[-162.234548,60.091043],[-162.448149,60.178674],[-162.502918,59.997935],[-162.760334,59.959597],[-163.171105,59.844581],[-163.66403,59.795289],[-163.9324,59.806242],[-164.162431,59.866489],[-164.189816,60.02532],[-164.386986,60.074613],[-164.699171,60.29369],[-164.962064,60.337506],[-165.268773,60.578491],[-165.060649,60.68803],[-165.016834,60.890677],[-165.175665,60.846861],[-165.197573,60.972831],[-165.120896,61.076893],[-165.323543,61.170001],[-165.34545,61.071416],[-165.591913,61.109754],[-165.624774,61.279539],[-165.816467,61.301447],[-165.920529,61.416463],[-165.915052,61.558863],[-166.106745,61.49314],[-166.139607,61.630064],[-165.904098,61.662925],[-166.095791,61.81628],[-165.756221,61.827233],[-165.756221,62.013449],[-165.674067,62.139419],[-165.044219,62.539236],[-164.912772,62.659728],[-164.819664,62.637821],[-164.874433,62.807606],[-164.633448,63.097884],[-164.425324,63.212899],[-164.036462,63.262192],[-163.73523,63.212899],[-163.313505,63.037637],[-163.039658,63.059545],[-162.661749,63.22933],[-162.272887,63.486746],[-162.075717,63.514131],[-162.026424,63.448408],[-161.555408,63.448408],[-161.13916,63.503177],[-160.766728,63.771547],[-160.766728,63.837271],[-160.952944,64.08921],[-160.974852,64.237087],[-161.26513,64.395918],[-161.374669,64.532842],[-161.078914,64.494503],[-160.79959,64.609519],[-160.783159,64.719058],[-161.144637,64.921705],[-161.413007,64.762873],[-161.664946,64.790258],[-161.900455,64.702627],[-162.168825,64.680719],[-162.234548,64.620473],[-162.541257,64.532842],[-162.634365,64.384965],[-162.787719,64.324718],[-162.858919,64.49998],[-163.045135,64.538319],[-163.176582,64.401395],[-163.253259,64.467119],[-163.598306,64.565704],[-164.304832,64.560227],[-164.80871,64.450688],[-165.000403,64.434257],[-165.411174,64.49998],[-166.188899,64.576658],[-166.391546,64.636904],[-166.484654,64.735489],[-166.413454,64.872412],[-166.692778,64.987428],[-166.638008,65.113398],[-166.462746,65.179121],[-166.517516,65.337952],[-166.796839,65.337952],[-167.026871,65.381768],[-167.47598,65.414629],[-167.711489,65.496784],[-168.072967,65.578938],[-168.105828,65.682999],[-167.541703,65.819923],[-166.829701,66.049954],[-166.3313,66.186878],[-166.046499,66.110201],[-165.756221,66.09377],[-165.690498,66.203309],[-165.86576,66.21974],[-165.88219,66.312848],[-165.186619,66.466202],[-164.403417,66.581218],[-163.981692,66.592172],[-163.751661,66.553833],[-163.872153,66.389525],[-163.828338,66.274509],[-163.915969,66.192355],[-163.768091,66.060908],[-163.494244,66.082816],[-163.149197,66.060908],[-162.749381,66.088293],[-162.634365,66.039001],[-162.371472,66.028047],[-162.14144,66.077339],[-161.840208,66.02257],[-161.549931,66.241647],[-161.341807,66.252601],[-161.199406,66.208786],[-161.128206,66.334755],[-161.528023,66.395002],[-161.911409,66.345709],[-161.87307,66.510017],[-162.174302,66.68528],[-162.502918,66.740049],[-162.601503,66.89888],[-162.344087,66.937219],[-162.015471,66.778388],[-162.075717,66.652418],[-161.916886,66.553833],[-161.571838,66.438817],[-161.489684,66.55931],[-161.884024,66.718141],[-161.714239,67.002942],[-161.851162,67.052235],[-162.240025,66.991988],[-162.639842,67.008419],[-162.700088,67.057712],[-162.902735,67.008419],[-163.740707,67.128912],[-163.757138,67.254881],[-164.009077,67.534205],[-164.211724,67.638267],[-164.534863,67.725898],[-165.192096,67.966884],[-165.493328,68.059992],[-165.794559,68.081899],[-166.243668,68.246208],[-166.681824,68.339316],[-166.703731,68.372177],[-166.375115,68.42147],[-166.227238,68.574824],[-166.216284,68.881533],[-165.329019,68.859625],[-164.255539,68.930825],[-163.976215,68.985595],[-163.532583,69.138949],[-163.110859,69.374457],[-163.023228,69.609966],[-162.842489,69.812613],[-162.470057,69.982398],[-162.311225,70.108367],[-161.851162,70.311014],[-161.779962,70.256245],[-161.396576,70.239814],[-160.837928,70.343876],[-160.487404,70.453415],[-159.649432,70.792985],[-159.33177,70.809416],[-159.298908,70.760123],[-158.975769,70.798462],[-158.658106,70.787508],[-158.033735,70.831323],[-157.420318,70.979201],[-156.812377,71.285909],[-156.565915,71.351633],[-156.522099,71.296863],[-155.585543,71.170894],[-155.508865,71.083263],[-155.832005,70.968247],[-155.979882,70.96277],[-155.974405,70.809416],[-155.503388,70.858708],[-155.476004,70.940862],[-155.262403,71.017539],[-155.191203,70.973724],[-155.032372,71.148986],[-154.566832,70.990155],[-154.643509,70.869662],[-154.353231,70.8368],[-154.183446,70.7656],[-153.931507,70.880616],[-153.487874,70.886093],[-153.235935,70.924431],[-152.589656,70.886093],[-152.26104,70.842277],[-152.419871,70.606769],[-151.817408,70.546523],[-151.773592,70.486276],[-151.187559,70.382214],[-151.182082,70.431507],[-150.760358,70.49723],[-150.355064,70.491753],[-150.349588,70.436984],[-150.114079,70.431507],[-149.867617,70.508184],[-149.462323,70.519138],[-149.177522,70.486276],[-148.78866,70.404122],[-148.607921,70.420553],[-148.350504,70.305537],[-148.202627,70.349353],[-147.961642,70.316491],[-147.786379,70.245291]]],[[[-152.94018,58.026237],[-152.945657,57.982421],[-153.290705,58.048145],[-153.044242,58.305561],[-152.819688,58.327469],[-152.666333,58.562977],[-152.496548,58.354853],[-152.354148,58.426053],[-152.080301,58.311038],[-152.080301,58.152206],[-152.480117,58.130299],[-152.655379,58.059098],[-152.94018,58.026237]]],[[[-153.958891,57.538789],[-153.67409,57.670236],[-153.931507,57.69762],[-153.936983,57.812636],[-153.723383,57.889313],[-153.570028,57.834544],[-153.548121,57.719528],[-153.46049,57.796205],[-153.455013,57.96599],[-153.268797,57.889313],[-153.235935,57.998852],[-153.071627,57.933129],[-152.874457,57.933129],[-152.721103,57.993375],[-152.469163,57.889313],[-152.469163,57.599035],[-152.151501,57.620943],[-152.359625,57.42925],[-152.74301,57.505928],[-152.60061,57.379958],[-152.710149,57.275896],[-152.907319,57.325188],[-152.912796,57.128019],[-153.214027,57.073249],[-153.312612,56.991095],[-153.498828,57.067772],[-153.695998,56.859649],[-153.849352,56.837741],[-154.013661,56.744633],[-154.073907,56.969187],[-154.303938,56.848695],[-154.314892,56.919895],[-154.523016,56.991095],[-154.539447,57.193742],[-154.742094,57.275896],[-154.627078,57.511404],[-154.227261,57.659282],[-153.980799,57.648328],[-153.958891,57.538789]]],[[[-154.53397,56.602232],[-154.742094,56.399586],[-154.807817,56.432447],[-154.53397,56.602232]]],[[[-155.634835,55.923092],[-155.476004,55.912138],[-155.530773,55.704014],[-155.793666,55.731399],[-155.837482,55.802599],[-155.634835,55.923092]]],[[[-159.890418,55.28229],[-159.950664,55.068689],[-160.257373,54.893427],[-160.109495,55.161797],[-160.005433,55.134412],[-159.890418,55.28229]]],[[[-160.520266,55.358967],[-160.33405,55.358967],[-160.339527,55.249428],[-160.525743,55.128935],[-160.690051,55.211089],[-160.794113,55.134412],[-160.854359,55.320628],[-160.79959,55.380875],[-160.520266,55.358967]]],[[[-162.256456,54.981058],[-162.234548,54.893427],[-162.349564,54.838658],[-162.437195,54.931766],[-162.256456,54.981058]]],[[[-162.415287,63.634624],[-162.563165,63.536039],[-162.612457,63.62367],[-162.415287,63.634624]]],[[[-162.80415,54.488133],[-162.590549,54.449795],[-162.612457,54.367641],[-162.782242,54.373118],[-162.80415,54.488133]]],[[[-165.548097,54.29644],[-165.476897,54.181425],[-165.630251,54.132132],[-165.685021,54.252625],[-165.548097,54.29644]]],[[[-165.73979,54.15404],[-166.046499,54.044501],[-166.112222,54.121178],[-165.980775,54.219763],[-165.73979,54.15404]]],[[[-166.364161,60.359413],[-166.13413,60.397752],[-166.084837,60.326552],[-165.88219,60.342983],[-165.685021,60.277259],[-165.646682,59.992458],[-165.750744,59.89935],[-166.00816,59.844581],[-166.062929,59.745996],[-166.440838,59.855535],[-166.6161,59.850058],[-166.994009,59.992458],[-167.125456,59.992458],[-167.344534,60.074613],[-167.421211,60.206059],[-167.311672,60.238921],[-166.93924,60.206059],[-166.763978,60.310121],[-166.577762,60.321075],[-166.495608,60.392275],[-166.364161,60.359413]]],[[[-166.375115,54.01164],[-166.210807,53.934962],[-166.5449,53.748746],[-166.539423,53.715885],[-166.117699,53.852808],[-166.112222,53.776131],[-166.282007,53.683023],[-166.555854,53.622777],[-166.583239,53.529669],[-166.878994,53.431084],[-167.13641,53.425607],[-167.306195,53.332499],[-167.623857,53.250345],[-167.793643,53.337976],[-167.459549,53.442038],[-167.355487,53.425607],[-167.103548,53.513238],[-167.163794,53.611823],[-167.021394,53.715885],[-166.807793,53.666592],[-166.785886,53.732316],[-167.015917,53.754223],[-167.141887,53.825424],[-167.032348,53.945916],[-166.643485,54.017116],[-166.561331,53.880193],[-166.375115,54.01164]]],[[[-168.790446,53.157237],[-168.40706,53.34893],[-168.385152,53.431084],[-168.237275,53.524192],[-168.007243,53.568007],[-167.886751,53.518715],[-167.842935,53.387268],[-168.270136,53.244868],[-168.500168,53.036744],[-168.686384,52.965544],[-168.790446,53.157237]]],[[[-169.74891,52.894344],[-169.705095,52.795759],[-169.962511,52.790282],[-169.989896,52.856005],[-169.74891,52.894344]]],[[[-170.148727,57.221127],[-170.28565,57.128019],[-170.313035,57.221127],[-170.148727,57.221127]]],[[[-170.669036,52.697174],[-170.603313,52.604066],[-170.789529,52.538343],[-170.816914,52.636928],[-170.669036,52.697174]]],[[[-171.742517,63.716778],[-170.94836,63.5689],[-170.488297,63.69487],[-170.280174,63.683916],[-170.093958,63.612716],[-170.044665,63.492223],[-169.644848,63.4265],[-169.518879,63.366254],[-168.99857,63.338869],[-168.686384,63.295053],[-168.856169,63.147176],[-169.108108,63.180038],[-169.376478,63.152653],[-169.513402,63.08693],[-169.639372,62.939052],[-169.831064,63.075976],[-170.055619,63.169084],[-170.263743,63.180038],[-170.362328,63.2841],[-170.866206,63.415546],[-171.101715,63.421023],[-171.463193,63.306007],[-171.73704,63.366254],[-171.852055,63.486746],[-171.742517,63.716778]]],[[[-172.432611,52.390465],[-172.41618,52.275449],[-172.607873,52.253542],[-172.569535,52.352127],[-172.432611,52.390465]]],[[[-173.626584,52.14948],[-173.495138,52.105664],[-173.122706,52.111141],[-173.106275,52.07828],[-173.549907,52.028987],[-173.626584,52.14948]]],[[[-174.322156,52.280926],[-174.327632,52.379511],[-174.185232,52.41785],[-173.982585,52.319265],[-174.059262,52.226157],[-174.179755,52.231634],[-174.141417,52.127572],[-174.333109,52.116618],[-174.738403,52.007079],[-174.968435,52.039941],[-174.902711,52.116618],[-174.656249,52.105664],[-174.322156,52.280926]]],[[[-176.469116,51.853725],[-176.288377,51.870156],[-176.288377,51.744186],[-176.518409,51.760617],[-176.80321,51.61274],[-176.912748,51.80991],[-176.792256,51.815386],[-176.775825,51.963264],[-176.627947,51.968741],[-176.627947,51.859202],[-176.469116,51.853725]]],[[[-177.153734,51.946833],[-177.044195,51.897541],[-177.120872,51.727755],[-177.274226,51.678463],[-177.279703,51.782525],[-177.153734,51.946833]]],[[[-178.123152,51.919448],[-177.953367,51.913971],[-177.800013,51.793479],[-177.964321,51.651078],[-178.123152,51.919448]]],[[[-187.107557,52.992929],[-187.293773,52.927205],[-187.304726,52.823143],[-188.90491,52.762897],[-188.642017,52.927205],[-188.642017,53.003883],[-187.107557,52.992929]]]]}},
{"type":"Feature","id":"04","properties":{"name":"Arizona","density":57.05,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-109.042503,37.000263],[-109.04798,31.331629],[-111.074448,31.331629],[-112.246513,31.704061],[-114.815198,32.492741],[-114.72209,32.717295],[-114.524921,32.755634],[-114.470151,32.843265],[-114.524921,33.029481],[-114.661844,33.034958],[-114.727567,33.40739],[-114.524921,33.54979],[-114.497536,33.697668],[-114.535874,33.933176],[-114.415382,34.108438],[-114.256551,34.174162],[-114.136058,34.305608],[-114.333228,34.448009],[-114.470151,34.710902],[-114.634459,34.87521],[-114.634459,35.00118],[-114.574213,35.138103],[-114.596121,35.324319],[-114.678275,35.516012],[-114.738521,36.102045],[-114.371566,36.140383],[-114.251074,36.01989],[-114.152489,36.025367],[-114.048427,36.195153],[-114.048427,37.000263],[-110.499369,37.00574],[-109.042503,37.000263]]]}},
{"type":"Feature","id":"05","properties":{"name":"Arkansas","density":56.43,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-94.473842,36.501861],[-90.152536,36.496384],[-90.064905,36.304691],[-90.218259,36.184199],[-90.377091,35.997983],[-89.730812,35.997983],[-89.763673,35.811767],[-89.911551,35.756997],[-89.944412,35.603643],[-90.130628,35.439335],[-90.114197,35.198349],[-90.212782,35.023087],[-90.311367,34.995703],[-90.251121,34.908072],[-90.409952,34.831394],[-90.481152,34.661609],[-90.585214,34.617794],[-90.568783,34.420624],[-90.749522,34.365854],[-90.744046,34.300131],[-90.952169,34.135823],[-90.891923,34.026284],[-91.072662,33.867453],[-91.231493,33.560744],[-91.056231,33.429298],[-91.143862,33.347144],[-91.089093,33.13902],[-91.16577,33.002096],[-93.608485,33.018527],[-94.041164,33.018527],[-94.041164,33.54979],[-94.183564,33.593606],[-94.380734,33.544313],[-94.484796,33.637421],[-94.430026,35.395519],[-94.616242,36.501861],[-94.473842,36.501861]]]}},
{"type":"Feature","id":"06","properties":{"name":"California","density":241.7,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-123.233256,42.006186],[-122.378853,42.011663],[-121.037003,41.995232],[-120.001861,41.995232],[-119.996384,40.264519],[-120.001861,38.999346],[-118.71478,38.101128],[-117.498899,37.21934],[-116.540435,36.501861],[-115.85034,35.970598],[-114.634459,35.00118],[-114.634459,34.87521],[-114.470151,34.710902],[-114.333228,34.448009],[-114.136058,34.305608],[-114.256551,34.174162],[-114.415382,34.108438],[-114.535874,33.933176],[-114.497536,33.697668],[-114.524921,33.54979],[-114.727567,33.40739],[-114.661844,33.034958],[-114.524921,33.029481],[-114.470151,32.843265],[-114.524921,32.755634],[-114.72209,32.717295],[-116.04751,32.624187],[-117.126467,32.536556],[-117.24696,32.668003],[-117.252437,32.876127],[-117.329114,33.122589],[-117.471515,33.297851],[-117.7837,33.538836],[-118.183517,33.763391],[-118.260194,33.703145],[-118.413548,33.741483],[-118.391641,33.840068],[-118.566903,34.042715],[-118.802411,33.998899],[-119.218659,34.146777],[-119.278905,34.26727],[-119.558229,34.415147],[-119.875891,34.40967],[-120.138784,34.475393],[-120.472878,34.448009],[-120.64814,34.579455],[-120.609801,34.858779],[-120.670048,34.902595],[-120.631709,35.099764],[-120.894602,35.247642],[-120.905556,35.450289],[-121.004141,35.461243],[-121.168449,35.636505],[-121.283465,35.674843],[-121.332757,35.784382],[-121.716143,36.195153],[-121.896882,36.315645],[-121.935221,36.638785],[-121.858544,36.6114],[-121.787344,36.803093],[-121.929744,36.978355],[-122.105006,36.956447],[-122.335038,37.115279],[-122.417192,37.241248],[-122.400761,37.361741],[-122.515777,37.520572],[-122.515777,37.783465],[-122.329561,37.783465],[-122.406238,38.15042],[-122.488392,38.112082],[-122.504823,37.931343],[-122.701993,37.893004],[-122.937501,38.029928],[-122.97584,38.265436],[-123.129194,38.451652],[-123.331841,38.566668],[-123.44138,38.698114],[-123.737134,38.95553],[-123.687842,39.032208],[-123.824765,39.366301],[-123.764519,39.552517],[-123.85215,39.831841],[-124.109566,40.105688],[-124.361506,40.259042],[-124.410798,40.439781],[-124.158859,40.877937],[-124.109566,41.025814],[-124.158859,41.14083],[-124.065751,41.442061],[-124.147905,41.715908],[-124.257444,41.781632],[-124.213628,42.000709],[-123.233256,42.006186]]]}},
{"type":"Feature","id":"08","properties":{"name":"Colorado","density":49.33,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-107.919731,41.003906],[-105.728954,40.998429],[-104.053011,41.003906],[-102.053927,41.003906],[-102.053927,40.001626],[-102.042974,36.994786],[-103.001438,37.000263],[-104.337812,36.994786],[-106.868158,36.994786],[-107.421329,37.000263],[-109.042503,37.000263],[-109.042503,38.166851],[-109.058934,38.27639],[-109.053457,39.125316],[-109.04798,40.998429],[-107.919731,41.003906]]]}},
{"type":"Feature","id":"09","properties":{"name":"Connecticut","density":739.1,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-73.053528,42.039048],[-71.799309,42.022617],[-71.799309,42.006186],[-71.799309,41.414677],[-71.859555,41.321569],[-71.947186,41.338],[-72.385341,41.261322],[-72.905651,41.28323],[-73.130205,41.146307],[-73.371191,41.102491],[-73.655992,40.987475],[-73.727192,41.102491],[-73.48073,41.21203],[-73.55193,41.294184],[-73.486206,42.050002],[-73.053528,42.039048]]]}},
{"type":"Feature","id":"10","properties":{"name":"Delaware","density":464.3,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-75.414089,39.804456],[-75.507197,39.683964],[-75.611259,39.61824],[-75.589352,39.459409],[-75.441474,39.311532],[-75.403136,39.065069],[-75.189535,38.807653],[-75.09095,38.796699],[-75.047134,38.451652],[-75.693413,38.462606],[-75.786521,39.722302],[-75.616736,39.831841],[-75.414089,39.804456]]]}},
{"type":"Feature","id":"11","properties":{"name":"District of Columbia","density":10065,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-77.035264,38.993869],[-76.909294,38.895284],[-77.040741,38.791222],[-77.117418,38.933623],[-77.035264,38.993869]]]}},
{"type":"Feature","id":"12","properties":{"name":"Florida","density":353.4,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-85.497137,30.997536],[-85.004212,31.003013],[-84.867289,30.712735],[-83.498053,30.647012],[-82.216449,30.570335],[-82.167157,30.356734],[-82.046664,30.362211],[-82.002849,30.564858],[-82.041187,30.751074],[-81.948079,30.827751],[-81.718048,30.745597],[-81.444201,30.707258],[-81.383954,30.27458],[-81.257985,29.787132],[-80.967707,29.14633],[-80.524075,28.461713],[-80.589798,28.41242],[-80.56789,28.094758],[-80.381674,27.738757],[-80.091397,27.021277],[-80.03115,26.796723],[-80.036627,26.566691],[-80.146166,25.739673],[-80.239274,25.723243],[-80.337859,25.465826],[-80.304997,25.383672],[-80.49669,25.197456],[-80.573367,25.241272],[-80.759583,25.164595],[-81.077246,25.120779],[-81.170354,25.224841],[-81.126538,25.378195],[-81.351093,25.821827],[-81.526355,25.903982],[-81.679709,25.843735],[-81.800202,26.090198],[-81.833064,26.292844],[-82.041187,26.517399],[-82.09048,26.665276],[-82.057618,26.878877],[-82.172634,26.917216],[-82.145249,26.791246],[-82.249311,26.758384],[-82.566974,27.300601],[-82.692943,27.437525],[-82.391711,27.837342],[-82.588881,27.815434],[-82.720328,27.689464],[-82.851774,27.886634],[-82.676512,28.434328],[-82.643651,28.888914],[-82.764143,28.998453],[-82.802482,29.14633],[-82.994175,29.179192],[-83.218729,29.420177],[-83.399469,29.518762],[-83.410422,29.66664],[-83.536392,29.721409],[-83.640454,29.885717],[-84.02384,30.104795],[-84.357933,30.055502],[-84.341502,29.902148],[-84.451041,29.929533],[-84.867289,29.743317],[-85.310921,29.699501],[-85.299967,29.80904],[-85.404029,29.940487],[-85.924338,30.236241],[-86.29677,30.362211],[-86.630863,30.395073],[-86.910187,30.373165],[-87.518128,30.280057],[-87.37025,30.427934],[-87.446927,30.510088],[-87.408589,30.674397],[-87.633143,30.86609],[-87.600282,30.997536],[-85.497137,30.997536]]]}},
{"type":"Feature","id":"13","properties":{"name":"Georgia","density":169.5,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-83.109191,35.00118],[-83.322791,34.787579],[-83.339222,34.683517],[-83.005129,34.469916],[-82.901067,34.486347],[-82.747713,34.26727],[-82.714851,34.152254],[-82.55602,33.94413],[-82.325988,33.81816],[-82.194542,33.631944],[-81.926172,33.462159],[-81.937125,33.347144],[-81.761863,33.160928],[-81.493493,33.007573],[-81.42777,32.843265],[-81.416816,32.629664],[-81.279893,32.558464],[-81.121061,32.290094],[-81.115584,32.120309],[-80.885553,32.032678],[-81.132015,31.693108],[-81.175831,31.517845],[-81.279893,31.364491],[-81.290846,31.20566],[-81.400385,31.13446],[-81.444201,30.707258],[-81.718048,30.745597],[-81.948079,30.827751],[-82.041187,30.751074],[-82.002849,30.564858],[-82.046664,30.362211],[-82.167157,30.356734],[-82.216449,30.570335],[-83.498053,30.647012],[-84.867289,30.712735],[-85.004212,31.003013],[-85.113751,31.27686],[-85.042551,31.539753],[-85.141136,31.840985],[-85.053504,32.01077],[-85.058981,32.13674],[-84.889196,32.262709],[-85.004212,32.322956],[-84.960397,32.421541],[-85.069935,32.580372],[-85.184951,32.859696],[-85.431413,34.124869],[-85.606675,34.984749],[-84.319594,34.990226],[-83.618546,34.984749],[-83.109191,35.00118]]]}},
{"type":"Feature","id":"15","properties":{"name":"Hawaii","density":214.1,"visited":0},"geometry":{"type":"MultiPolygon","coordinates":[[[[-155.634835,18.948267],[-155.881297,19.035898],[-155.919636,19.123529],[-155.886774,19.348084],[-156.062036,19.73147],[-155.925113,19.857439],[-155.826528,20.032702],[-155.897728,20.147717],[-155.87582,20.26821],[-155.596496,20.12581],[-155.284311,20.021748],[-155.092618,19.868393],[-155.092618,19.736947],[-154.807817,19.523346],[-154.983079,19.348084],[-155.295265,19.26593],[-155.514342,19.134483],[-155.634835,18.948267]]],[[[-156.587823,21.029505],[-156.472807,20.892581],[-156.324929,20.952827],[-156.00179,20.793996],[-156.051082,20.651596],[-156.379699,20.580396],[-156.445422,20.60778],[-156.461853,20.783042],[-156.631638,20.821381],[-156.697361,20.919966],[-156.587823,21.029505]]],[[[-156.982162,21.210244],[-157.080747,21.106182],[-157.310779,21.106182],[-157.239579,21.221198],[-156.982162,21.210244]]],[[[-157.951581,21.697691],[-157.842042,21.462183],[-157.896811,21.325259],[-158.110412,21.303352],[-158.252813,21.582676],[-158.126843,21.588153],[-157.951581,21.697691]]],[[[-159.468693,22.228955],[-159.353678,22.218001],[-159.298908,22.113939],[-159.33177,21.966061],[-159.446786,21.872953],[-159.764448,21.987969],[-159.726109,22.152277],[-159.468693,22.228955]]]]}},
{"type":"Feature","id":"16","properties":{"name":"Idaho","density":19.15,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-116.04751,49.000239],[-116.04751,47.976051],[-115.724371,47.696727],[-115.718894,47.42288],[-115.527201,47.302388],[-115.324554,47.258572],[-115.302646,47.187372],[-114.930214,46.919002],[-114.886399,46.809463],[-114.623506,46.705401],[-114.612552,46.639678],[-114.322274,46.645155],[-114.464674,46.272723],[-114.492059,46.037214],[-114.387997,45.88386],[-114.568736,45.774321],[-114.497536,45.670259],[-114.546828,45.560721],[-114.333228,45.456659],[-114.086765,45.593582],[-113.98818,45.703121],[-113.807441,45.604536],[-113.834826,45.522382],[-113.736241,45.330689],[-113.571933,45.128042],[-113.45144,45.056842],[-113.456917,44.865149],[-113.341901,44.782995],[-113.133778,44.772041],[-113.002331,44.448902],[-112.887315,44.394132],[-112.783254,44.48724],[-112.471068,44.481763],[-112.241036,44.569394],[-112.104113,44.520102],[-111.868605,44.563917],[-111.819312,44.509148],[-111.616665,44.547487],[-111.386634,44.75561],[-111.227803,44.580348],[-111.047063,44.476286],[-111.047063,42.000709],[-112.164359,41.995232],[-114.04295,41.995232],[-117.027882,42.000709],[-117.027882,43.830007],[-116.896436,44.158624],[-116.97859,44.240778],[-117.170283,44.257209],[-117.241483,44.394132],[-117.038836,44.750133],[-116.934774,44.782995],[-116.830713,44.930872],[-116.847143,45.02398],[-116.732128,45.144473],[-116.671881,45.319735],[-116.463758,45.61549],[-116.545912,45.752413],[-116.78142,45.823614],[-116.918344,45.993399],[-116.92382,46.168661],[-117.055267,46.343923],[-117.038836,46.426077],[-117.044313,47.762451],[-117.033359,49.000239],[-116.04751,49.000239]]]}},
{"type":"Feature","id":"17","properties":{"name":"Illinois","density":231.5,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-90.639984,42.510065],[-88.788778,42.493634],[-87.802929,42.493634],[-87.83579,42.301941],[-87.682436,42.077386],[-87.523605,41.710431],[-87.529082,39.34987],[-87.63862,39.169131],[-87.512651,38.95553],[-87.49622,38.780268],[-87.62219,38.637868],[-87.655051,38.506421],[-87.83579,38.292821],[-87.950806,38.27639],[-87.923421,38.15042],[-88.000098,38.101128],[-88.060345,37.865619],[-88.027483,37.799896],[-88.15893,37.657496],[-88.065822,37.482234],[-88.476592,37.389126],[-88.514931,37.285064],[-88.421823,37.153617],[-88.547792,37.071463],[-88.914747,37.224817],[-89.029763,37.213863],[-89.183118,37.038601],[-89.133825,36.983832],[-89.292656,36.994786],[-89.517211,37.279587],[-89.435057,37.34531],[-89.517211,37.537003],[-89.517211,37.690357],[-89.84035,37.903958],[-89.949889,37.88205],[-90.059428,38.013497],[-90.355183,38.216144],[-90.349706,38.374975],[-90.179921,38.632391],[-90.207305,38.725499],[-90.10872,38.845992],[-90.251121,38.917192],[-90.470199,38.961007],[-90.585214,38.867899],[-90.661891,38.928146],[-90.727615,39.256762],[-91.061708,39.470363],[-91.368417,39.727779],[-91.494386,40.034488],[-91.50534,40.237135],[-91.417709,40.379535],[-91.401278,40.560274],[-91.121954,40.669813],[-91.09457,40.823167],[-90.963123,40.921752],[-90.946692,41.097014],[-91.111001,41.239415],[-91.045277,41.414677],[-90.656414,41.463969],[-90.344229,41.589939],[-90.311367,41.743293],[-90.179921,41.809016],[-90.141582,42.000709],[-90.168967,42.126679],[-90.393521,42.225264],[-90.420906,42.329326],[-90.639984,42.510065]]]}},
{"type":"Feature","id":"18","properties":{"name":"Indiana","density":181.7,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-85.990061,41.759724],[-84.807042,41.759724],[-84.807042,41.694001],[-84.801565,40.500028],[-84.817996,39.103408],[-84.894673,39.059592],[-84.812519,38.785745],[-84.987781,38.780268],[-85.173997,38.68716],[-85.431413,38.730976],[-85.42046,38.533806],[-85.590245,38.451652],[-85.655968,38.325682],[-85.83123,38.27639],[-85.924338,38.024451],[-86.039354,37.958727],[-86.263908,38.051835],[-86.302247,38.166851],[-86.521325,38.040881],[-86.504894,37.931343],[-86.729448,37.893004],[-86.795172,37.991589],[-87.047111,37.893004],[-87.129265,37.788942],[-87.381204,37.93682],[-87.512651,37.903958],[-87.600282,37.975158],[-87.682436,37.903958],[-87.934375,37.893004],[-88.027483,37.799896],[-88.060345,37.865619],[-88.000098,38.101128],[-87.923421,38.15042],[-87.950806,38.27639],[-87.83579,38.292821],[-87.655051,38.506421],[-87.62219,38.637868],[-87.49622,38.780268],[-87.512651,38.95553],[-87.63862,39.169131],[-87.529082,39.34987],[-87.523605,41.710431],[-87.42502,41.644708],[-87.118311,41.644708],[-86.822556,41.759724],[-85.990061,41.759724]]]}},
{"type":"Feature","id":"19","properties":{"name":"Iowa","density":54.81,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-91.368417,43.501391],[-91.215062,43.501391],[-91.204109,43.353514],[-91.056231,43.254929],[-91.176724,43.134436],[-91.143862,42.909881],[-91.067185,42.75105],[-90.711184,42.636034],[-90.639984,42.510065],[-90.420906,42.329326],[-90.393521,42.225264],[-90.168967,42.126679],[-90.141582,42.000709],[-90.179921,41.809016],[-90.311367,41.743293],[-90.344229,41.589939],[-90.656414,41.463969],[-91.045277,41.414677],[-91.111001,41.239415],[-90.946692,41.097014],[-90.963123,40.921752],[-91.09457,40.823167],[-91.121954,40.669813],[-91.401278,40.560274],[-91.417709,40.379535],[-91.527248,40.412397],[-91.729895,40.615043],[-91.833957,40.609566],[-93.257961,40.582182],[-94.632673,40.571228],[-95.7664,40.587659],[-95.881416,40.719105],[-95.826646,40.976521],[-95.925231,41.201076],[-95.919754,41.453015],[-96.095016,41.540646],[-96.122401,41.67757],[-96.062155,41.798063],[-96.127878,41.973325],[-96.264801,42.039048],[-96.44554,42.488157],[-96.631756,42.707235],[-96.544125,42.855112],[-96.511264,43.052282],[-96.434587,43.123482],[-96.560556,43.222067],[-96.527695,43.397329],[-96.582464,43.479483],[-96.451017,43.501391],[-91.368417,43.501391]]]}},
{"type":"Feature","id":"20","properties":{"name":"Kansas","density":35.09,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-101.90605,40.001626],[-95.306337,40.001626],[-95.207752,39.908518],[-94.884612,39.831841],[-95.109167,39.541563],[-94.983197,39.442978],[-94.824366,39.20747],[-94.610765,39.158177],[-94.616242,37.000263],[-100.087706,37.000263],[-102.042974,36.994786],[-102.053927,40.001626],[-101.90605,40.001626]]]}},
{"type":"Feature","id":"21","properties":{"name":"Kentucky","density":110,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-83.903347,38.769315],[-83.678792,38.632391],[-83.519961,38.703591],[-83.142052,38.626914],[-83.032514,38.725499],[-82.890113,38.758361],[-82.846298,38.588575],[-82.731282,38.561191],[-82.594358,38.424267],[-82.621743,38.123036],[-82.50125,37.931343],[-82.342419,37.783465],[-82.293127,37.668449],[-82.101434,37.553434],[-81.969987,37.537003],[-82.353373,37.268633],[-82.720328,37.120755],[-82.720328,37.044078],[-82.868205,36.978355],[-82.879159,36.890724],[-83.070852,36.852385],[-83.136575,36.742847],[-83.673316,36.600446],[-83.689746,36.584015],[-84.544149,36.594969],[-85.289013,36.627831],[-85.486183,36.616877],[-86.592525,36.655216],[-87.852221,36.633308],[-88.071299,36.677123],[-88.054868,36.496384],[-89.298133,36.507338],[-89.418626,36.496384],[-89.363857,36.622354],[-89.215979,36.578538],[-89.133825,36.983832],[-89.183118,37.038601],[-89.029763,37.213863],[-88.914747,37.224817],[-88.547792,37.071463],[-88.421823,37.153617],[-88.514931,37.285064],[-88.476592,37.389126],[-88.065822,37.482234],[-88.15893,37.657496],[-88.027483,37.799896],[-87.934375,37.893004],[-87.682436,37.903958],[-87.600282,37.975158],[-87.512651,37.903958],[-87.381204,37.93682],[-87.129265,37.788942],[-87.047111,37.893004],[-86.795172,37.991589],[-86.729448,37.893004],[-86.504894,37.931343],[-86.521325,38.040881],[-86.302247,38.166851],[-86.263908,38.051835],[-86.039354,37.958727],[-85.924338,38.024451],[-85.83123,38.27639],[-85.655968,38.325682],[-85.590245,38.451652],[-85.42046,38.533806],[-85.431413,38.730976],[-85.173997,38.68716],[-84.987781,38.780268],[-84.812519,38.785745],[-84.894673,39.059592],[-84.817996,39.103408],[-84.43461,39.103408],[-84.231963,38.895284],[-84.215533,38.807653],[-83.903347,38.769315]]]}},
{"type":"Feature","id":"22","properties":{"name":"Louisiana","density":105,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-93.608485,33.018527],[-91.16577,33.002096],[-91.072662,32.887081],[-91.143862,32.843265],[-91.154816,32.640618],[-91.006939,32.514649],[-90.985031,32.218894],[-91.105524,31.988862],[-91.341032,31.846462],[-91.401278,31.621907],[-91.499863,31.643815],[-91.516294,31.27686],[-91.636787,31.265906],[-91.565587,31.068736],[-91.636787,30.997536],[-89.747242,30.997536],[-89.845827,30.66892],[-89.681519,30.449842],[-89.643181,30.285534],[-89.522688,30.181472],[-89.818443,30.044549],[-89.84035,29.945964],[-89.599365,29.88024],[-89.495303,30.039072],[-89.287179,29.88024],[-89.30361,29.754271],[-89.424103,29.699501],[-89.648657,29.748794],[-89.621273,29.655686],[-89.69795,29.513285],[-89.506257,29.387316],[-89.199548,29.348977],[-89.09001,29.2011],[-89.002379,29.179192],[-89.16121,29.009407],[-89.336472,29.042268],[-89.484349,29.217531],[-89.851304,29.310638],[-89.851304,29.480424],[-90.032043,29.425654],[-90.021089,29.283254],[-90.103244,29.151807],[-90.23469,29.129899],[-90.333275,29.277777],[-90.563307,29.283254],[-90.645461,29.129899],[-90.798815,29.086084],[-90.963123,29.179192],[-91.09457,29.190146],[-91.220539,29.436608],[-91.445094,29.546147],[-91.532725,29.529716],[-91.620356,29.73784],[-91.883249,29.710455],[-91.888726,29.836425],[-92.146142,29.715932],[-92.113281,29.622824],[-92.31045,29.535193],[-92.617159,29.579009],[-92.97316,29.715932],[-93.2251,29.776178],[-93.767317,29.726886],[-93.838517,29.688547],[-93.926148,29.787132],[-93.690639,30.143133],[-93.767317,30.334826],[-93.696116,30.438888],[-93.728978,30.575812],[-93.630393,30.679874],[-93.526331,30.93729],[-93.542762,31.15089],[-93.816609,31.556184],[-93.822086,31.775262],[-94.041164,31.994339],[-94.041164,33.018527],[-93.608485,33.018527]]]}},
{"type":"Feature","id":"23","properties":{"name":"Maine","density":43.04,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-70.703921,43.057759],[-70.824413,43.128959],[-70.807983,43.227544],[-70.966814,43.34256],[-71.032537,44.657025],[-71.08183,45.303304],[-70.649151,45.440228],[-70.720352,45.511428],[-70.556043,45.664782],[-70.386258,45.735983],[-70.41912,45.796229],[-70.260289,45.889337],[-70.309581,46.064599],[-70.210996,46.327492],[-70.057642,46.415123],[-69.997395,46.694447],[-69.225147,47.461219],[-69.044408,47.428357],[-69.033454,47.242141],[-68.902007,47.176418],[-68.578868,47.285957],[-68.376221,47.285957],[-68.233821,47.357157],[-67.954497,47.198326],[-67.790188,47.066879],[-67.779235,45.944106],[-67.801142,45.675736],[-67.456095,45.604536],[-67.505388,45.48952],[-67.417757,45.379982],[-67.488957,45.281397],[-67.346556,45.128042],[-67.16034,45.160904],[-66.979601,44.804903],[-67.187725,44.646072],[-67.308218,44.706318],[-67.406803,44.596779],[-67.549203,44.624164],[-67.565634,44.531056],[-67.75185,44.54201],[-68.047605,44.328409],[-68.118805,44.476286],[-68.222867,44.48724],[-68.173574,44.328409],[-68.403606,44.251732],[-68.458375,44.377701],[-68.567914,44.311978],[-68.82533,44.311978],[-68.830807,44.459856],[-68.984161,44.426994],[-68.956777,44.322932],[-69.099177,44.103854],[-69.071793,44.043608],[-69.258008,43.923115],[-69.444224,43.966931],[-69.553763,43.840961],[-69.707118,43.82453],[-69.833087,43.720469],[-69.986442,43.742376],[-70.030257,43.851915],[-70.254812,43.676653],[-70.194565,43.567114],[-70.358873,43.528776],[-70.369827,43.435668],[-70.556043,43.320652],[-70.703921,43.057759]]]}},
{"type":"Feature","id":"24","properties":{"name":"Maryland","density":596.3,"visited":1},"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.994645,37.95325],[-76.016553,37.95325],[-76.043938,37.95325],[-75.994645,37.95325]]],[[[-79.477979,39.722302],[-75.786521,39.722302],[-75.693413,38.462606],[-75.047134,38.451652],[-75.244304,38.029928],[-75.397659,38.013497],[-75.671506,37.95325],[-75.885106,37.909435],[-75.879629,38.073743],[-75.961783,38.139466],[-75.846768,38.210667],[-76.000122,38.374975],[-76.049415,38.303775],[-76.257538,38.320205],[-76.328738,38.500944],[-76.263015,38.500944],[-76.257538,38.736453],[-76.191815,38.829561],[-76.279446,39.147223],[-76.169907,39.333439],[-76.000122,39.366301],[-75.972737,39.557994],[-76.098707,39.536086],[-76.104184,39.437501],[-76.367077,39.311532],[-76.443754,39.196516],[-76.460185,38.906238],[-76.55877,38.769315],[-76.514954,38.539283],[-76.383508,38.380452],[-76.399939,38.259959],[-76.317785,38.139466],[-76.3616,38.057312],[-76.591632,38.216144],[-76.920248,38.292821],[-77.018833,38.446175],[-77.205049,38.358544],[-77.276249,38.479037],[-77.128372,38.632391],[-77.040741,38.791222],[-76.909294,38.895284],[-77.035264,38.993869],[-77.117418,38.933623],[-77.248864,39.026731],[-77.456988,39.076023],[-77.456988,39.223901],[-77.566527,39.306055],[-77.719881,39.322485],[-77.834897,39.601809],[-78.004682,39.601809],[-78.174467,39.694917],[-78.267575,39.61824],[-78.431884,39.623717],[-78.470222,39.514178],[-78.765977,39.585379],[-78.963147,39.437501],[-79.094593,39.470363],[-79.291763,39.300578],[-79.488933,39.20747],[-79.477979,39.722302]]]]}},
{"type":"Feature","id":"25","properties":{"name":"Massachusetts","density":840.2,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-70.917521,42.887974],[-70.818936,42.871543],[-70.780598,42.696281],[-70.824413,42.55388],[-70.983245,42.422434],[-70.988722,42.269079],[-70.769644,42.247172],[-70.638197,42.08834],[-70.660105,41.962371],[-70.550566,41.929509],[-70.539613,41.814493],[-70.260289,41.715908],[-69.937149,41.809016],[-70.008349,41.672093],[-70.484843,41.5516],[-70.660105,41.546123],[-70.764167,41.639231],[-70.928475,41.611847],[-70.933952,41.540646],[-71.120168,41.496831],[-71.196845,41.67757],[-71.22423,41.710431],[-71.328292,41.781632],[-71.383061,42.01714],[-71.530939,42.01714],[-71.799309,42.006186],[-71.799309,42.022617],[-73.053528,42.039048],[-73.486206,42.050002],[-73.508114,42.08834],[-73.267129,42.745573],[-72.456542,42.729142],[-71.29543,42.696281],[-71.185891,42.789389],[-70.917521,42.887974]]]}},
{"type":"Feature","id":"26","properties":{"name":"Michigan","density":173.9,"visited":2},"geometry":{"type":"MultiPolygon","coordinates":[[[[-83.454238,41.732339],[-84.807042,41.694001],[-84.807042,41.759724],[-85.990061,41.759724],[-86.822556,41.759724],[-86.619909,41.891171],[-86.482986,42.115725],[-86.357016,42.252649],[-86.263908,42.444341],[-86.209139,42.718189],[-86.231047,43.013943],[-86.526801,43.594499],[-86.433693,43.813577],[-86.499417,44.07647],[-86.269385,44.34484],[-86.220093,44.569394],[-86.252954,44.689887],[-86.088646,44.73918],[-86.066738,44.903488],[-85.809322,44.947303],[-85.612152,45.128042],[-85.628583,44.766564],[-85.524521,44.750133],[-85.393075,44.930872],[-85.387598,45.237581],[-85.305444,45.314258],[-85.031597,45.363551],[-85.119228,45.577151],[-84.938489,45.75789],[-84.713934,45.768844],[-84.461995,45.653829],[-84.215533,45.637398],[-84.09504,45.494997],[-83.908824,45.484043],[-83.596638,45.352597],[-83.4871,45.358074],[-83.317314,45.144473],[-83.454238,45.029457],[-83.322791,44.88158],[-83.273499,44.711795],[-83.333745,44.339363],[-83.536392,44.246255],[-83.585684,44.054562],[-83.82667,43.988839],[-83.958116,43.758807],[-83.908824,43.671176],[-83.667839,43.589022],[-83.481623,43.714992],[-83.262545,43.972408],[-82.917498,44.070993],[-82.747713,43.994316],[-82.643651,43.851915],[-82.539589,43.435668],[-82.523158,43.227544],[-82.413619,42.975605],[-82.517681,42.614127],[-82.681989,42.559357],[-82.687466,42.690804],[-82.797005,42.652465],[-82.922975,42.351234],[-83.125621,42.236218],[-83.185868,42.006186],[-83.437807,41.814493],[-83.454238,41.732339]]],[[[-85.508091,45.730506],[-85.49166,45.610013],[-85.623106,45.588105],[-85.568337,45.75789],[-85.508091,45.730506]]],[[[-87.589328,45.095181],[-87.742682,45.199243],[-87.649574,45.341643],[-87.885083,45.363551],[-87.791975,45.500474],[-87.781021,45.675736],[-87.989145,45.796229],[-88.10416,45.922199],[-88.531362,46.020784],[-88.662808,45.987922],[-89.09001,46.135799],[-90.119674,46.338446],[-90.229213,46.508231],[-90.415429,46.568478],[-90.026566,46.672539],[-89.851304,46.793032],[-89.413149,46.842325],[-89.128348,46.990202],[-88.996902,46.995679],[-88.887363,47.099741],[-88.575177,47.247618],[-88.416346,47.373588],[-88.180837,47.455742],[-87.956283,47.384542],[-88.350623,47.077833],[-88.443731,46.973771],[-88.438254,46.787555],[-88.246561,46.929956],[-87.901513,46.908048],[-87.633143,46.809463],[-87.392158,46.535616],[-87.260711,46.486323],[-87.008772,46.530139],[-86.948526,46.469893],[-86.696587,46.437031],[-86.159846,46.667063],[-85.880522,46.68897],[-85.508091,46.678016],[-85.256151,46.754694],[-85.064458,46.760171],[-85.02612,46.480847],[-84.82895,46.442508],[-84.63178,46.486323],[-84.549626,46.4206],[-84.418179,46.502754],[-84.127902,46.530139],[-84.122425,46.179615],[-83.990978,46.031737],[-83.793808,45.993399],[-83.7719,46.091984],[-83.580208,46.091984],[-83.476146,45.987922],[-83.563777,45.911245],[-84.111471,45.976968],[-84.374364,45.933153],[-84.659165,46.053645],[-84.741319,45.944106],[-84.70298,45.850998],[-84.82895,45.872906],[-85.015166,46.00983],[-85.338305,46.091984],[-85.502614,46.097461],[-85.661445,45.966014],[-85.924338,45.933153],[-86.209139,45.960537],[-86.324155,45.905768],[-86.351539,45.796229],[-86.663725,45.703121],[-86.647294,45.834568],[-86.784218,45.861952],[-86.838987,45.725029],[-87.069019,45.719552],[-87.17308,45.659305],[-87.326435,45.423797],[-87.611236,45.122565],[-87.589328,45.095181]]],[[[-88.805209,47.976051],[-89.057148,47.850082],[-89.188594,47.833651],[-89.177641,47.937713],[-88.547792,48.173221],[-88.668285,48.008913],[-88.805209,47.976051]]]]}},
{"type":"Feature","id":"27","properties":{"name":"Minnesota","density":67.14,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-92.014696,46.705401],[-92.091373,46.749217],[-92.29402,46.667063],[-92.29402,46.075553],[-92.354266,46.015307],[-92.639067,45.933153],[-92.869098,45.719552],[-92.885529,45.577151],[-92.770513,45.566198],[-92.644544,45.440228],[-92.75956,45.286874],[-92.737652,45.117088],[-92.808852,44.750133],[-92.545959,44.569394],[-92.337835,44.552964],[-92.233773,44.443425],[-91.927065,44.333886],[-91.877772,44.202439],[-91.592971,44.032654],[-91.43414,43.994316],[-91.242447,43.775238],[-91.269832,43.616407],[-91.215062,43.501391],[-91.368417,43.501391],[-96.451017,43.501391],[-96.451017,45.297827],[-96.681049,45.412843],[-96.856311,45.604536],[-96.582464,45.818137],[-96.560556,45.933153],[-96.598895,46.332969],[-96.719387,46.437031],[-96.801542,46.656109],[-96.785111,46.924479],[-96.823449,46.968294],[-96.856311,47.609096],[-97.053481,47.948667],[-97.130158,48.140359],[-97.16302,48.545653],[-97.097296,48.682577],[-97.228743,49.000239],[-95.152983,49.000239],[-95.152983,49.383625],[-94.955813,49.372671],[-94.824366,49.295994],[-94.69292,48.775685],[-94.588858,48.715438],[-94.260241,48.699007],[-94.221903,48.649715],[-93.838517,48.627807],[-93.794701,48.518268],[-93.466085,48.545653],[-93.466085,48.589469],[-93.208669,48.644238],[-92.984114,48.62233],[-92.726698,48.540176],[-92.655498,48.436114],[-92.50762,48.447068],[-92.370697,48.222514],[-92.304974,48.315622],[-92.053034,48.359437],[-92.009219,48.266329],[-91.713464,48.200606],[-91.713464,48.112975],[-91.565587,48.041775],[-91.264355,48.080113],[-91.083616,48.178698],[-90.837154,48.238944],[-90.749522,48.091067],[-90.579737,48.123929],[-90.377091,48.091067],[-90.141582,48.112975],[-89.873212,47.987005],[-89.615796,48.008913],[-89.637704,47.954144],[-89.971797,47.828174],[-90.437337,47.729589],[-90.738569,47.625527],[-91.171247,47.368111],[-91.357463,47.20928],[-91.642264,47.028541],[-92.091373,46.787555],[-92.014696,46.705401]]]}},
{"type":"Feature","id":"28","properties":{"name":"Mississippi","density":63.50,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-88.471115,34.995703],[-88.202745,34.995703],[-88.098683,34.891641],[-88.241084,33.796253],[-88.471115,31.895754],[-88.394438,30.367688],[-88.503977,30.323872],[-88.744962,30.34578],[-88.843547,30.411504],[-89.084533,30.367688],[-89.418626,30.252672],[-89.522688,30.181472],[-89.643181,30.285534],[-89.681519,30.449842],[-89.845827,30.66892],[-89.747242,30.997536],[-91.636787,30.997536],[-91.565587,31.068736],[-91.636787,31.265906],[-91.516294,31.27686],[-91.499863,31.643815],[-91.401278,31.621907],[-91.341032,31.846462],[-91.105524,31.988862],[-90.985031,32.218894],[-91.006939,32.514649],[-91.154816,32.640618],[-91.143862,32.843265],[-91.072662,32.887081],[-91.16577,33.002096],[-91.089093,33.13902],[-91.143862,33.347144],[-91.056231,33.429298],[-91.231493,33.560744],[-91.072662,33.867453],[-90.891923,34.026284],[-90.952169,34.135823],[-90.744046,34.300131],[-90.749522,34.365854],[-90.568783,34.420624],[-90.585214,34.617794],[-90.481152,34.661609],[-90.409952,34.831394],[-90.251121,34.908072],[-90.311367,34.995703],[-88.471115,34.995703]]]}},
{"type":"Feature","id":"29","properties":{"name":"Missouri","density":87.26,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-91.833957,40.609566],[-91.729895,40.615043],[-91.527248,40.412397],[-91.417709,40.379535],[-91.50534,40.237135],[-91.494386,40.034488],[-91.368417,39.727779],[-91.061708,39.470363],[-90.727615,39.256762],[-90.661891,38.928146],[-90.585214,38.867899],[-90.470199,38.961007],[-90.251121,38.917192],[-90.10872,38.845992],[-90.207305,38.725499],[-90.179921,38.632391],[-90.349706,38.374975],[-90.355183,38.216144],[-90.059428,38.013497],[-89.949889,37.88205],[-89.84035,37.903958],[-89.517211,37.690357],[-89.517211,37.537003],[-89.435057,37.34531],[-89.517211,37.279587],[-89.292656,36.994786],[-89.133825,36.983832],[-89.215979,36.578538],[-89.363857,36.622354],[-89.418626,36.496384],[-89.484349,36.496384],[-89.539119,36.496384],[-89.533642,36.249922],[-89.730812,35.997983],[-90.377091,35.997983],[-90.218259,36.184199],[-90.064905,36.304691],[-90.152536,36.496384],[-94.473842,36.501861],[-94.616242,36.501861],[-94.616242,37.000263],[-94.610765,39.158177],[-94.824366,39.20747],[-94.983197,39.442978],[-95.109167,39.541563],[-94.884612,39.831841],[-95.207752,39.908518],[-95.306337,40.001626],[-95.552799,40.264519],[-95.7664,40.587659],[-94.632673,40.571228],[-93.257961,40.582182],[-91.833957,40.609566]]]}},
{"type":"Feature","id":"30","properties":{"name":"Montana","density":6.858,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-104.047534,49.000239],[-104.042057,47.861036],[-104.047534,45.944106],[-104.042057,44.996596],[-104.058488,44.996596],[-105.91517,45.002073],[-109.080842,45.002073],[-111.05254,45.002073],[-111.047063,44.476286],[-111.227803,44.580348],[-111.386634,44.75561],[-111.616665,44.547487],[-111.819312,44.509148],[-111.868605,44.563917],[-112.104113,44.520102],[-112.241036,44.569394],[-112.471068,44.481763],[-112.783254,44.48724],[-112.887315,44.394132],[-113.002331,44.448902],[-113.133778,44.772041],[-113.341901,44.782995],[-113.456917,44.865149],[-113.45144,45.056842],[-113.571933,45.128042],[-113.736241,45.330689],[-113.834826,45.522382],[-113.807441,45.604536],[-113.98818,45.703121],[-114.086765,45.593582],[-114.333228,45.456659],[-114.546828,45.560721],[-114.497536,45.670259],[-114.568736,45.774321],[-114.387997,45.88386],[-114.492059,46.037214],[-114.464674,46.272723],[-114.322274,46.645155],[-114.612552,46.639678],[-114.623506,46.705401],[-114.886399,46.809463],[-114.930214,46.919002],[-115.302646,47.187372],[-115.324554,47.258572],[-115.527201,47.302388],[-115.718894,47.42288],[-115.724371,47.696727],[-116.04751,47.976051],[-116.04751,49.000239],[-111.50165,48.994762],[-109.453274,49.000239],[-104.047534,49.000239]]]}},
{"type":"Feature","id":"31","properties":{"name":"Nebraska","density":23.97,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-103.324578,43.002989],[-101.626726,42.997512],[-98.499393,42.997512],[-98.466531,42.94822],[-97.951699,42.767481],[-97.831206,42.866066],[-97.688806,42.844158],[-97.217789,42.844158],[-96.692003,42.657942],[-96.626279,42.515542],[-96.44554,42.488157],[-96.264801,42.039048],[-96.127878,41.973325],[-96.062155,41.798063],[-96.122401,41.67757],[-96.095016,41.540646],[-95.919754,41.453015],[-95.925231,41.201076],[-95.826646,40.976521],[-95.881416,40.719105],[-95.7664,40.587659],[-95.552799,40.264519],[-95.306337,40.001626],[-101.90605,40.001626],[-102.053927,40.001626],[-102.053927,41.003906],[-104.053011,41.003906],[-104.053011,43.002989],[-103.324578,43.002989]]]}},
{"type":"Feature","id":"32","properties":{"name":"Nevada","density":24.80,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-117.027882,42.000709],[-114.04295,41.995232],[-114.048427,37.000263],[-114.048427,36.195153],[-114.152489,36.025367],[-114.251074,36.01989],[-114.371566,36.140383],[-114.738521,36.102045],[-114.678275,35.516012],[-114.596121,35.324319],[-114.574213,35.138103],[-114.634459,35.00118],[-115.85034,35.970598],[-116.540435,36.501861],[-117.498899,37.21934],[-118.71478,38.101128],[-120.001861,38.999346],[-119.996384,40.264519],[-120.001861,41.995232],[-118.698349,41.989755],[-117.027882,42.000709]]]}},
{"type":"Feature","id":"33","properties":{"name":"New Hampshire","density":147,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-71.08183,45.303304],[-71.032537,44.657025],[-70.966814,43.34256],[-70.807983,43.227544],[-70.824413,43.128959],[-70.703921,43.057759],[-70.818936,42.871543],[-70.917521,42.887974],[-71.185891,42.789389],[-71.29543,42.696281],[-72.456542,42.729142],[-72.544173,42.80582],[-72.533219,42.953697],[-72.445588,43.008466],[-72.456542,43.150867],[-72.379864,43.572591],[-72.204602,43.769761],[-72.116971,43.994316],[-72.02934,44.07647],[-72.034817,44.322932],[-71.700724,44.41604],[-71.536416,44.585825],[-71.629524,44.750133],[-71.4926,44.914442],[-71.503554,45.013027],[-71.361154,45.270443],[-71.131122,45.243058],[-71.08183,45.303304]]]}},
{"type":"Feature","id":"34","properties":{"name":"New Jersey","density":1189,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-74.236547,41.14083],[-73.902454,40.998429],[-74.022947,40.708151],[-74.187255,40.642428],[-74.274886,40.489074],[-74.001039,40.412397],[-73.979131,40.297381],[-74.099624,39.760641],[-74.411809,39.360824],[-74.614456,39.245808],[-74.795195,38.993869],[-74.888303,39.158177],[-75.178581,39.240331],[-75.534582,39.459409],[-75.55649,39.607286],[-75.561967,39.629194],[-75.507197,39.683964],[-75.414089,39.804456],[-75.145719,39.88661],[-75.129289,39.963288],[-74.82258,40.127596],[-74.773287,40.215227],[-75.058088,40.417874],[-75.069042,40.543843],[-75.195012,40.576705],[-75.205966,40.691721],[-75.052611,40.866983],[-75.134765,40.971045],[-74.882826,41.179168],[-74.828057,41.288707],[-74.69661,41.359907],[-74.236547,41.14083]]]}},
{"type":"Feature","id":"35","properties":{"name":"New Mexico","density":17.16,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-107.421329,37.000263],[-106.868158,36.994786],[-104.337812,36.994786],[-103.001438,37.000263],[-103.001438,36.501861],[-103.039777,36.501861],[-103.045254,34.01533],[-103.067161,33.002096],[-103.067161,31.999816],[-106.616219,31.999816],[-106.643603,31.901231],[-106.528588,31.786216],[-108.210008,31.786216],[-108.210008,31.331629],[-109.04798,31.331629],[-109.042503,37.000263],[-107.421329,37.000263]]]}},
{"type":"Feature","id":"36","properties":{"name":"New York","density":412.3,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-73.343806,45.013027],[-73.332852,44.804903],[-73.387622,44.618687],[-73.294514,44.437948],[-73.321898,44.246255],[-73.436914,44.043608],[-73.349283,43.769761],[-73.404052,43.687607],[-73.245221,43.523299],[-73.278083,42.833204],[-73.267129,42.745573],[-73.508114,42.08834],[-73.486206,42.050002],[-73.55193,41.294184],[-73.48073,41.21203],[-73.727192,41.102491],[-73.655992,40.987475],[-73.22879,40.905321],[-73.141159,40.965568],[-72.774204,40.965568],[-72.587988,40.998429],[-72.28128,41.157261],[-72.259372,41.042245],[-72.100541,40.992952],[-72.467496,40.845075],[-73.239744,40.625997],[-73.562884,40.582182],[-73.776484,40.593136],[-73.935316,40.543843],[-74.022947,40.708151],[-73.902454,40.998429],[-74.236547,41.14083],[-74.69661,41.359907],[-74.740426,41.431108],[-74.89378,41.436584],[-75.074519,41.60637],[-75.052611,41.754247],[-75.173104,41.869263],[-75.249781,41.863786],[-75.35932,42.000709],[-79.76278,42.000709],[-79.76278,42.252649],[-79.76278,42.269079],[-79.149363,42.55388],[-79.050778,42.690804],[-78.853608,42.783912],[-78.930285,42.953697],[-79.012439,42.986559],[-79.072686,43.260406],[-78.486653,43.375421],[-77.966344,43.369944],[-77.75822,43.34256],[-77.533665,43.233021],[-77.391265,43.276836],[-76.958587,43.271359],[-76.695693,43.34256],[-76.41637,43.523299],[-76.235631,43.528776],[-76.230154,43.802623],[-76.137046,43.961454],[-76.3616,44.070993],[-76.312308,44.196962],[-75.912491,44.366748],[-75.764614,44.514625],[-75.282643,44.848718],[-74.828057,45.018503],[-74.148916,44.991119],[-73.343806,45.013027]]]}},
{"type":"Feature","id":"37","properties":{"name":"North Carolina","density":198.2,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-80.978661,36.562108],[-80.294043,36.545677],[-79.510841,36.5402],[-75.868676,36.551154],[-75.75366,36.151337],[-76.032984,36.189676],[-76.071322,36.140383],[-76.410893,36.080137],[-76.460185,36.025367],[-76.68474,36.008937],[-76.673786,35.937736],[-76.399939,35.987029],[-76.3616,35.943213],[-76.060368,35.992506],[-75.961783,35.899398],[-75.781044,35.937736],[-75.715321,35.696751],[-75.775568,35.581735],[-75.89606,35.570781],[-76.147999,35.324319],[-76.482093,35.313365],[-76.536862,35.14358],[-76.394462,34.973795],[-76.279446,34.940933],[-76.493047,34.661609],[-76.673786,34.694471],[-76.991448,34.667086],[-77.210526,34.60684],[-77.555573,34.415147],[-77.82942,34.163208],[-77.971821,33.845545],[-78.179944,33.916745],[-78.541422,33.851022],[-79.675149,34.80401],[-80.797922,34.820441],[-80.781491,34.935456],[-80.934845,35.105241],[-81.038907,35.044995],[-81.044384,35.149057],[-82.276696,35.198349],[-82.550543,35.160011],[-82.764143,35.066903],[-83.109191,35.00118],[-83.618546,34.984749],[-84.319594,34.990226],[-84.29221,35.225734],[-84.09504,35.247642],[-84.018363,35.41195],[-83.7719,35.559827],[-83.498053,35.565304],[-83.251591,35.718659],[-82.994175,35.773428],[-82.775097,35.997983],[-82.638174,36.063706],[-82.610789,35.965121],[-82.216449,36.156814],[-82.03571,36.118475],[-81.909741,36.304691],[-81.723525,36.353984],[-81.679709,36.589492],[-80.978661,36.562108]]]}},
{"type":"Feature","id":"38","properties":{"name":"North Dakota","density":9.916,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-97.228743,49.000239],[-97.097296,48.682577],[-97.16302,48.545653],[-97.130158,48.140359],[-97.053481,47.948667],[-96.856311,47.609096],[-96.823449,46.968294],[-96.785111,46.924479],[-96.801542,46.656109],[-96.719387,46.437031],[-96.598895,46.332969],[-96.560556,45.933153],[-104.047534,45.944106],[-104.042057,47.861036],[-104.047534,49.000239],[-97.228743,49.000239]]]}},
{"type":"Feature","id":"39","properties":{"name":"Ohio","density":281.9,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-80.518598,41.978802],[-80.518598,40.636951],[-80.666475,40.582182],[-80.595275,40.472643],[-80.600752,40.319289],[-80.737675,40.078303],[-80.830783,39.711348],[-81.219646,39.388209],[-81.345616,39.344393],[-81.455155,39.410117],[-81.57017,39.267716],[-81.685186,39.273193],[-81.811156,39.0815],[-81.783771,38.966484],[-81.887833,38.873376],[-82.03571,39.026731],[-82.221926,38.785745],[-82.172634,38.632391],[-82.293127,38.577622],[-82.331465,38.446175],[-82.594358,38.424267],[-82.731282,38.561191],[-82.846298,38.588575],[-82.890113,38.758361],[-83.032514,38.725499],[-83.142052,38.626914],[-83.519961,38.703591],[-83.678792,38.632391],[-83.903347,38.769315],[-84.215533,38.807653],[-84.231963,38.895284],[-84.43461,39.103408],[-84.817996,39.103408],[-84.801565,40.500028],[-84.807042,41.694001],[-83.454238,41.732339],[-83.065375,41.595416],[-82.933929,41.513262],[-82.835344,41.589939],[-82.616266,41.431108],[-82.479343,41.381815],[-82.013803,41.513262],[-81.739956,41.485877],[-81.444201,41.672093],[-81.011523,41.852832],[-80.518598,41.978802],[-80.518598,41.978802]]]}},
{"type":"Feature","id":"40","properties":{"name":"Oklahoma","density":55.22,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-100.087706,37.000263],[-94.616242,37.000263],[-94.616242,36.501861],[-94.430026,35.395519],[-94.484796,33.637421],[-94.868182,33.74696],[-94.966767,33.861976],[-95.224183,33.960561],[-95.289906,33.87293],[-95.547322,33.878407],[-95.602092,33.933176],[-95.8376,33.834591],[-95.936185,33.889361],[-96.149786,33.840068],[-96.346956,33.686714],[-96.423633,33.774345],[-96.631756,33.845545],[-96.850834,33.845545],[-96.922034,33.960561],[-97.173974,33.736006],[-97.256128,33.861976],[-97.371143,33.823637],[-97.458774,33.905791],[-97.694283,33.982469],[-97.869545,33.851022],[-97.946222,33.987946],[-98.088623,34.004376],[-98.170777,34.113915],[-98.36247,34.157731],[-98.488439,34.064623],[-98.570593,34.146777],[-98.767763,34.135823],[-98.986841,34.223454],[-99.189488,34.2125],[-99.260688,34.404193],[-99.57835,34.415147],[-99.698843,34.382285],[-99.923398,34.573978],[-100.000075,34.563024],[-100.000075,36.501861],[-101.812942,36.501861],[-103.001438,36.501861],[-103.001438,37.000263],[-102.042974,36.994786],[-100.087706,37.000263]]]}},
{"type":"Feature","id":"41","properties":{"name":"Oregon","density":40.33,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-123.211348,46.174138],[-123.11824,46.185092],[-122.904639,46.08103],[-122.811531,45.960537],[-122.762239,45.659305],[-122.247407,45.549767],[-121.809251,45.708598],[-121.535404,45.725029],[-121.217742,45.670259],[-121.18488,45.604536],[-120.637186,45.746937],[-120.505739,45.697644],[-120.209985,45.725029],[-119.963522,45.823614],[-119.525367,45.911245],[-119.125551,45.933153],[-118.988627,45.998876],[-116.918344,45.993399],[-116.78142,45.823614],[-116.545912,45.752413],[-116.463758,45.61549],[-116.671881,45.319735],[-116.732128,45.144473],[-116.847143,45.02398],[-116.830713,44.930872],[-116.934774,44.782995],[-117.038836,44.750133],[-117.241483,44.394132],[-117.170283,44.257209],[-116.97859,44.240778],[-116.896436,44.158624],[-117.027882,43.830007],[-117.027882,42.000709],[-118.698349,41.989755],[-120.001861,41.995232],[-121.037003,41.995232],[-122.378853,42.011663],[-123.233256,42.006186],[-124.213628,42.000709],[-124.356029,42.115725],[-124.432706,42.438865],[-124.416275,42.663419],[-124.553198,42.838681],[-124.454613,43.002989],[-124.383413,43.271359],[-124.235536,43.55616],[-124.169813,43.8081],[-124.060274,44.657025],[-124.076705,44.772041],[-123.97812,45.144473],[-123.939781,45.659305],[-123.994551,45.944106],[-123.945258,46.113892],[-123.545441,46.261769],[-123.370179,46.146753],[-123.211348,46.174138]]]}},
{"type":"Feature","id":"42","properties":{"name":"Pennsylvania","density":284.3,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-79.76278,42.252649],[-79.76278,42.000709],[-75.35932,42.000709],[-75.249781,41.863786],[-75.173104,41.869263],[-75.052611,41.754247],[-75.074519,41.60637],[-74.89378,41.436584],[-74.740426,41.431108],[-74.69661,41.359907],[-74.828057,41.288707],[-74.882826,41.179168],[-75.134765,40.971045],[-75.052611,40.866983],[-75.205966,40.691721],[-75.195012,40.576705],[-75.069042,40.543843],[-75.058088,40.417874],[-74.773287,40.215227],[-74.82258,40.127596],[-75.129289,39.963288],[-75.145719,39.88661],[-75.414089,39.804456],[-75.616736,39.831841],[-75.786521,39.722302],[-79.477979,39.722302],[-80.518598,39.722302],[-80.518598,40.636951],[-80.518598,41.978802],[-80.518598,41.978802],[-80.332382,42.033571],[-79.76278,42.269079],[-79.76278,42.252649]]]}},
{"type":"Feature","id":"44","properties":{"name":"Rhode Island","density":1006,"visited":1},"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.196845,41.67757],[-71.120168,41.496831],[-71.317338,41.474923],[-71.196845,41.67757]]],[[[-71.530939,42.01714],[-71.383061,42.01714],[-71.328292,41.781632],[-71.22423,41.710431],[-71.344723,41.726862],[-71.448785,41.578985],[-71.481646,41.370861],[-71.859555,41.321569],[-71.799309,41.414677],[-71.799309,42.006186],[-71.530939,42.01714]]]]}},
{"type":"Feature","id":"45","properties":{"name":"South Carolina","density":155.4,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-82.764143,35.066903],[-82.550543,35.160011],[-82.276696,35.198349],[-81.044384,35.149057],[-81.038907,35.044995],[-80.934845,35.105241],[-80.781491,34.935456],[-80.797922,34.820441],[-79.675149,34.80401],[-78.541422,33.851022],[-78.716684,33.80173],[-78.935762,33.637421],[-79.149363,33.380005],[-79.187701,33.171881],[-79.357487,33.007573],[-79.582041,33.007573],[-79.631334,32.887081],[-79.866842,32.755634],[-79.998289,32.613234],[-80.206412,32.552987],[-80.430967,32.399633],[-80.452875,32.328433],[-80.660998,32.246279],[-80.885553,32.032678],[-81.115584,32.120309],[-81.121061,32.290094],[-81.279893,32.558464],[-81.416816,32.629664],[-81.42777,32.843265],[-81.493493,33.007573],[-81.761863,33.160928],[-81.937125,33.347144],[-81.926172,33.462159],[-82.194542,33.631944],[-82.325988,33.81816],[-82.55602,33.94413],[-82.714851,34.152254],[-82.747713,34.26727],[-82.901067,34.486347],[-83.005129,34.469916],[-83.339222,34.683517],[-83.322791,34.787579],[-83.109191,35.00118],[-82.764143,35.066903]]]}},
{"type":"Feature","id":"46","properties":{"name":"South Dakota","density":98.07,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-104.047534,45.944106],[-96.560556,45.933153],[-96.582464,45.818137],[-96.856311,45.604536],[-96.681049,45.412843],[-96.451017,45.297827],[-96.451017,43.501391],[-96.582464,43.479483],[-96.527695,43.397329],[-96.560556,43.222067],[-96.434587,43.123482],[-96.511264,43.052282],[-96.544125,42.855112],[-96.631756,42.707235],[-96.44554,42.488157],[-96.626279,42.515542],[-96.692003,42.657942],[-97.217789,42.844158],[-97.688806,42.844158],[-97.831206,42.866066],[-97.951699,42.767481],[-98.466531,42.94822],[-98.499393,42.997512],[-101.626726,42.997512],[-103.324578,43.002989],[-104.053011,43.002989],[-104.058488,44.996596],[-104.042057,44.996596],[-104.047534,45.944106]]]}},
{"type":"Feature","id":"47","properties":{"name":"Tennessee","density":88.08,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-88.054868,36.496384],[-88.071299,36.677123],[-87.852221,36.633308],[-86.592525,36.655216],[-85.486183,36.616877],[-85.289013,36.627831],[-84.544149,36.594969],[-83.689746,36.584015],[-83.673316,36.600446],[-81.679709,36.589492],[-81.723525,36.353984],[-81.909741,36.304691],[-82.03571,36.118475],[-82.216449,36.156814],[-82.610789,35.965121],[-82.638174,36.063706],[-82.775097,35.997983],[-82.994175,35.773428],[-83.251591,35.718659],[-83.498053,35.565304],[-83.7719,35.559827],[-84.018363,35.41195],[-84.09504,35.247642],[-84.29221,35.225734],[-84.319594,34.990226],[-85.606675,34.984749],[-87.359296,35.00118],[-88.202745,34.995703],[-88.471115,34.995703],[-90.311367,34.995703],[-90.212782,35.023087],[-90.114197,35.198349],[-90.130628,35.439335],[-89.944412,35.603643],[-89.911551,35.756997],[-89.763673,35.811767],[-89.730812,35.997983],[-89.533642,36.249922],[-89.539119,36.496384],[-89.484349,36.496384],[-89.418626,36.496384],[-89.298133,36.507338],[-88.054868,36.496384]]]}},
{"type":"Feature","id":"48","properties":{"name":"Texas","density":98.07,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-101.812942,36.501861],[-100.000075,36.501861],[-100.000075,34.563024],[-99.923398,34.573978],[-99.698843,34.382285],[-99.57835,34.415147],[-99.260688,34.404193],[-99.189488,34.2125],[-98.986841,34.223454],[-98.767763,34.135823],[-98.570593,34.146777],[-98.488439,34.064623],[-98.36247,34.157731],[-98.170777,34.113915],[-98.088623,34.004376],[-97.946222,33.987946],[-97.869545,33.851022],[-97.694283,33.982469],[-97.458774,33.905791],[-97.371143,33.823637],[-97.256128,33.861976],[-97.173974,33.736006],[-96.922034,33.960561],[-96.850834,33.845545],[-96.631756,33.845545],[-96.423633,33.774345],[-96.346956,33.686714],[-96.149786,33.840068],[-95.936185,33.889361],[-95.8376,33.834591],[-95.602092,33.933176],[-95.547322,33.878407],[-95.289906,33.87293],[-95.224183,33.960561],[-94.966767,33.861976],[-94.868182,33.74696],[-94.484796,33.637421],[-94.380734,33.544313],[-94.183564,33.593606],[-94.041164,33.54979],[-94.041164,33.018527],[-94.041164,31.994339],[-93.822086,31.775262],[-93.816609,31.556184],[-93.542762,31.15089],[-93.526331,30.93729],[-93.630393,30.679874],[-93.728978,30.575812],[-93.696116,30.438888],[-93.767317,30.334826],[-93.690639,30.143133],[-93.926148,29.787132],[-93.838517,29.688547],[-94.002825,29.68307],[-94.523134,29.546147],[-94.70935,29.622824],[-94.742212,29.787132],[-94.873659,29.672117],[-94.966767,29.699501],[-95.016059,29.557101],[-94.911997,29.496854],[-94.895566,29.310638],[-95.081782,29.113469],[-95.383014,28.867006],[-95.985477,28.604113],[-96.045724,28.647929],[-96.226463,28.582205],[-96.23194,28.642452],[-96.478402,28.598636],[-96.593418,28.724606],[-96.664618,28.697221],[-96.401725,28.439805],[-96.593418,28.357651],[-96.774157,28.406943],[-96.801542,28.226204],[-97.026096,28.039988],[-97.256128,27.694941],[-97.404005,27.333463],[-97.513544,27.360848],[-97.540929,27.229401],[-97.425913,27.262263],[-97.480682,26.99937],[-97.557359,26.988416],[-97.562836,26.840538],[-97.469728,26.758384],[-97.442344,26.457153],[-97.332805,26.353091],[-97.30542,26.161398],[-97.217789,25.991613],[-97.524498,25.887551],[-97.650467,26.018997],[-97.885976,26.06829],[-98.198161,26.057336],[-98.466531,26.221644],[-98.669178,26.238075],[-98.822533,26.369522],[-99.030656,26.413337],[-99.173057,26.539307],[-99.266165,26.840538],[-99.446904,27.021277],[-99.424996,27.174632],[-99.50715,27.33894],[-99.479765,27.48134],[-99.605735,27.640172],[-99.709797,27.656603],[-99.879582,27.799003],[-99.934351,27.979742],[-100.082229,28.14405],[-100.29583,28.280974],[-100.399891,28.582205],[-100.498476,28.66436],[-100.629923,28.905345],[-100.673738,29.102515],[-100.799708,29.244915],[-101.013309,29.370885],[-101.062601,29.458516],[-101.259771,29.535193],[-101.413125,29.754271],[-101.851281,29.803563],[-102.114174,29.792609],[-102.338728,29.869286],[-102.388021,29.765225],[-102.629006,29.732363],[-102.809745,29.524239],[-102.919284,29.190146],[-102.97953,29.184669],[-103.116454,28.987499],[-103.280762,28.982022],[-103.527224,29.135376],[-104.146119,29.381839],[-104.266611,29.513285],[-104.507597,29.639255],[-104.677382,29.924056],[-104.688336,30.181472],[-104.858121,30.389596],[-104.896459,30.570335],[-105.005998,30.685351],[-105.394861,30.855136],[-105.602985,31.085167],[-105.77277,31.167321],[-105.953509,31.364491],[-106.205448,31.468553],[-106.38071,31.731446],[-106.528588,31.786216],[-106.643603,31.901231],[-106.616219,31.999816],[-103.067161,31.999816],[-103.067161,33.002096],[-103.045254,34.01533],[-103.039777,36.501861],[-103.001438,36.501861],[-101.812942,36.501861]]]}},
{"type":"Feature","id":"49","properties":{"name":"Utah","density":34.30,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-112.164359,41.995232],[-111.047063,42.000709],[-111.047063,40.998429],[-109.04798,40.998429],[-109.053457,39.125316],[-109.058934,38.27639],[-109.042503,38.166851],[-109.042503,37.000263],[-110.499369,37.00574],[-114.048427,37.000263],[-114.04295,41.995232],[-112.164359,41.995232]]]}},
{"type":"Feature","id":"50","properties":{"name":"Vermont","density":67.73,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-71.503554,45.013027],[-71.4926,44.914442],[-71.629524,44.750133],[-71.536416,44.585825],[-71.700724,44.41604],[-72.034817,44.322932],[-72.02934,44.07647],[-72.116971,43.994316],[-72.204602,43.769761],[-72.379864,43.572591],[-72.456542,43.150867],[-72.445588,43.008466],[-72.533219,42.953697],[-72.544173,42.80582],[-72.456542,42.729142],[-73.267129,42.745573],[-73.278083,42.833204],[-73.245221,43.523299],[-73.404052,43.687607],[-73.349283,43.769761],[-73.436914,44.043608],[-73.321898,44.246255],[-73.294514,44.437948],[-73.387622,44.618687],[-73.332852,44.804903],[-73.343806,45.013027],[-72.308664,45.002073],[-71.503554,45.013027]]]}},
{"type":"Feature","id":"51","properties":{"name":"Virginia","density":204.5,"visited":1},"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.397659,38.013497],[-75.244304,38.029928],[-75.375751,37.860142],[-75.512674,37.799896],[-75.594828,37.569865],[-75.802952,37.197433],[-75.972737,37.120755],[-76.027507,37.257679],[-75.939876,37.564388],[-75.671506,37.95325],[-75.397659,38.013497]]],[[[-76.016553,37.95325],[-75.994645,37.95325],[-76.043938,37.95325],[-76.016553,37.95325]]],[[[-78.349729,39.464886],[-77.82942,39.130793],[-77.719881,39.322485],[-77.566527,39.306055],[-77.456988,39.223901],[-77.456988,39.076023],[-77.248864,39.026731],[-77.117418,38.933623],[-77.040741,38.791222],[-77.128372,38.632391],[-77.248864,38.588575],[-77.325542,38.446175],[-77.281726,38.342113],[-77.013356,38.374975],[-76.964064,38.216144],[-76.613539,38.15042],[-76.514954,38.024451],[-76.235631,37.887527],[-76.3616,37.608203],[-76.246584,37.389126],[-76.383508,37.285064],[-76.399939,37.159094],[-76.273969,37.082417],[-76.410893,36.961924],[-76.619016,37.120755],[-76.668309,37.065986],[-76.48757,36.95097],[-75.994645,36.923586],[-75.868676,36.551154],[-79.510841,36.5402],[-80.294043,36.545677],[-80.978661,36.562108],[-81.679709,36.589492],[-83.673316,36.600446],[-83.136575,36.742847],[-83.070852,36.852385],[-82.879159,36.890724],[-82.868205,36.978355],[-82.720328,37.044078],[-82.720328,37.120755],[-82.353373,37.268633],[-81.969987,37.537003],[-81.986418,37.454849],[-81.849494,37.285064],[-81.679709,37.20291],[-81.55374,37.208387],[-81.362047,37.339833],[-81.225123,37.235771],[-80.967707,37.290541],[-80.513121,37.482234],[-80.474782,37.421987],[-80.29952,37.509618],[-80.294043,37.690357],[-80.184505,37.849189],[-79.998289,37.997066],[-79.921611,38.177805],[-79.724442,38.364021],[-79.647764,38.594052],[-79.477979,38.457129],[-79.313671,38.413313],[-79.209609,38.495467],[-78.996008,38.851469],[-78.870039,38.763838],[-78.404499,39.169131],[-78.349729,39.464886]]]]}},
{"type":"Feature","id":"53","properties":{"name":"Washington","density":102.6,"visited":1},"geometry":{"type":"MultiPolygon","coordinates":[[[[-117.033359,49.000239],[-117.044313,47.762451],[-117.038836,46.426077],[-117.055267,46.343923],[-116.92382,46.168661],[-116.918344,45.993399],[-118.988627,45.998876],[-119.125551,45.933153],[-119.525367,45.911245],[-119.963522,45.823614],[-120.209985,45.725029],[-120.505739,45.697644],[-120.637186,45.746937],[-121.18488,45.604536],[-121.217742,45.670259],[-121.535404,45.725029],[-121.809251,45.708598],[-122.247407,45.549767],[-122.762239,45.659305],[-122.811531,45.960537],[-122.904639,46.08103],[-123.11824,46.185092],[-123.211348,46.174138],[-123.370179,46.146753],[-123.545441,46.261769],[-123.72618,46.300108],[-123.874058,46.239861],[-124.065751,46.327492],[-124.027412,46.464416],[-123.895966,46.535616],[-124.098612,46.74374],[-124.235536,47.285957],[-124.31769,47.357157],[-124.427229,47.740543],[-124.624399,47.88842],[-124.706553,48.184175],[-124.597014,48.381345],[-124.394367,48.288237],[-123.983597,48.162267],[-123.704273,48.167744],[-123.424949,48.118452],[-123.162056,48.167744],[-123.036086,48.080113],[-122.800578,48.08559],[-122.636269,47.866512],[-122.515777,47.882943],[-122.493869,47.587189],[-122.422669,47.318818],[-122.324084,47.346203],[-122.422669,47.576235],[-122.395284,47.800789],[-122.230976,48.030821],[-122.362422,48.123929],[-122.373376,48.288237],[-122.471961,48.468976],[-122.422669,48.600422],[-122.488392,48.753777],[-122.647223,48.775685],[-122.795101,48.8907],[-122.756762,49.000239],[-117.033359,49.000239]]],[[[-122.718423,48.310145],[-122.586977,48.35396],[-122.608885,48.151313],[-122.767716,48.227991],[-122.718423,48.310145]]],[[[-123.025132,48.583992],[-122.915593,48.715438],[-122.767716,48.556607],[-122.811531,48.419683],[-123.041563,48.458022],[-123.025132,48.583992]]]]}},
{"type":"Feature","id":"54","properties":{"name":"West Virginia","density":77.06,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-80.518598,40.636951],[-80.518598,39.722302],[-79.477979,39.722302],[-79.488933,39.20747],[-79.291763,39.300578],[-79.094593,39.470363],[-78.963147,39.437501],[-78.765977,39.585379],[-78.470222,39.514178],[-78.431884,39.623717],[-78.267575,39.61824],[-78.174467,39.694917],[-78.004682,39.601809],[-77.834897,39.601809],[-77.719881,39.322485],[-77.82942,39.130793],[-78.349729,39.464886],[-78.404499,39.169131],[-78.870039,38.763838],[-78.996008,38.851469],[-79.209609,38.495467],[-79.313671,38.413313],[-79.477979,38.457129],[-79.647764,38.594052],[-79.724442,38.364021],[-79.921611,38.177805],[-79.998289,37.997066],[-80.184505,37.849189],[-80.294043,37.690357],[-80.29952,37.509618],[-80.474782,37.421987],[-80.513121,37.482234],[-80.967707,37.290541],[-81.225123,37.235771],[-81.362047,37.339833],[-81.55374,37.208387],[-81.679709,37.20291],[-81.849494,37.285064],[-81.986418,37.454849],[-81.969987,37.537003],[-82.101434,37.553434],[-82.293127,37.668449],[-82.342419,37.783465],[-82.50125,37.931343],[-82.621743,38.123036],[-82.594358,38.424267],[-82.331465,38.446175],[-82.293127,38.577622],[-82.172634,38.632391],[-82.221926,38.785745],[-82.03571,39.026731],[-81.887833,38.873376],[-81.783771,38.966484],[-81.811156,39.0815],[-81.685186,39.273193],[-81.57017,39.267716],[-81.455155,39.410117],[-81.345616,39.344393],[-81.219646,39.388209],[-80.830783,39.711348],[-80.737675,40.078303],[-80.600752,40.319289],[-80.595275,40.472643],[-80.666475,40.582182],[-80.518598,40.636951]]]}},
{"type":"Feature","id":"55","properties":{"name":"Wisconsin","density":105.2,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-90.415429,46.568478],[-90.229213,46.508231],[-90.119674,46.338446],[-89.09001,46.135799],[-88.662808,45.987922],[-88.531362,46.020784],[-88.10416,45.922199],[-87.989145,45.796229],[-87.781021,45.675736],[-87.791975,45.500474],[-87.885083,45.363551],[-87.649574,45.341643],[-87.742682,45.199243],[-87.589328,45.095181],[-87.627666,44.974688],[-87.819359,44.95278],[-87.983668,44.722749],[-88.043914,44.563917],[-87.928898,44.536533],[-87.775544,44.640595],[-87.611236,44.837764],[-87.403112,44.914442],[-87.238804,45.166381],[-87.03068,45.22115],[-87.047111,45.089704],[-87.189511,44.969211],[-87.468835,44.552964],[-87.545512,44.322932],[-87.540035,44.158624],[-87.644097,44.103854],[-87.737205,43.8793],[-87.704344,43.687607],[-87.791975,43.561637],[-87.912467,43.249452],[-87.885083,43.002989],[-87.76459,42.783912],[-87.802929,42.493634],[-88.788778,42.493634],[-90.639984,42.510065],[-90.711184,42.636034],[-91.067185,42.75105],[-91.143862,42.909881],[-91.176724,43.134436],[-91.056231,43.254929],[-91.204109,43.353514],[-91.215062,43.501391],[-91.269832,43.616407],[-91.242447,43.775238],[-91.43414,43.994316],[-91.592971,44.032654],[-91.877772,44.202439],[-91.927065,44.333886],[-92.233773,44.443425],[-92.337835,44.552964],[-92.545959,44.569394],[-92.808852,44.750133],[-92.737652,45.117088],[-92.75956,45.286874],[-92.644544,45.440228],[-92.770513,45.566198],[-92.885529,45.577151],[-92.869098,45.719552],[-92.639067,45.933153],[-92.354266,46.015307],[-92.29402,46.075553],[-92.29402,46.667063],[-92.091373,46.749217],[-92.014696,46.705401],[-91.790141,46.694447],[-91.09457,46.864232],[-90.837154,46.95734],[-90.749522,46.88614],[-90.886446,46.754694],[-90.55783,46.584908],[-90.415429,46.568478]]]}},
{"type":"Feature","id":"56","properties":{"name":"Wyoming","density":5.851,"visited":1},"geometry":{"type":"Polygon","coordinates":[[[-109.080842,45.002073],[-105.91517,45.002073],[-104.058488,44.996596],[-104.053011,43.002989],[-104.053011,41.003906],[-105.728954,40.998429],[-107.919731,41.003906],[-109.04798,40.998429],[-111.047063,40.998429],[-111.047063,42.000709],[-111.047063,44.476286],[-111.05254,45.002073],[-109.080842,45.002073]]]}},
]};
var data = {
"route_geometry":[[44.76685,-85.620232],[44.76685,-85.620232],[44.766819,-85.62027],[44.76627,-85.620399],[44.766251,-85.620461],[44.76622,-85.620743],[44.76619,-85.621033],[44.766178,-85.621307],[44.766171,-85.621597],[44.766201,-85.621872],[44.766258,-85.622177],[44.766369,-85.622704],[44.766399,-85.622917],[44.766399,-85.623154],[44.76638,-85.623337],[44.766319,-85.623512],[44.766258,-85.623611],[44.766178,-85.623703],[44.766048,-85.623772],[44.76593,-85.623787],[44.76582,-85.62381],[44.765709,-85.623833],[44.765831,-85.62471],[44.765968,-85.625633],[44.766022,-85.625992],[44.76606,-85.626244],[44.76609,-85.626457],[44.766121,-85.626617],[44.766171,-85.626953],[44.766201,-85.627151],[44.76622,-85.627251],[44.766289,-85.627518],[44.766338,-85.627762],[44.766441,-85.628197],[44.766579,-85.62867],[44.766769,-85.629143],[44.767101,-85.629883],[44.767311,-85.630363],[44.767391,-85.630547],[44.768162,-85.632339],[44.768608,-85.633331],[44.76899,-85.634163],[44.768902,-85.634277],[44.76881,-85.634407],[44.7687,-85.634499],[44.7686,-85.634552],[44.767929,-85.634552],[44.767311,-85.634537],[44.766979,-85.634537],[44.766369,-85.634537],[44.7658,-85.634552],[44.765141,-85.634552],[44.764622,-85.634537],[44.76403,-85.634567],[44.763439,-85.634583],[44.762852,-85.634583],[44.76226,-85.63459],[44.761669,-85.63459],[44.761082,-85.63459],[44.76049,-85.634613],[44.759899,-85.634621],[44.7593,-85.634651],[44.75872,-85.634682],[44.758129,-85.634697],[44.757549,-85.63472],[44.75695,-85.634743],[44.756371,-85.634758],[44.755749,-85.634781],[44.75568,-85.634781],[44.755211,-85.634811],[44.754601,-85.63485],[44.754028,-85.63488],[44.75341,-85.634911],[44.752861,-85.634956],[44.752258,-85.635002],[44.751839,-85.635017],[44.751621,-85.635033],[44.750851,-85.635094],[44.75005,-85.635223],[44.74976,-85.635307],[44.749458,-85.635422],[44.749031,-85.635597],[44.748699,-85.63578],[44.74823,-85.636047],[44.747841,-85.63633],[44.747391,-85.636681],[44.74651,-85.637573],[44.745701,-85.638519],[44.744431,-85.639961],[44.74435,-85.640053],[44.744221,-85.640213],[44.74411,-85.640327],[44.743519,-85.641006],[44.743149,-85.641403],[44.742229,-85.642303],[44.74165,-85.642868],[44.741341,-85.643112],[44.740829,-85.643532],[44.740559,-85.643723],[44.73951,-85.644417],[44.739151,-85.644653],[44.7388,-85.644829],[44.738171,-85.645119],[44.73798,-85.645203],[44.737888,-85.645248],[44.737671,-85.64534],[44.736118,-85.645851],[44.73518,-85.646049],[44.734982,-85.646072],[44.73378,-85.646187],[44.732109,-85.646172],[44.729961,-85.646149],[44.729519,-85.646118],[44.726761,-85.646103],[44.724812,-85.646042],[44.72477,-85.646042],[44.724731,-85.646042],[44.722809,-85.646019],[44.722599,-85.646019],[44.721981,-85.646027],[44.721088,-85.646004],[44.720112,-85.646004],[44.719212,-85.646057],[44.718868,-85.646118],[44.718491,-85.646187],[44.718029,-85.646317],[44.71669,-85.646896],[44.712509,-85.64933],[44.70826,-85.651848],[44.706841,-85.652649],[44.706612,-85.652779],[44.704369,-85.654114],[44.703751,-85.654472],[44.70295,-85.654953],[44.702049,-85.655441],[44.701141,-85.65583],[44.700661,-85.655991],[44.699539,-85.656227],[44.699329,-85.65625],[44.69878,-85.656273],[44.697472,-85.656288],[44.694401,-85.656281],[44.689758,-85.656242],[44.686409,-85.656258],[44.68457,-85.656242],[44.682709,-85.656242],[44.68161,-85.656227],[44.679932,-85.656227],[44.678101,-85.656242],[44.674889,-85.656258],[44.672581,-85.656227],[44.671951,-85.656227],[44.669979,-85.656242],[44.666069,-85.656197],[44.66502,-85.656189],[44.664391,-85.656197],[44.663132,-85.656189],[44.662369,-85.656181],[44.661942,-85.656181],[44.660389,-85.656189],[44.657639,-85.656189],[44.657471,-85.656189],[44.657299,-85.656181],[44.652191,-85.656151],[44.650219,-85.656143],[44.64872,-85.65612],[44.64724,-85.656097],[44.64296,-85.656059],[44.635201,-85.656067],[44.635101,-85.656067],[44.628471,-85.656052],[44.625938,-85.656021],[44.62402,-85.656013],[44.62294,-85.656013],[44.622829,-85.656013],[44.621288,-85.655998],[44.617321,-85.655952],[44.61166,-85.655891],[44.60675,-85.65583],[44.605148,-85.655823],[44.602341,-85.655823],[44.599491,-85.65593],[44.595741,-85.656036],[44.584671,-85.655968],[44.576241,-85.655907],[44.570221,-85.655869],[44.565708,-85.655823],[44.562099,-85.655853],[44.558868,-85.655884],[44.557991,-85.655884],[44.557529,-85.655891],[44.557339,-85.655891],[44.557171,-85.655907],[44.557072,-85.655937],[44.556961,-85.655983],[44.55687,-85.656021],[44.556831,-85.656036],[44.556759,-85.656067],[44.556679,-85.656128],[44.55658,-85.656212],[44.556389,-85.65641],[44.55629,-85.656532],[44.556229,-85.656616],[44.556141,-85.656792],[44.55608,-85.656914],[44.556042,-85.657043],[44.555988,-85.657204],[44.555939,-85.657356],[44.555908,-85.657547],[44.555882,-85.657837],[44.555908,-85.663658],[44.555962,-85.673531],[44.55592,-85.673798],[44.555882,-85.673973],[44.55582,-85.674187],[44.555729,-85.674469],[44.555679,-85.674606],[44.555599,-85.674797],[44.555511,-85.674957],[44.555431,-85.675102],[44.555328,-85.675232],[44.555168,-85.67543],[44.555061,-85.675552],[44.554932,-85.675667],[44.55484,-85.675751],[44.554729,-85.675819],[44.554619,-85.675888],[44.554531,-85.675941],[44.554451,-85.675972],[44.554352,-85.676018],[44.554291,-85.676033],[44.554199,-85.676064],[44.554081,-85.676071],[44.553791,-85.676109],[44.55349,-85.676109],[44.55238,-85.676109],[44.548759,-85.67614],[44.54739,-85.676147],[44.547169,-85.676147],[44.547009,-85.676147],[44.546871,-85.676147],[44.545151,-85.676163],[44.544189,-85.676163],[44.541561,-85.676178],[44.540951,-85.676178],[44.531551,-85.676224],[44.527069,-85.676224],[44.52652,-85.676231],[44.525249,-85.676231],[44.519829,-85.676338],[44.514931,-85.676376],[44.512611,-85.67643],[44.508549,-85.676628],[44.50671,-85.676743],[44.505951,-85.676826],[44.50518,-85.676857],[44.50433,-85.676903],[44.50433,-85.67939],[44.504379,-85.681183],[44.504391,-85.68306],[44.504398,-85.683739],[44.50441,-85.685318],[44.50441,-85.685699],[44.504421,-85.685768],[44.504429,-85.686836],[44.50444,-85.688278],[44.504452,-85.68943],[44.504459,-85.690163],[44.504509,-85.692833],[44.504501,-85.693222],[44.50423,-85.694344],[44.50386,-85.695137],[44.50349,-85.695618],[44.503132,-85.695923],[44.502571,-85.69635],[44.501881,-85.696632],[44.5,-85.696548],[44.49733,-85.69693],[44.48859,-85.697144],[44.488529,-85.697144],[44.487919,-85.697151],[44.487141,-85.697166],[44.486649,-85.697182],[44.482609,-85.697273],[44.475739,-85.697411],[44.47459,-85.697433],[44.472012,-85.697487],[44.469841,-85.697533],[44.468159,-85.697563],[44.466259,-85.697647],[44.45369,-85.698036],[44.44635,-85.698303],[44.444569,-85.698212],[44.444302,-85.698196],[44.44363,-85.698174],[44.443439,-85.698036],[44.44273,-85.697777],[44.44154,-85.697617],[44.439758,-85.698174],[44.439739,-85.698288],[44.438622,-85.698517],[44.43819,-85.69854],[44.437851,-85.69857],[44.437222,-85.698608],[44.436581,-85.698624],[44.43338,-85.698639],[44.432529,-85.698708],[44.43153,-85.698669],[44.42981,-85.698692],[44.428848,-85.698708],[44.42458,-85.698769],[44.42366,-85.698799],[44.422661,-85.69886],[44.419628,-85.69899],[44.418442,-85.698883],[44.417301,-85.698914],[44.412159,-85.699097],[44.41013,-85.699173],[44.408321,-85.699249],[44.403709,-85.699463],[44.403091,-85.698128],[44.402779,-85.69754],[44.40274,-85.697449],[44.402359,-85.696716],[44.39904,-85.691437],[44.394241,-85.683769],[44.39307,-85.681763],[44.392319,-85.680267],[44.386299,-85.668549],[44.385551,-85.667099],[44.384682,-85.665337],[44.38308,-85.662117],[44.382278,-85.660179],[44.38166,-85.658234],[44.381248,-85.656227],[44.38113,-85.653931],[44.381149,-85.650139],[44.381031,-85.64003],[44.381062,-85.638077],[44.38092,-85.634857],[44.380878,-85.634529],[44.380829,-85.634102],[44.380371,-85.631973],[44.38028,-85.631554],[44.37989,-85.630089],[44.37941,-85.628998],[44.378769,-85.627953],[44.378078,-85.62709],[44.377209,-85.626259],[44.375542,-85.625061],[44.375,-85.624657],[44.374008,-85.624077],[44.373489,-85.623596],[44.37122,-85.622101],[44.366459,-85.618713],[44.36338,-85.616524],[44.362629,-85.616074],[44.36153,-85.615211],[44.361191,-85.615082],[44.360661,-85.614632],[44.357738,-85.612717],[44.356941,-85.612297],[44.355042,-85.610962],[44.352341,-85.608437],[44.34103,-85.597481],[44.338329,-85.594833],[44.335911,-85.592567],[44.332211,-85.588997],[44.329739,-85.586037],[44.328529,-85.584282],[44.327271,-85.582291],[44.32589,-85.580101],[44.32542,-85.579353],[44.323811,-85.576828],[44.31918,-85.569817],[44.312962,-85.560127],[44.309528,-85.554703],[44.30648,-85.549629],[44.306351,-85.549408],[44.304932,-85.546509],[44.304539,-85.545738],[44.304291,-85.545242],[44.30217,-85.53965],[44.299931,-85.533897],[44.295391,-85.521973],[44.294319,-85.519363],[44.29084,-85.510246],[44.290009,-85.50779],[44.289268,-85.505333],[44.287601,-85.500008],[44.285259,-85.492348],[44.283909,-85.487823],[44.283249,-85.485939],[44.282742,-85.484703],[44.28212,-85.483276],[44.281071,-85.481178],[44.280231,-85.479759],[44.279179,-85.478127],[44.278332,-85.476997],[44.27726,-85.475693],[44.276001,-85.474327],[44.27454,-85.473022],[44.272629,-85.47155],[44.27079,-85.470467],[44.268879,-85.469528],[44.267349,-85.468803],[44.254471,-85.462463],[44.252319,-85.461433],[44.251381,-85.46093],[44.249989,-85.460243],[44.249008,-85.459778],[44.24802,-85.459267],[44.247082,-85.458817],[44.24485,-85.457733],[44.24387,-85.457237],[44.242809,-85.456734],[44.24242,-85.456551],[44.241058,-85.455994],[44.240891,-85.455902],[44.240601,-85.455788],[44.240391,-85.455704],[44.240189,-85.455627],[44.23967,-85.455383],[44.239491,-85.455307],[44.239281,-85.455238],[44.23819,-85.454979],[44.237751,-85.454788],[44.237389,-85.454536],[44.23727,-85.454437],[44.237049,-85.454277],[44.23629,-85.453613],[44.236172,-85.453499],[44.235729,-85.453117],[44.235291,-85.452698],[44.234009,-85.451134],[44.231621,-85.447281],[44.23119,-85.446609],[44.23101,-85.446251],[44.230061,-85.444969],[44.229252,-85.444008],[44.228168,-85.442886],[44.226669,-85.441589],[44.222931,-85.43856],[44.221062,-85.437027],[44.22039,-85.436394],[44.22002,-85.436073],[44.219872,-85.435928],[44.21854,-85.434334],[44.21767,-85.43309],[44.216961,-85.431892],[44.216129,-85.430359],[44.214249,-85.426933],[44.213211,-85.425003],[44.2118,-85.422539],[44.21019,-85.419968],[44.208462,-85.417191],[44.207909,-85.41629],[44.2075,-85.415649],[44.206749,-85.414467],[44.205971,-85.414658],[44.20311,-85.415489],[44.202751,-85.415604],[44.202259,-85.41584],[44.201881,-85.416252],[44.200352,-85.417847],[44.19907,-85.419182],[44.198051,-85.420036],[44.19693,-85.420731],[44.19619,-85.421089],[44.195629,-85.42131],[44.193958,-85.421631],[44.193031,-85.421753],[44.19202,-85.421883],[44.18969,-85.422218],[44.187771,-85.422638],[44.179729,-85.424583],[44.179199,-85.424789],[44.177849,-85.425613],[44.176991,-85.426208],[44.176331,-85.42672],[44.17532,-85.427872],[44.1721,-85.432159],[44.170479,-85.434357],[44.170021,-85.434982],[44.167339,-85.43853],[44.166328,-85.439819],[44.164982,-85.441757],[44.16396,-85.443192],[44.163132,-85.44426],[44.148491,-85.463921],[44.147572,-85.464851],[44.146542,-85.465714],[44.145569,-85.466331],[44.14444,-85.466873],[44.143669,-85.467133],[44.142159,-85.4674],[44.139179,-85.467758],[44.134701,-85.468109],[44.13221,-85.468399],[44.12923,-85.468689],[44.126709,-85.468987],[44.12505,-85.469231],[44.124531,-85.469307],[44.123291,-85.469559],[44.12141,-85.469917],[44.12077,-85.470047],[44.12019,-85.470169],[44.118721,-85.470467],[44.118141,-85.470581],[44.11665,-85.470886],[44.108009,-85.472572],[44.105419,-85.473053],[44.10342,-85.473473],[44.101231,-85.473907],[44.098061,-85.474792],[44.09428,-85.476257],[44.090149,-85.477768],[44.088379,-85.478409],[44.0606,-85.48819],[44.055161,-85.490593],[44.05241,-85.491547],[44.047421,-85.492867],[44.04631,-85.493118],[44.045101,-85.493431],[44.039501,-85.49472],[44.021679,-85.49897],[44.020149,-85.499443],[44.014648,-85.500748],[44.012379,-85.501373],[44.007069,-85.5028],[44.00211,-85.504463],[43.99987,-85.50544],[43.998249,-85.506393],[43.996231,-85.507698],[43.990269,-85.511597],[43.989479,-85.512093],[43.987438,-85.513107],[43.98497,-85.513817],[43.983139,-85.513901],[43.980042,-85.513786],[43.97982,-85.513786],[43.973991,-85.513367],[43.968319,-85.513161],[43.96682,-85.513062],[43.96484,-85.5131],[43.962421,-85.513847],[43.959541,-85.515709],[43.957642,-85.51696],[43.956551,-85.517487],[43.954319,-85.518173],[43.95076,-85.518723],[43.949242,-85.519112],[43.946579,-85.520317],[43.944851,-85.521103],[43.944382,-85.521317],[43.94413,-85.521423],[43.94302,-85.522041],[43.942341,-85.522301],[43.941311,-85.522614],[43.940331,-85.522713],[43.93869,-85.52256],[43.93713,-85.522141],[43.933491,-85.520981],[43.931438,-85.520447],[43.929218,-85.519913],[43.927441,-85.519707],[43.925598,-85.519623],[43.923,-85.519737],[43.921661,-85.519951],[43.92012,-85.520233],[43.918381,-85.520653],[43.9165,-85.521378],[43.916019,-85.521561],[43.913219,-85.522629],[43.91206,-85.523117],[43.91013,-85.524063],[43.9086,-85.52475],[43.90723,-85.525291],[43.90625,-85.525597],[43.904961,-85.525932],[43.900101,-85.526993],[43.89756,-85.52739],[43.895679,-85.527763],[43.893539,-85.527977],[43.890579,-85.528099],[43.889851,-85.528122],[43.889389,-85.528137],[43.887829,-85.528107],[43.8871,-85.528137],[43.886799,-85.528137],[43.88448,-85.528137],[43.883751,-85.528122],[43.883499,-85.528137],[43.88131,-85.52816],[43.881069,-85.528183],[43.87965,-85.528214],[43.87846,-85.528397],[43.876949,-85.528816],[43.875038,-85.529694],[43.873501,-85.530548],[43.872879,-85.530891],[43.872688,-85.530998],[43.869629,-85.532822],[43.86784,-85.533852],[43.866291,-85.534729],[43.865162,-85.53521],[43.864449,-85.5354],[43.86367,-85.535568],[43.86256,-85.535683],[43.86084,-85.535568],[43.86002,-85.535423],[43.859261,-85.53521],[43.85865,-85.534988],[43.852612,-85.533012],[43.851349,-85.532654],[43.849751,-85.532272],[43.847389,-85.532127],[43.845482,-85.532333],[43.844841,-85.532463],[43.84425,-85.532639],[43.842091,-85.533272],[43.84026,-85.53389],[43.836971,-85.534729],[43.83466,-85.535248],[43.83181,-85.535606],[43.828678,-85.536171],[43.82412,-85.536858],[43.820229,-85.537537],[43.81752,-85.537903],[43.815781,-85.537949],[43.815411,-85.537956],[43.815189,-85.537941],[43.813789,-85.53772],[43.812481,-85.537537],[43.810398,-85.536858],[43.809101,-85.53643],[43.807812,-85.535927],[43.805641,-85.535248],[43.80389,-85.534927],[43.80291,-85.534767],[43.80204,-85.534653],[43.800869,-85.534554],[43.80022,-85.534569],[43.796249,-85.534607],[43.786579,-85.534531],[43.78614,-85.534554],[43.785721,-85.534554],[43.779202,-85.534607],[43.778721,-85.534637],[43.77824,-85.534637],[43.777748,-85.534683],[43.7771,-85.53476],[43.77676,-85.53476],[43.776192,-85.534821],[43.7752,-85.534897],[43.77412,-85.535019],[43.771091,-85.535217],[43.770119,-85.535248],[43.76936,-85.53524],[43.768539,-85.535156],[43.76712,-85.535011],[43.76593,-85.534782],[43.765259,-85.534653],[43.764561,-85.53447],[43.763969,-85.534286],[43.762909,-85.533951],[43.758339,-85.532242],[43.757301,-85.531868],[43.756538,-85.531563],[43.754688,-85.530907],[43.753799,-85.530693],[43.75264,-85.530457],[43.751808,-85.530327],[43.750858,-85.530296],[43.750431,-85.530296],[43.749981,-85.530327],[43.749519,-85.530388],[43.74773,-85.53054],[43.740971,-85.532143],[43.73819,-85.532799],[43.736931,-85.533089],[43.736309,-85.533234],[43.734581,-85.533592],[43.732868,-85.533859],[43.7309,-85.533867],[43.729519,-85.533813],[43.728642,-85.53376],[43.728458,-85.533752],[43.72625,-85.533447],[43.717411,-85.531754],[43.705582,-85.529488],[43.704441,-85.529251],[43.703571,-85.529091],[43.702309,-85.528732],[43.70116,-85.528381],[43.700169,-85.528008],[43.699589,-85.527763],[43.698002,-85.527023],[43.697151,-85.526588],[43.6964,-85.526176],[43.696178,-85.526093],[43.69598,-85.526009],[43.695141,-85.525581],[43.693939,-85.524948],[43.692631,-85.524384],[43.691582,-85.523781],[43.690578,-85.523178],[43.689369,-85.522583],[43.687988,-85.521973],[43.687469,-85.521843],[43.686939,-85.521637],[43.686779,-85.521591],[43.68576,-85.521217],[43.685532,-85.521156],[43.684719,-85.521004],[43.682671,-85.52076],[43.68211,-85.520729],[43.680988,-85.520752],[43.680061,-85.520767],[43.679619,-85.52076],[43.678261,-85.520737],[43.67569,-85.520821],[43.673439,-85.520821],[43.671532,-85.520851],[43.660519,-85.520981],[43.65881,-85.52092],[43.658401,-85.520844],[43.657848,-85.520782],[43.657421,-85.520699],[43.657051,-85.52066],[43.656651,-85.520561],[43.655159,-85.520172],[43.654869,-85.520103],[43.653671,-85.5196],[43.653519,-85.519501],[43.652359,-85.518951],[43.651131,-85.518211],[43.65044,-85.517723],[43.649059,-85.516838],[43.647121,-85.51561],[43.645821,-85.514763],[43.62817,-85.503227],[43.627449,-85.502831],[43.62719,-85.50264],[43.625309,-85.501427],[43.624401,-85.500862],[43.62381,-85.500519],[43.622608,-85.499939],[43.622181,-85.499763],[43.62138,-85.499512],[43.620708,-85.499283],[43.62043,-85.499184],[43.620079,-85.499046],[43.620029,-85.499023],[43.61982,-85.498947],[43.615551,-85.497581],[43.614601,-85.497231],[43.613621,-85.496742],[43.612839,-85.496407],[43.61235,-85.496193],[43.610641,-85.495216],[43.610119,-85.494942],[43.609219,-85.49453],[43.607601,-85.493698],[43.605091,-85.492302],[43.601231,-85.490334],[43.598961,-85.489288],[43.597321,-85.488693],[43.596588,-85.488564],[43.595482,-85.48838],[43.593781,-85.488091],[43.593151,-85.488113],[43.592461,-85.488197],[43.589741,-85.48877],[43.589272,-85.488853],[43.588509,-85.488823],[43.588089,-85.488907],[43.587269,-85.489098],[43.58392,-85.489609],[43.583382,-85.489708],[43.57901,-85.490463],[43.578659,-85.490501],[43.57597,-85.490936],[43.571629,-85.491669],[43.570431,-85.491898],[43.569019,-85.492081],[43.568371,-85.492149],[43.567379,-85.49221],[43.566521,-85.492188],[43.56567,-85.492126],[43.56469,-85.492027],[43.56324,-85.491676],[43.56176,-85.491241],[43.555531,-85.489273],[43.555241,-85.489182],[43.55439,-85.488907],[43.55283,-85.48851],[43.551609,-85.488197],[43.5494,-85.487717],[43.546829,-85.487267],[43.5443,-85.487053],[43.543468,-85.486977],[43.540562,-85.486923],[43.539928,-85.486923],[43.53624,-85.486923],[43.53146,-85.486908],[43.526852,-85.486893],[43.518791,-85.48687],[43.511742,-85.486832],[43.511219,-85.486816],[43.508919,-85.486778],[43.50407,-85.486801],[43.501011,-85.486794],[43.500069,-85.486794],[43.497749,-85.486763],[43.496841,-85.486717],[43.495998,-85.486679],[43.494091,-85.486366],[43.49287,-85.486122],[43.4911,-85.48568],[43.486061,-85.483704],[43.485271,-85.483452],[43.484322,-85.483032],[43.482571,-85.482323],[43.48241,-85.482269],[43.481609,-85.481941],[43.479309,-85.481041],[43.4753,-85.479477],[43.472301,-85.478233],[43.472221,-85.478203],[43.47213,-85.478157],[43.471142,-85.47776],[43.470428,-85.477524],[43.469929,-85.477386],[43.468811,-85.477142],[43.468079,-85.47702],[43.46703,-85.477013],[43.46648,-85.477043],[43.465981,-85.477081],[43.464371,-85.477341],[43.463421,-85.477592],[43.461498,-85.478432],[43.46072,-85.478859],[43.460129,-85.479218],[43.459518,-85.479668],[43.458382,-85.480568],[43.456909,-85.48172],[43.45549,-85.482803],[43.453442,-85.484451],[43.452202,-85.485367],[43.451111,-85.486229],[43.44524,-85.490784],[43.44471,-85.491203],[43.443802,-85.491814],[43.443119,-85.49218],[43.442902,-85.492302],[43.442051,-85.492706],[43.440941,-85.493088],[43.440102,-85.493294],[43.437649,-85.493629],[43.433102,-85.494164],[43.432751,-85.494202],[43.431931,-85.494301],[43.431519,-85.494423],[43.42823,-85.495079],[43.42606,-85.495796],[43.425751,-85.495934],[43.424919,-85.496277],[43.424259,-85.496597],[43.423988,-85.49675],[43.422501,-85.497566],[43.421661,-85.4981],[43.419991,-85.499336],[43.419521,-85.499657],[43.41922,-85.49987],[43.417889,-85.500961],[43.4174,-85.501427],[43.416248,-85.502571],[43.415161,-85.503616],[43.414471,-85.504372],[43.41362,-85.50515],[43.412609,-85.50602],[43.41156,-85.506866],[43.41132,-85.507057],[43.410339,-85.50782],[43.410191,-85.507919],[43.40934,-85.508499],[43.408192,-85.509262],[43.406471,-85.510239],[43.40453,-85.511223],[43.40321,-85.511757],[43.40192,-85.512383],[43.401131,-85.51268],[43.399719,-85.513321],[43.399151,-85.51355],[43.397011,-85.514458],[43.39484,-85.515419],[43.394341,-85.515617],[43.392921,-85.516243],[43.390789,-85.517227],[43.390388,-85.517342],[43.39019,-85.517433],[43.389771,-85.517593],[43.387859,-85.518303],[43.386459,-85.518723],[43.385429,-85.518913],[43.383629,-85.519249],[43.382099,-85.519409],[43.382061,-85.519409],[43.380329,-85.519432],[43.379051,-85.519409],[43.37788,-85.519302],[43.376499,-85.519058],[43.375839,-85.518929],[43.37534,-85.518806],[43.37418,-85.518509],[43.372318,-85.517929],[43.37051,-85.517372],[43.368431,-85.516747],[43.366928,-85.516319],[43.366291,-85.516121],[43.36491,-85.515678],[43.362709,-85.515007],[43.359348,-85.513969],[43.353661,-85.512268],[43.35207,-85.511818],[43.350521,-85.511414],[43.348862,-85.511093],[43.347099,-85.510933],[43.346031,-85.51088],[43.345089,-85.510933],[43.344028,-85.510971],[43.343571,-85.511017],[43.341339,-85.511307],[43.339909,-85.51162],[43.338631,-85.511948],[43.338348,-85.511993],[43.336781,-85.51236],[43.33622,-85.51252],[43.332111,-85.51342],[43.326881,-85.514572],[43.32444,-85.515137],[43.32238,-85.515762],[43.32159,-85.516113],[43.320728,-85.516563],[43.320019,-85.516991],[43.319431,-85.517418],[43.318581,-85.518082],[43.31739,-85.519173],[43.316479,-85.520187],[43.315689,-85.521217],[43.315201,-85.521881],[43.314709,-85.522659],[43.314209,-85.523521],[43.313702,-85.524513],[43.312832,-85.526413],[43.310711,-85.53109],[43.309711,-85.533188],[43.308979,-85.534607],[43.308102,-85.536018],[43.307152,-85.53727],[43.306042,-85.538589],[43.304821,-85.539673],[43.303879,-85.540413],[43.302841,-85.541092],[43.301941,-85.541557],[43.300949,-85.542023],[43.2995,-85.542519],[43.298222,-85.542709],[43.297741,-85.54277],[43.297501,-85.542793],[43.2971,-85.542831],[43.296669,-85.542847],[43.295971,-85.542809],[43.295212,-85.54274],[43.289581,-85.542137],[43.288021,-85.541962],[43.28307,-85.541412],[43.282532,-85.541351],[43.28175,-85.54129],[43.280941,-85.541252],[43.280041,-85.541237],[43.278889,-85.541283],[43.278,-85.541359],[43.277611,-85.541412],[43.27668,-85.541519],[43.274899,-85.541832],[43.27314,-85.542107],[43.270908,-85.542488],[43.27018,-85.542633],[43.269459,-85.542793],[43.26804,-85.543243],[43.267139,-85.543633],[43.266361,-85.543999],[43.264999,-85.544746],[43.263481,-85.545776],[43.262489,-85.546593],[43.26181,-85.54718],[43.26125,-85.547722],[43.260632,-85.548378],[43.259769,-85.549347],[43.258961,-85.550339],[43.2584,-85.551064],[43.257931,-85.551659],[43.256981,-85.552773],[43.256168,-85.55378],[43.255459,-85.554642],[43.25362,-85.556877],[43.253429,-85.557114],[43.252979,-85.557549],[43.252312,-85.558167],[43.251598,-85.558723],[43.250759,-85.559219],[43.249981,-85.559608],[43.249668,-85.559738],[43.248932,-85.559967],[43.246811,-85.560539],[43.241661,-85.561867],[43.238911,-85.562607],[43.23848,-85.562752],[43.237999,-85.562943],[43.23735,-85.563263],[43.23661,-85.563713],[43.236118,-85.564056],[43.235889,-85.564247],[43.23542,-85.564636],[43.234871,-85.565163],[43.234341,-85.565773],[43.23333,-85.567001],[43.232529,-85.567993],[43.231918,-85.568748],[43.23143,-85.569344],[43.23085,-85.570068],[43.230209,-85.570839],[43.23008,-85.570976],[43.22961,-85.571457],[43.229439,-85.571617],[43.229099,-85.571899],[43.22871,-85.57222],[43.228569,-85.57235],[43.228062,-85.572746],[43.227692,-85.573029],[43.227139,-85.573387],[43.227009,-85.573463],[43.226582,-85.57373],[43.226089,-85.574013],[43.225578,-85.574249],[43.22493,-85.574547],[43.224121,-85.574829],[43.223492,-85.575027],[43.223091,-85.575127],[43.222301,-85.575279],[43.221931,-85.57534],[43.221359,-85.575394],[43.220829,-85.575417],[43.220661,-85.575417],[43.218941,-85.575417],[43.21674,-85.575401],[43.215321,-85.575394],[43.212582,-85.575394],[43.211929,-85.575401],[43.21077,-85.575493],[43.209942,-85.575592],[43.20916,-85.575706],[43.20882,-85.575783],[43.207741,-85.575996],[43.207218,-85.576134],[43.20657,-85.576317],[43.205341,-85.576668],[43.203831,-85.577133],[43.202641,-85.577377],[43.201199,-85.577606],[43.200722,-85.577667],[43.1996,-85.577797],[43.198441,-85.577827],[43.19688,-85.577797],[43.195992,-85.577744],[43.194881,-85.577606],[43.19297,-85.577362],[43.19165,-85.577187],[43.190269,-85.577011],[43.18671,-85.576569],[43.184631,-85.576393],[43.1838,-85.576332],[43.182911,-85.576286],[43.181419,-85.576202],[43.176559,-85.575981],[43.172569,-85.575783],[43.171959,-85.57576],[43.17112,-85.575752],[43.171051,-85.575752],[43.170189,-85.57579],[43.1693,-85.575882],[43.16748,-85.576103],[43.16724,-85.576149],[43.16671,-85.576263],[43.16589,-85.576431],[43.164639,-85.576767],[43.16378,-85.577049],[43.162491,-85.577522],[43.161301,-85.578079],[43.16066,-85.578377],[43.160011,-85.578697],[43.159229,-85.57914],[43.158089,-85.579826],[43.15731,-85.580353],[43.156349,-85.581032],[43.155369,-85.58181],[43.155319,-85.581848],[43.154919,-85.582207],[43.15472,-85.582382],[43.151829,-85.584839],[43.150799,-85.585663],[43.150051,-85.586166],[43.14959,-85.586479],[43.149059,-85.586861],[43.148399,-85.587227],[43.147411,-85.587799],[43.145451,-85.588753],[43.143639,-85.589523],[43.143372,-85.589622],[43.141029,-85.59024],[43.13916,-85.590767],[43.138222,-85.591057],[43.137192,-85.591492],[43.13612,-85.592072],[43.135201,-85.592659],[43.134418,-85.593239],[43.133739,-85.593811],[43.13298,-85.594513],[43.13168,-85.59594],[43.129742,-85.598427],[43.128941,-85.599442],[43.127708,-85.600891],[43.126942,-85.601639],[43.126492,-85.602051],[43.12619,-85.60228],[43.125641,-85.602707],[43.124962,-85.60321],[43.124222,-85.603668],[43.123459,-85.604088],[43.122681,-85.604469],[43.121769,-85.604851],[43.120129,-85.605583],[43.119499,-85.605873],[43.1134,-85.608597],[43.111889,-85.609367],[43.111591,-85.609543],[43.111179,-85.60981],[43.11071,-85.610123],[43.109749,-85.610977],[43.109161,-85.611649],[43.108742,-85.612152],[43.108421,-85.61261],[43.108009,-85.613228],[43.10743,-85.614197],[43.10643,-85.615837],[43.104969,-85.618263],[43.104549,-85.618889],[43.104191,-85.619392],[43.103889,-85.619881],[43.102242,-85.62204],[43.10125,-85.623199],[43.100578,-85.623947],[43.099949,-85.624611],[43.099449,-85.625107],[43.097591,-85.626808],[43.09671,-85.627533],[43.095169,-85.628647],[43.094669,-85.628967],[43.094318,-85.629189],[43.09396,-85.629417],[43.0919,-85.630737],[43.090309,-85.631683],[43.088749,-85.63266],[43.08667,-85.633972],[43.08477,-85.63517],[43.083969,-85.635628],[43.083099,-85.636147],[43.082081,-85.636833],[43.079571,-85.638367],[43.078449,-85.63916],[43.077888,-85.63961],[43.077278,-85.640182],[43.076618,-85.640793],[43.075981,-85.641487],[43.075459,-85.64212],[43.07468,-85.643143],[43.074219,-85.64386],[43.073761,-85.6446],[43.073341,-85.645363],[43.072411,-85.647324],[43.07135,-85.649673],[43.070381,-85.651787],[43.06831,-85.656303],[43.067329,-85.658539],[43.06699,-85.659203],[43.066719,-85.65966],[43.066441,-85.660057],[43.06609,-85.660522],[43.065552,-85.661179],[43.065151,-85.661568],[43.064621,-85.662003],[43.064461,-85.662117],[43.063591,-85.662697],[43.06271,-85.663078],[43.06168,-85.663353],[43.06131,-85.663383],[43.060741,-85.663422],[43.058689,-85.663406],[43.05817,-85.663406],[43.057831,-85.663406],[43.056782,-85.663391],[43.054379,-85.663391],[43.04921,-85.663353],[43.047821,-85.663254],[43.047119,-85.663147],[43.046471,-85.663078],[43.045189,-85.662804],[43.042122,-85.66217],[43.041679,-85.662079],[43.04089,-85.661888],[43.040852,-85.66188],[43.039791,-85.661652],[43.039051,-85.661537],[43.038681,-85.661484],[43.038189,-85.661484],[43.037498,-85.661537],[43.036251,-85.661919],[43.035912,-85.662064],[43.032848,-85.663277],[43.03273,-85.663307],[43.02906,-85.664757],[43.028889,-85.664833],[43.025398,-85.666229],[43.024971,-85.666397],[43.02462,-85.666542],[43.023788,-85.666817],[43.023579,-85.666924],[43.02227,-85.667603],[43.021358,-85.668167],[43.021278,-85.668243],[43.020351,-85.668953],[43.019749,-85.669449],[43.018978,-85.670197],[43.01825,-85.670982],[43.017681,-85.671677],[43.017151,-85.672417],[43.016232,-85.673668],[43.015808,-85.674217],[43.015381,-85.674767],[43.015011,-85.675148],[43.014309,-85.67569],[43.014069,-85.675797],[43.013859,-85.675919],[43.013321,-85.676117],[43.01305,-85.676201],[43.01273,-85.676262],[43.012421,-85.676308],[43.012131,-85.676323],[43.011959,-85.676308],[43.010078,-85.676323],[43.006561,-85.676178],[43.001881,-85.675987],[42.999222,-85.675911],[42.99839,-85.675903],[42.998081,-85.675903],[42.997822,-85.675888],[42.996971,-85.676033],[42.996849,-85.676064],[42.995869,-85.6763],[42.995419,-85.67643],[42.994499,-85.676689],[42.993759,-85.676918],[42.993011,-85.677063],[42.992592,-85.677132],[42.992321,-85.677177],[42.99189,-85.677223],[42.991112,-85.677223],[42.989059,-85.677223],[42.985069,-85.677193],[42.98468,-85.677193],[42.984138,-85.677193],[42.98317,-85.677208],[42.98201,-85.677307],[42.981491,-85.677383],[42.980659,-85.677467],[42.9771,-85.677963],[42.9767,-85.678009],[42.976608,-85.678017],[42.976429,-85.678047],[42.97625,-85.678123],[42.976059,-85.678177],[42.974442,-85.678383],[42.974159,-85.678413],[42.973999,-85.678459],[42.973831,-85.678543],[42.973721,-85.678619],[42.973629,-85.678749],[42.97361,-85.678772],[42.973591,-85.678802],[42.973541,-85.678886],[42.973461,-85.679062],[42.973389,-85.679337],[42.973309,-85.679733],[42.9734,-85.680443],[42.973419,-85.680771],[42.973461,-85.681839],[42.973461,-85.681999],[42.97348,-85.683167],[42.973511,-85.684273],[42.973511,-85.684761],[42.973511,-85.685013],[42.973499,-85.685364],[42.973461,-85.685677],[42.973438,-85.685806],[42.973419,-85.685959],[42.97327,-85.686531],[42.97324,-85.686653],[42.972912,-85.687569],[42.972809,-85.687912],[42.972721,-85.688271],[42.972672,-85.688606],[42.972618,-85.689087],[42.972641,-85.690018],[42.97271,-85.692307],[42.972721,-85.692787],[42.97274,-85.693039],[42.972771,-85.694862],[42.972778,-85.69574],[42.972759,-85.696167],[42.972679,-85.696709],[42.972519,-85.697319],[42.972401,-85.697647],[42.972271,-85.697929],[42.972118,-85.698257],[42.97192,-85.698547],[42.971779,-85.698753],[42.9716,-85.69899],[42.971409,-85.699173],[42.97126,-85.699303],[42.971039,-85.699493],[42.970921,-85.699547],[42.97073,-85.699654],[42.97044,-85.699799],[42.97015,-85.69989],[42.969559,-85.700081],[42.96917,-85.700233],[42.969028,-85.70031],[42.968781,-85.700462],[42.968601,-85.700577],[42.96841,-85.700783],[42.968281,-85.700943],[42.968109,-85.70118],[42.967949,-85.701424],[42.967701,-85.70192],[42.967621,-85.702133],[42.967529,-85.702377],[42.96748,-85.70253],[42.96703,-85.70388],[42.966671,-85.704903],[42.96637,-85.705673],[42.966209,-85.706032],[42.966061,-85.706306],[42.965641,-85.706902],[42.965439,-85.707153],[42.965118,-85.707474],[42.96484,-85.707733],[42.96442,-85.708023],[42.964149,-85.708214],[42.963871,-85.708328],[42.96312,-85.708603],[42.962749,-85.708687],[42.962448,-85.708717],[42.962051,-85.708733],[42.96159,-85.708679],[42.96117,-85.70858],[42.960529,-85.708359],[42.95982,-85.70797],[42.959549,-85.707787],[42.958858,-85.70726],[42.958179,-85.706772],[42.957531,-85.706306],[42.957199,-85.706093],[42.957062,-85.706001],[42.956631,-85.705788],[42.956379,-85.705688],[42.956009,-85.705597],[42.955791,-85.705544],[42.955631,-85.705513],[42.955509,-85.705498],[42.955391,-85.705482],[42.955189,-85.705467],[42.954891,-85.705467],[42.95459,-85.70549],[42.9543,-85.705544],[42.953979,-85.705627],[42.953579,-85.705772],[42.953091,-85.706017],[42.95269,-85.706284],[42.952419,-85.70649],[42.95211,-85.706787],[42.950562,-85.708656],[42.95005,-85.709297],[42.949741,-85.709641],[42.94944,-85.70993],[42.949242,-85.710114],[42.94883,-85.710403],[42.948582,-85.710564],[42.948341,-85.710678],[42.94791,-85.710861],[42.94743,-85.711014],[42.947361,-85.711021],[42.947159,-85.711067],[42.946949,-85.711121],[42.94622,-85.711288],[42.945679,-85.711418],[42.94466,-85.711662],[42.944229,-85.711777],[42.943729,-85.711967],[42.943371,-85.712143],[42.943192,-85.71225],[42.9431,-85.712311],[42.942749,-85.712624],[42.942631,-85.712708],[42.942131,-85.713203],[42.941891,-85.713501],[42.941528,-85.713982],[42.94104,-85.714638],[42.940102,-85.715874],[42.939571,-85.716568],[42.936821,-85.720268],[42.935741,-85.721687],[42.935249,-85.722351],[42.934639,-85.723198],[42.934479,-85.723442],[42.93433,-85.723717],[42.93409,-85.724197],[42.933891,-85.724678],[42.933731,-85.725151],[42.933632,-85.72551],[42.933319,-85.727112],[42.932701,-85.730873],[42.932579,-85.731491],[42.932331,-85.732674],[42.931961,-85.734093],[42.931641,-85.735123],[42.931309,-85.736229],[42.93116,-85.736656],[42.93092,-85.737289],[42.930309,-85.738724],[42.92868,-85.74221],[42.92807,-85.743462],[42.9277,-85.744263],[42.927139,-85.745422],[42.925591,-85.748589],[42.92527,-85.749283],[42.922958,-85.754051],[42.920811,-85.758507],[42.92057,-85.759033],[42.920052,-85.760078],[42.91991,-85.760391],[42.91967,-85.760841],[42.919498,-85.761139],[42.9193,-85.761467],[42.918949,-85.761902],[42.91869,-85.762177],[42.9184,-85.762489],[42.918041,-85.762787],[42.915661,-85.764381],[42.91507,-85.764801],[42.914711,-85.765083],[42.914471,-85.765343],[42.914181,-85.765587],[42.91404,-85.765717],[42.91375,-85.766052],[42.91341,-85.766441],[42.913139,-85.7668],[42.912601,-85.767639],[42.91243,-85.76796],[42.911949,-85.76889],[42.91077,-85.771172],[42.910179,-85.772346],[42.909931,-85.772911],[42.909801,-85.773216],[42.909439,-85.774101],[42.90918,-85.774773],[42.90889,-85.775551],[42.90863,-85.776283],[42.90852,-85.776543],[42.90844,-85.776741],[42.908249,-85.777237],[42.90799,-85.77784],[42.90733,-85.778938],[42.907261,-85.77906],[42.907101,-85.779282],[42.90691,-85.779503],[42.906601,-85.7798],[42.906269,-85.78009],[42.906212,-85.780144],[42.906078,-85.780228],[42.905849,-85.780373],[42.90556,-85.780548],[42.90527,-85.780693],[42.905121,-85.780746],[42.90451,-85.780952],[42.904419,-85.780968],[42.900082,-85.781143],[42.89986,-85.781143],[42.899509,-85.781143],[42.898941,-85.781143],[42.89851,-85.78112],[42.89743,-85.781036],[42.896751,-85.780937],[42.895901,-85.7808],[42.89547,-85.780701],[42.89481,-85.780533],[42.894371,-85.780388],[42.893742,-85.78019],[42.89241,-85.779694],[42.891281,-85.779312],[42.889839,-85.77874],[42.888859,-85.778381],[42.88834,-85.778183],[42.887939,-85.77803],[42.887581,-85.777901],[42.887199,-85.777786],[42.88678,-85.777687],[42.88649,-85.777634],[42.8862,-85.777588],[42.885849,-85.77755],[42.88546,-85.777527],[42.885201,-85.777519],[42.884911,-85.777527],[42.884789,-85.777542],[42.88443,-85.777573],[42.884071,-85.777618],[42.88361,-85.777702],[42.883072,-85.777832],[42.88269,-85.777946],[42.882351,-85.778069],[42.882092,-85.778183],[42.88184,-85.77829],[42.881618,-85.778397],[42.88139,-85.778511],[42.8811,-85.778679],[42.88081,-85.778847],[42.88055,-85.77903],[42.880119,-85.779343],[42.87952,-85.779793],[42.878929,-85.78038],[42.878159,-85.781242],[42.877419,-85.782272],[42.87632,-85.783836],[42.875141,-85.785583],[42.873138,-85.788406],[42.871681,-85.790527],[42.871288,-85.791138],[42.870708,-85.792053],[42.870312,-85.792717],[42.869469,-85.794212],[42.86858,-85.795967],[42.867409,-85.798653],[42.8666,-85.800789],[42.865768,-85.803413],[42.86565,-85.803841],[42.865231,-85.805443],[42.864841,-85.807037],[42.864651,-85.808037],[42.864609,-85.808243],[42.864319,-85.809807],[42.864071,-85.811523],[42.863861,-85.813316],[42.86372,-85.81459],[42.863609,-85.815697],[42.863361,-85.817932],[42.863178,-85.819588],[42.863041,-85.820641],[42.862961,-85.821243],[42.86282,-85.822128],[42.86256,-85.823624],[42.862381,-85.824547],[42.862309,-85.824837],[42.862171,-85.825493],[42.86203,-85.826103],[42.861729,-85.827332],[42.861431,-85.82843],[42.86124,-85.829071],[42.86097,-85.829948],[42.860352,-85.831772],[42.859909,-85.832947],[42.85965,-85.833603],[42.859459,-85.834084],[42.85881,-85.835564],[42.85873,-85.835716],[42.85815,-85.836983],[42.858082,-85.837143],[42.857422,-85.838547],[42.856918,-85.839607],[42.856758,-85.839951],[42.856339,-85.840843],[42.855999,-85.841553],[42.855099,-85.843513],[42.853519,-85.84684],[42.85239,-85.849403],[42.851681,-85.851219],[42.85107,-85.852852],[42.850761,-85.853859],[42.850471,-85.854782],[42.849998,-85.856323],[42.84959,-85.857933],[42.849178,-85.859779],[42.849091,-85.860458],[42.848839,-85.86219],[42.848572,-85.864067],[42.848461,-85.864967],[42.848358,-85.866043],[42.848259,-85.867554],[42.84811,-85.869789],[42.848091,-85.869911],[42.847839,-85.87326],[42.84774,-85.874283],[42.84763,-85.875137],[42.84745,-85.876427],[42.847279,-85.877319],[42.847221,-85.877602],[42.846989,-85.878647],[42.84679,-85.879478],[42.846668,-85.879997],[42.846439,-85.88073],[42.846321,-85.881187],[42.84618,-85.881577],[42.84594,-85.882294],[42.84547,-85.883583],[42.8451,-85.884491],[42.844818,-85.885078],[42.84446,-85.885834],[42.84404,-85.886673],[42.84359,-85.887489],[42.842709,-85.888924],[42.841911,-85.89016],[42.8414,-85.890961],[42.840752,-85.891922],[42.840149,-85.892807],[42.839722,-85.893494],[42.83918,-85.894363],[42.838661,-85.895317],[42.838001,-85.896629],[42.83757,-85.897583],[42.83696,-85.899063],[42.836559,-85.900269],[42.83651,-85.900368],[42.836342,-85.900803],[42.83625,-85.901039],[42.835812,-85.902428],[42.835072,-85.904709],[42.834549,-85.906326],[42.834049,-85.907837],[42.833771,-85.90863],[42.832851,-85.911011],[42.831718,-85.913567],[42.83112,-85.914787],[42.82991,-85.917374],[42.828449,-85.920464],[42.827869,-85.921661],[42.826302,-85.925117],[42.826172,-85.925423],[42.825089,-85.92807],[42.824589,-85.92939],[42.824421,-85.929863],[42.82431,-85.930229],[42.82365,-85.931969],[42.82317,-85.933441],[42.822392,-85.93589],[42.82177,-85.938026],[42.821289,-85.93988],[42.82119,-85.940231],[42.821129,-85.940453],[42.820518,-85.942947],[42.820019,-85.945267],[42.819679,-85.947029],[42.819401,-85.948593],[42.81918,-85.94989],[42.81897,-85.951317],[42.81852,-85.954491],[42.81839,-85.955688],[42.818241,-85.957161],[42.818081,-85.958992],[42.81802,-85.959969],[42.817951,-85.960838],[42.817829,-85.962639],[42.81778,-85.963112],[42.817501,-85.967232],[42.81739,-85.968819],[42.817299,-85.970139],[42.817242,-85.970863],[42.817181,-85.971474],[42.81712,-85.972008],[42.817032,-85.972557],[42.816921,-85.973137],[42.816769,-85.973778],[42.81662,-85.974373],[42.81646,-85.97493],[42.81625,-85.975571],[42.816002,-85.976181],[42.815781,-85.9767],[42.81551,-85.977257],[42.815128,-85.977966],[42.81485,-85.978477],[42.814732,-85.978653],[42.81432,-85.979233],[42.814049,-85.979584],[42.813751,-85.979958],[42.813389,-85.98037],[42.813011,-85.980766],[42.812679,-85.981087],[42.812408,-85.981323],[42.81216,-85.981529],[42.81192,-85.981712],[42.811581,-85.981949],[42.81115,-85.982231],[42.810692,-85.982513],[42.809891,-85.983009],[42.809151,-85.983452],[42.806839,-85.984879],[42.806431,-85.985123],[42.805729,-85.985519],[42.805199,-85.98587],[42.804409,-85.986427],[42.803509,-85.987213],[42.80299,-85.987679],[42.802528,-85.988129],[42.80162,-85.989159],[42.80122,-85.989708],[42.800709,-85.990417],[42.799881,-85.991707],[42.798969,-85.993439],[42.798199,-85.995239],[42.798012,-85.995781],[42.797661,-85.996902],[42.79723,-85.998428],[42.796791,-86.000267],[42.796219,-86.002747],[42.79546,-86.005943],[42.794621,-86.009537],[42.793579,-86.013977],[42.793331,-86.014977],[42.793091,-86.015877],[42.79277,-86.01693],[42.792439,-86.017853],[42.792332,-86.018097],[42.79224,-86.018349],[42.79208,-86.018738],[42.79184,-86.019218],[42.79129,-86.020279],[42.79068,-86.021278],[42.789959,-86.022324],[42.789532,-86.022881],[42.78928,-86.023193],[42.788681,-86.023857],[42.787819,-86.024673],[42.787441,-86.024948],[42.78672,-86.025497],[42.78606,-86.025917],[42.785358,-86.026321],[42.784519,-86.026733],[42.783009,-86.027367],[42.781559,-86.027992],[42.780918,-86.028267],[42.78009,-86.028648],[42.779869,-86.028732],[42.779289,-86.029083],[42.77858,-86.029373],[42.778149,-86.029587],[42.77729,-86.030067],[42.77713,-86.030167],[42.777,-86.030258],[42.776909,-86.030312],[42.776249,-86.030708],[42.774841,-86.031677],[42.77449,-86.031952],[42.773861,-86.032433],[42.773201,-86.03299],[42.772869,-86.033257],[42.771679,-86.034348],[42.771278,-86.034714],[42.770359,-86.035667],[42.769348,-86.036827],[42.768669,-86.037659],[42.76775,-86.038841],[42.766731,-86.040199],[42.765808,-86.041702],[42.76527,-86.042587],[42.76516,-86.04277],[42.762489,-86.047417],[42.76125,-86.049583],[42.760689,-86.050453],[42.75993,-86.051628],[42.758492,-86.053543],[42.757832,-86.054352],[42.75742,-86.054817],[42.75721,-86.055061],[42.756359,-86.055977],[42.754169,-86.058052],[42.753601,-86.058647],[42.75272,-86.059563],[42.751591,-86.060791],[42.750519,-86.062157],[42.749592,-86.063408],[42.747719,-86.066269],[42.74741,-86.066727],[42.747379,-86.066788],[42.744129,-86.071716],[42.743549,-86.072609],[42.743252,-86.073059],[42.741138,-86.076332],[42.74012,-86.077881],[42.739399,-86.07901],[42.738781,-86.080231],[42.73827,-86.081413],[42.738029,-86.082062],[42.73777,-86.083023],[42.73756,-86.083794],[42.737411,-86.084633],[42.737289,-86.085426],[42.73719,-86.086357],[42.73711,-86.090218],[42.737099,-86.090828],[42.737011,-86.095306],[42.737,-86.096764],[42.736969,-86.09761],[42.73682,-86.104027],[42.736691,-86.114937],[42.736649,-86.117783],[42.73661,-86.11879],[42.736561,-86.119759],[42.73642,-86.121521],[42.73629,-86.122887],[42.73613,-86.124222],[42.73592,-86.125633],[42.735901,-86.125702],[42.735329,-86.129341],[42.734409,-86.135117],[42.734112,-86.137009],[42.733421,-86.141289],[42.73325,-86.142273],[42.733051,-86.143066],[42.732792,-86.143913],[42.73243,-86.144928],[42.731972,-86.145981],[42.731739,-86.146431],[42.731468,-86.146912],[42.731159,-86.147453],[42.730659,-86.148277],[42.730431,-86.148582],[42.72945,-86.14978],[42.72823,-86.150978],[42.727531,-86.151527],[42.726139,-86.152512],[42.72604,-86.15258],[42.725071,-86.153236],[42.72126,-86.155807],[42.71439,-86.160339],[42.71386,-86.160713],[42.711121,-86.162621],[42.710091,-86.163338],[42.709572,-86.163696],[42.70908,-86.164017],[42.70668,-86.165619],[42.702991,-86.168129],[42.70142,-86.169121],[42.700722,-86.169456],[42.70005,-86.169762],[42.699551,-86.169952],[42.698959,-86.170128],[42.69799,-86.170387],[42.69709,-86.170517],[42.695961,-86.170639],[42.69453,-86.170593],[42.690651,-86.170486],[42.68935,-86.170448],[42.686501,-86.170349],[42.682301,-86.170189],[42.68222,-86.170189],[42.68174,-86.170181],[42.681499,-86.170181],[42.678959,-86.170097],[42.674889,-86.169968],[42.674229,-86.170013],[42.673382,-86.170082],[42.672771,-86.170189],[42.672501,-86.17025],[42.67226,-86.170303],[42.67197,-86.17038],[42.671261,-86.170593],[42.670559,-86.170853],[42.669739,-86.171211],[42.668659,-86.171791],[42.667889,-86.172279],[42.66713,-86.172836],[42.66708,-86.17289],[42.66618,-86.173653],[42.66547,-86.17437],[42.665218,-86.174606],[42.664791,-86.175087],[42.66433,-86.175659],[42.663849,-86.176277],[42.66119,-86.180038],[42.6605,-86.180901],[42.660099,-86.181343],[42.659538,-86.181877],[42.65918,-86.182198],[42.65876,-86.182533],[42.657879,-86.183128],[42.657372,-86.183403],[42.656971,-86.183594],[42.6567,-86.183701],[42.654812,-86.184517],[42.654461,-86.184662],[42.65107,-86.186096],[42.646759,-86.187897],[42.645851,-86.188293],[42.645111,-86.188591],[42.641731,-86.190002],[42.6395,-86.190941],[42.638962,-86.191177],[42.63842,-86.191467],[42.637871,-86.191833],[42.63726,-86.192299],[42.637051,-86.192513],[42.636021,-86.193626],[42.635891,-86.193787],[42.635441,-86.194397],[42.63467,-86.195557],[42.630421,-86.20179],[42.62709,-86.206703],[42.625488,-86.20903],[42.624081,-86.211159],[42.624039,-86.21122],[42.623539,-86.211906],[42.62236,-86.213562],[42.621979,-86.214027],[42.621342,-86.214752],[42.620621,-86.215523],[42.619839,-86.216202],[42.619549,-86.216438],[42.618961,-86.216904],[42.618511,-86.217201],[42.6175,-86.217827],[42.617401,-86.217903],[42.616779,-86.218224],[42.61536,-86.218803],[42.61433,-86.219109],[42.61359,-86.219269],[42.612572,-86.219414],[42.611542,-86.219467],[42.60994,-86.219353],[42.608349,-86.219116],[42.597721,-86.217506],[42.597561,-86.217491],[42.596779,-86.217361],[42.59404,-86.216949],[42.592781,-86.216751],[42.5891,-86.216179],[42.585461,-86.215637],[42.584801,-86.215553],[42.583961,-86.21553],[42.583382,-86.21553],[42.58252,-86.215599],[42.582039,-86.215668],[42.58147,-86.215767],[42.58062,-86.215981],[42.580139,-86.216133],[42.579418,-86.2164],[42.577869,-86.217087],[42.57328,-86.219269],[42.572338,-86.219673],[42.571609,-86.21991],[42.570648,-86.220161],[42.569988,-86.220284],[42.569241,-86.22036],[42.56834,-86.220413],[42.566929,-86.220367],[42.561588,-86.220047],[42.549629,-86.219368],[42.54866,-86.219307],[42.54353,-86.21904],[42.53817,-86.218918],[42.53479,-86.218842],[42.530739,-86.218758],[42.530109,-86.218742],[42.527382,-86.218697],[42.523109,-86.218628],[42.521061,-86.21859],[42.519859,-86.218559],[42.519192,-86.218536],[42.50959,-86.218353],[42.507759,-86.218338],[42.507622,-86.218338],[42.507401,-86.218338],[42.506741,-86.218384],[42.505939,-86.218437],[42.504379,-86.218643],[42.503361,-86.218826],[42.502079,-86.219147],[42.499241,-86.219933],[42.49847,-86.220154],[42.492229,-86.221848],[42.491261,-86.222069],[42.490299,-86.222214],[42.488949,-86.222321],[42.48761,-86.222343],[42.486649,-86.222343],[42.484379,-86.222359],[42.483189,-86.222366],[42.47929,-86.222397],[42.473209,-86.222427],[42.471951,-86.222511],[42.47131,-86.222633],[42.47057,-86.222832],[42.47044,-86.222893],[42.469131,-86.223473],[42.468849,-86.223633],[42.46814,-86.224091],[42.467579,-86.224533],[42.467091,-86.22496],[42.457741,-86.233963],[42.456711,-86.234863],[42.456249,-86.235207],[42.455921,-86.235474],[42.455669,-86.235649],[42.448891,-86.240173],[42.440811,-86.245537],[42.43737,-86.247833],[42.433731,-86.250229],[42.432899,-86.250771],[42.43227,-86.251129],[42.431889,-86.251328],[42.431271,-86.251633],[42.43079,-86.251823],[42.430672,-86.251869],[42.43013,-86.25206],[42.430031,-86.252098],[42.429829,-86.252151],[42.429539,-86.252243],[42.428768,-86.252403],[42.42799,-86.252541],[42.42733,-86.252609],[42.42725,-86.252617],[42.425831,-86.252647],[42.422321,-86.25264],[42.419312,-86.252586],[42.417351,-86.252571],[42.416451,-86.252571],[42.410858,-86.252579],[42.410091,-86.252579],[42.409489,-86.252579],[42.40823,-86.252563],[42.408169,-86.252563],[42.404381,-86.252586],[42.40279,-86.252579],[42.40247,-86.252571],[42.40131,-86.252541],[42.399509,-86.252541],[42.39793,-86.25251],[42.397518,-86.252541],[42.396999,-86.252571],[42.39637,-86.25264],[42.395222,-86.252907],[42.39439,-86.253166],[42.394081,-86.253273],[42.393661,-86.253433],[42.392651,-86.253868],[42.390751,-86.254753],[42.390289,-86.254967],[42.387131,-86.256439],[42.385071,-86.257446],[42.383148,-86.258339],[42.374901,-86.262123],[42.37487,-86.262131],[42.37439,-86.262383],[42.37167,-86.263634],[42.371189,-86.26384],[42.369808,-86.264503],[42.36935,-86.26474],[42.368999,-86.264954],[42.36853,-86.265289],[42.368172,-86.26564],[42.367779,-86.265968],[42.367641,-86.266113],[42.367161,-86.266571],[42.36697,-86.266777],[42.366909,-86.266853],[42.36631,-86.267647],[42.36602,-86.268051],[42.365662,-86.268517],[42.365601,-86.2686],[42.363319,-86.271591],[42.36306,-86.271942],[42.35984,-86.276169],[42.358608,-86.277802],[42.358181,-86.278374],[42.357479,-86.279297],[42.355381,-86.282066],[42.354801,-86.282822],[42.354488,-86.283218],[42.353809,-86.284042],[42.352612,-86.285339],[42.351849,-86.285957],[42.351089,-86.28653],[42.34988,-86.2873],[42.349628,-86.287453],[42.348919,-86.287811],[42.348061,-86.288101],[42.34557,-86.289101],[42.34528,-86.289223],[42.33807,-86.29213],[42.33176,-86.294647],[42.330898,-86.294983],[42.3241,-86.297691],[42.320648,-86.299011],[42.319489,-86.299477],[42.319141,-86.299606],[42.31654,-86.300682],[42.315731,-86.301064],[42.315109,-86.301361],[42.3144,-86.301743],[42.312569,-86.302841],[42.306129,-86.306473],[42.305199,-86.306976],[42.304031,-86.307671],[42.303741,-86.307838],[42.301949,-86.308937],[42.301659,-86.309113],[42.300968,-86.30954],[42.300701,-86.309723],[42.29776,-86.311798],[42.294559,-86.314148],[42.282921,-86.322884],[42.278351,-86.326263],[42.27174,-86.330978],[42.270882,-86.331512],[42.269981,-86.331993],[42.269211,-86.332352],[42.268181,-86.332718],[42.26564,-86.333488],[42.260818,-86.335052],[42.25877,-86.335663],[42.258598,-86.335701],[42.25824,-86.335823],[42.258099,-86.335869],[42.257011,-86.336243],[42.25631,-86.33654],[42.25576,-86.3368],[42.255249,-86.337067],[42.255039,-86.337189],[42.25473,-86.337402],[42.254189,-86.337738],[42.253151,-86.338516],[42.252449,-86.339149],[42.251781,-86.339813],[42.251431,-86.340187],[42.251259,-86.340393],[42.25082,-86.340919],[42.250141,-86.341812],[42.24884,-86.343712],[42.248211,-86.34465],[42.246689,-86.346817],[42.246349,-86.347343],[42.246071,-86.347763],[42.244228,-86.350456],[42.24374,-86.351143],[42.243481,-86.351562],[42.243141,-86.352051],[42.242939,-86.352348],[42.242451,-86.353012],[42.24136,-86.354691],[42.240768,-86.35553],[42.238239,-86.359253],[42.237282,-86.360626],[42.23695,-86.361198],[42.236389,-86.36203],[42.236309,-86.362137],[42.23624,-86.362251],[42.23608,-86.36245],[42.235859,-86.362762],[42.235668,-86.362991],[42.235569,-86.363098],[42.23531,-86.36335],[42.2351,-86.363571],[42.23489,-86.363747],[42.234718,-86.363899],[42.23381,-86.364563],[42.233639,-86.364677],[42.23315,-86.364929],[42.23296,-86.364998],[42.232712,-86.36512],[42.232491,-86.365196],[42.2323,-86.365273],[42.232059,-86.365334],[42.231819,-86.36541],[42.231609,-86.365463],[42.231361,-86.365501],[42.231121,-86.365532],[42.230881,-86.365547],[42.22554,-86.365547],[42.22541,-86.365547],[42.220852,-86.365547],[42.220009,-86.365517],[42.218929,-86.365623],[42.217819,-86.365837],[42.217331,-86.365959],[42.216721,-86.366142],[42.211441,-86.368202],[42.209179,-86.369087],[42.197289,-86.373734],[42.193451,-86.375023],[42.190632,-86.375839],[42.189899,-86.376083],[42.186668,-86.377037],[42.186459,-86.377083],[42.186211,-86.377136],[42.184559,-86.377617],[42.184158,-86.377731],[42.181561,-86.378479],[42.181431,-86.378517],[42.181309,-86.378563],[42.180908,-86.3787],[42.180462,-86.378792],[42.180069,-86.378853],[42.17942,-86.378891],[42.179039,-86.378906],[42.178719,-86.378906],[42.17823,-86.378868],[42.17791,-86.378822],[42.177471,-86.378754],[42.176929,-86.378616],[42.1763,-86.378418],[42.176022,-86.378304],[42.175598,-86.378113],[42.175369,-86.377983],[42.174259,-86.377388],[42.171761,-86.376137],[42.167759,-86.374123],[42.167271,-86.373894],[42.16658,-86.373528],[42.16457,-86.372513],[42.16111,-86.370743],[42.15926,-86.369797],[42.158699,-86.369507],[42.158291,-86.369339],[42.157532,-86.369102],[42.157379,-86.369057],[42.157261,-86.369034],[42.156609,-86.368912],[42.156349,-86.368874],[42.155022,-86.368797],[42.153831,-86.368782],[42.152901,-86.368736],[42.151508,-86.368713],[42.150002,-86.368698],[42.145721,-86.368591],[42.144749,-86.368584],[42.14262,-86.36853],[42.13876,-86.368462],[42.137539,-86.368668],[42.137131,-86.368767],[42.13633,-86.369034],[42.135811,-86.369247],[42.135319,-86.369499],[42.134869,-86.369759],[42.134399,-86.370049],[42.133999,-86.370354],[42.133579,-86.370689],[42.133171,-86.371063],[42.132751,-86.371483],[42.13242,-86.371841],[42.131302,-86.373123],[42.130089,-86.375],[42.128681,-86.37709],[42.1273,-86.379211],[42.12698,-86.379677],[42.121731,-86.387627],[42.120918,-86.38887],[42.120209,-86.389748],[42.119881,-86.390137],[42.119362,-86.390717],[42.118561,-86.391533],[42.11837,-86.391693],[42.117889,-86.392113],[42.117371,-86.392509],[42.11694,-86.392853],[42.11668,-86.393028],[42.111549,-86.396278],[42.10313,-86.401558],[42.10181,-86.402397],[42.098228,-86.404617],[42.09605,-86.405991],[42.0942,-86.407143],[42.093739,-86.407417],[42.092289,-86.40834],[42.091438,-86.408867],[42.087711,-86.411232],[42.083031,-86.414162],[42.082588,-86.414436],[42.082081,-86.414787],[42.081421,-86.415199],[42.08102,-86.415482],[42.080631,-86.415787],[42.079559,-86.41671],[42.079418,-86.416847],[42.078838,-86.417503],[42.07872,-86.41761],[42.07835,-86.418007],[42.07785,-86.418633],[42.077572,-86.41906],[42.07692,-86.419983],[42.076462,-86.420731],[42.076229,-86.421143],[42.076038,-86.421471],[42.06868,-86.436127],[42.068329,-86.436836],[42.06826,-86.436974],[42.06707,-86.439201],[42.066341,-86.440727],[42.065109,-86.443153],[42.064411,-86.444557],[42.06403,-86.445267],[42.062519,-86.448303],[42.06155,-86.450256],[42.061008,-86.451286],[42.060478,-86.452438],[42.060322,-86.452812],[42.060188,-86.45311],[42.059792,-86.454193],[42.059551,-86.454918],[42.05938,-86.455559],[42.059189,-86.4562],[42.059101,-86.456543],[42.058979,-86.457092],[42.05714,-86.465569],[42.056091,-86.470428],[42.055111,-86.475067],[42.055012,-86.47554],[42.05423,-86.479118],[42.05378,-86.481163],[42.053539,-86.482262],[42.053181,-86.483948],[42.053059,-86.484444],[42.05283,-86.485382],[42.05249,-86.48629],[42.05233,-86.486717],[42.05204,-86.487427],[42.05183,-86.487877],[42.051601,-86.48835],[42.051281,-86.488922],[42.050941,-86.489449],[42.050369,-86.49025],[42.049759,-86.490967],[42.0481,-86.492828],[42.041031,-86.500717],[42.039871,-86.502037],[42.037628,-86.504547],[42.036781,-86.505623],[42.036228,-86.506363],[42.035721,-86.507072],[42.035358,-86.507599],[42.03418,-86.509361],[42.03339,-86.510597],[42.033039,-86.511108],[42.032848,-86.511391],[42.03241,-86.512062],[42.0312,-86.514038],[42.030849,-86.514641],[42.03035,-86.515472],[42.029739,-86.516617],[42.028851,-86.518356],[42.027061,-86.521744],[42.02599,-86.523773],[42.023602,-86.528343],[42.023338,-86.528847],[42.022839,-86.529694],[42.022671,-86.529953],[42.022511,-86.530182],[42.022381,-86.53035],[42.022018,-86.530746],[42.021568,-86.531212],[42.02129,-86.531464],[42.021099,-86.531601],[42.020901,-86.531738],[42.020679,-86.531898],[42.02047,-86.532021],[42.020199,-86.532173],[42.01981,-86.532333],[42.019371,-86.532494],[42.019051,-86.532578],[42.018509,-86.532669],[42.018089,-86.532692],[42.013371,-86.532738],[42.012669,-86.532753],[42.011791,-86.532784],[42.010841,-86.532829],[42.00983,-86.53299],[42.008671,-86.533241],[42.00806,-86.533409],[42.007851,-86.53347],[42.007221,-86.533707],[42.005661,-86.534271],[41.996349,-86.537697],[41.98909,-86.540359],[41.9884,-86.540604],[41.98682,-86.541183],[41.98278,-86.542664],[41.9809,-86.543343],[41.979221,-86.544098],[41.97813,-86.544647],[41.97678,-86.545464],[41.97649,-86.545647],[41.97559,-86.546257],[41.974289,-86.547119],[41.97197,-86.548607],[41.9659,-86.552544],[41.964359,-86.553551],[41.957512,-86.557938],[41.953869,-86.560287],[41.951679,-86.561653],[41.950199,-86.562599],[41.946621,-86.564903],[41.945808,-86.56543],[41.943378,-86.567009],[41.94289,-86.567322],[41.93996,-86.569267],[41.936069,-86.571777],[41.934959,-86.57222],[41.933651,-86.572433],[41.932861,-86.572456],[41.932152,-86.572403],[41.931122,-86.572128],[41.930351,-86.571869],[41.92997,-86.571739],[41.929352,-86.571518],[41.928108,-86.571083],[41.926891,-86.570663],[41.92601,-86.570473],[41.9249,-86.570328],[41.923698,-86.570412],[41.922852,-86.570587],[41.922218,-86.570747],[41.92144,-86.571083],[41.920521,-86.571548],[41.919498,-86.572273],[41.917431,-86.574097],[41.910488,-86.580208],[41.906189,-86.583977],[41.90197,-86.587723],[41.89373,-86.594994],[41.890251,-86.598099],[41.888779,-86.599358],[41.888191,-86.599869],[41.887348,-86.600403],[41.886452,-86.600883],[41.885891,-86.601151],[41.885269,-86.601372],[41.885151,-86.601418],[41.88446,-86.601547],[41.88356,-86.601646],[41.880951,-86.601738],[41.880169,-86.601738],[41.87965,-86.601738],[41.87756,-86.601738],[41.872978,-86.601807],[41.872181,-86.601913],[41.870918,-86.602249],[41.869888,-86.602737],[41.869228,-86.603081],[41.868462,-86.603661],[41.866909,-86.605148],[41.86554,-86.607018],[41.861771,-86.613853],[41.857712,-86.621162],[41.853249,-86.629143],[41.848751,-86.637199],[41.846081,-86.642029],[41.843349,-86.646896],[41.839939,-86.652924],[41.835899,-86.660072],[41.830799,-86.668991],[41.827721,-86.674477],[41.8246,-86.679916],[41.822449,-86.683632],[41.821129,-86.686028],[41.81979,-86.688187],[41.819191,-86.689034],[41.8181,-86.690536],[41.816799,-86.692146],[41.814079,-86.695007],[41.81176,-86.697166],[41.808022,-86.700867],[41.805309,-86.703346],[41.801868,-86.706146],[41.80135,-86.706551],[41.801121,-86.706734],[41.799431,-86.707993],[41.799351,-86.708061],[41.798752,-86.708557],[41.79855,-86.708717],[41.795551,-86.710953],[41.793541,-86.712578],[41.790871,-86.714607],[41.79047,-86.714943],[41.788109,-86.716721],[41.786171,-86.718193],[41.784081,-86.719887],[41.783588,-86.720284],[41.781841,-86.721878],[41.779751,-86.724159],[41.778461,-86.725838],[41.776821,-86.728027],[41.775082,-86.730377],[41.77219,-86.734268],[41.770611,-86.736328],[41.767448,-86.740593],[41.76358,-86.745819],[41.760471,-86.750587],[41.752811,-86.762657],[41.7472,-86.771629],[41.743999,-86.776718],[41.737339,-86.787178],[41.73185,-86.79586],[41.728069,-86.801743],[41.726749,-86.803299],[41.725578,-86.804237],[41.724091,-86.80513],[41.72298,-86.80555],[41.7216,-86.805862],[41.719509,-86.805962],[41.714951,-86.805977],[41.707741,-86.806107],[41.70649,-86.806236],[41.705872,-86.806374],[41.7052,-86.806557],[41.70443,-86.806824],[41.697731,-86.809196],[41.69429,-86.810417],[41.69421,-86.810463],[41.69368,-86.810638],[41.693581,-86.810677],[41.69128,-86.811508],[41.690449,-86.811813],[41.68998,-86.812027],[41.68956,-86.812248],[41.688969,-86.812622],[41.68829,-86.813118],[41.688042,-86.813316],[41.68771,-86.813606],[41.68737,-86.813942],[41.687031,-86.814293],[41.68681,-86.814537],[41.686489,-86.814934],[41.686131,-86.815392],[41.68581,-86.81588],[41.685429,-86.816498],[41.678242,-86.828598],[41.677479,-86.830269],[41.676949,-86.831757],[41.676559,-86.833366],[41.675598,-86.84008],[41.674221,-86.849968],[41.673901,-86.851723],[41.673382,-86.853592],[41.67223,-86.856018],[41.670959,-86.857857],[41.664742,-86.864937],[41.662659,-86.867233],[41.661621,-86.868477],[41.660721,-86.869713],[41.65987,-86.871277],[41.659081,-86.873207],[41.658642,-86.874832],[41.658428,-86.87603],[41.65823,-86.878151],[41.658298,-86.8871],[41.65834,-86.893784],[41.65834,-86.894287],[41.658409,-86.900963],[41.658531,-86.916451],[41.658649,-86.931084],[41.658829,-86.94857],[41.658878,-86.96003],[41.658718,-86.962029],[41.65839,-86.964111],[41.65794,-86.966057],[41.657379,-86.967827],[41.656681,-86.96962],[41.655708,-86.971573],[41.653,-86.976372],[41.646702,-86.98774],[41.639519,-87.000504],[41.63398,-87.010437],[41.62764,-87.021721],[41.626831,-87.023621],[41.626179,-87.025581],[41.62579,-87.027069],[41.625431,-87.029083],[41.62521,-87.031487],[41.62516,-87.032593],[41.625111,-87.033997],[41.624969,-87.037788],[41.624729,-87.045753],[41.624729,-87.046043],[41.624489,-87.052834],[41.624409,-87.055588],[41.624378,-87.056648],[41.62405,-87.067993],[41.623959,-87.069321],[41.623749,-87.070641],[41.62326,-87.072533],[41.622791,-87.073708],[41.622089,-87.074997],[41.621712,-87.075638],[41.620232,-87.077728],[41.61694,-87.082336],[41.616489,-87.082962],[41.615421,-87.084473],[41.614792,-87.085327],[41.614342,-87.085953],[41.611141,-87.090347],[41.60965,-87.093002],[41.608971,-87.094643],[41.608341,-87.096481],[41.60775,-87.098984],[41.607399,-87.101189],[41.60725,-87.103073],[41.607288,-87.105278],[41.607281,-87.106873],[41.607281,-87.108276],[41.607269,-87.10968],[41.607288,-87.114433],[41.607319,-87.124077],[41.607269,-87.128708],[41.607151,-87.129951],[41.606918,-87.131538],[41.606609,-87.132973],[41.60619,-87.134399],[41.604931,-87.137787],[41.602982,-87.142937],[41.60244,-87.144913],[41.6021,-87.146713],[41.601891,-87.148453],[41.60178,-87.150322],[41.601799,-87.152184],[41.601952,-87.163773],[41.601959,-87.164337],[41.601971,-87.16478],[41.602112,-87.175247],[41.60218,-87.181511],[41.602032,-87.183311],[41.601589,-87.186188],[41.601139,-87.188744],[41.599449,-87.198021],[41.597382,-87.209351],[41.596859,-87.211693],[41.5961,-87.213867],[41.594761,-87.216171],[41.59322,-87.218826],[41.592701,-87.219727],[41.590389,-87.223579],[41.58984,-87.224487],[41.588631,-87.226501],[41.587269,-87.229469],[41.586979,-87.230141],[41.586929,-87.230637],[41.58699,-87.231216],[41.587212,-87.231842],[41.58778,-87.232422],[41.58807,-87.232536],[41.58902,-87.232887],[41.5895,-87.233078],[41.590698,-87.233513],[41.591209,-87.233742],[41.591541,-87.233749],[41.591782,-87.233551],[41.59201,-87.233078],[41.592239,-87.232712],[41.592331,-87.232643],[41.59243,-87.232567],[41.592682,-87.232536],[41.59293,-87.232697],[41.593029,-87.23291],[41.593128,-87.23336],[41.593269,-87.235207],[41.593399,-87.23629],[41.59343,-87.23732],[41.593399,-87.238426],[41.593311,-87.239273],[41.593159,-87.240097],[41.593151,-87.240196],[41.593071,-87.24086],[41.592739,-87.243851],[41.592239,-87.248199],[41.592159,-87.249001],[41.59103,-87.259567],[41.59042,-87.264977],[41.589909,-87.269783],[41.589169,-87.276703],[41.58897,-87.278481],[41.58865,-87.280724],[41.588139,-87.283524],[41.587761,-87.285103],[41.587311,-87.286613],[41.586269,-87.290131],[41.58548,-87.292801],[41.585209,-87.294144],[41.585098,-87.295738],[41.585209,-87.297256],[41.585491,-87.298737],[41.585831,-87.299812],[41.586281,-87.300774],[41.58683,-87.301666],[41.587471,-87.302567],[41.588169,-87.303223],[41.589001,-87.303864],[41.589809,-87.304237],[41.59037,-87.304459],[41.591019,-87.304573],[41.594009,-87.305023],[41.596081,-87.305328],[41.596779,-87.305496],[41.597408,-87.30574],[41.598351,-87.306229],[41.5994,-87.30703],[41.6003,-87.307968],[41.60125,-87.309387],[41.602119,-87.31131],[41.60244,-87.3125],[41.6026,-87.313187],[41.602749,-87.314087],[41.602852,-87.315361],[41.602921,-87.317253],[41.6031,-87.321838],[41.603119,-87.322571],[41.60323,-87.324783],[41.603291,-87.326073],[41.603329,-87.327347],[41.603401,-87.328041],[41.603569,-87.329018],[41.604568,-87.333672],[41.604771,-87.334663],[41.605,-87.336281],[41.605431,-87.339256],[41.605881,-87.34169],[41.606232,-87.343163],[41.606548,-87.344238],[41.607201,-87.346268],[41.607639,-87.347488],[41.608009,-87.348793],[41.608421,-87.350616],[41.608681,-87.352203],[41.608841,-87.353798],[41.609051,-87.35807],[41.609219,-87.362717],[41.60952,-87.371147],[41.609589,-87.373238],[41.609631,-87.374153],[41.609711,-87.376373],[41.609718,-87.376793],[41.609779,-87.378304],[41.609791,-87.379112],[41.609791,-87.379898],[41.60976,-87.380791],[41.609692,-87.381737],[41.609589,-87.382721],[41.609482,-87.383507],[41.60923,-87.384941],[41.607571,-87.394203],[41.607552,-87.394287],[41.607189,-87.396896],[41.607029,-87.399193],[41.60704,-87.3993],[41.607059,-87.40052],[41.607079,-87.401443],[41.607269,-87.403442],[41.608521,-87.411201],[41.609089,-87.414886],[41.609749,-87.421669],[41.609921,-87.423424],[41.610161,-87.426353],[41.610329,-87.430656],[41.61047,-87.435738],[41.61079,-87.447258],[41.61084,-87.456207],[41.61087,-87.461082],[41.610882,-87.46225],[41.61092,-87.467491],[41.61097,-87.474319],[41.611092,-87.47583],[41.611351,-87.477257],[41.61182,-87.478622],[41.612598,-87.480324],[41.612919,-87.481018],[41.613251,-87.481728],[41.615551,-87.486588],[41.615959,-87.487251],[41.616039,-87.487389],[41.61652,-87.48806],[41.61729,-87.488892],[41.61776,-87.489304],[41.618488,-87.489754],[41.61924,-87.490067],[41.622631,-87.490898],[41.622879,-87.490959],[41.62294,-87.490982],[41.623402,-87.491127],[41.62376,-87.491249],[41.624668,-87.491737],[41.624771,-87.491829],[41.62516,-87.492149],[41.625568,-87.492493],[41.626469,-87.493523],[41.62656,-87.493652],[41.626968,-87.494347],[41.62838,-87.496674],[41.628681,-87.4972],[41.629261,-87.498169],[41.629902,-87.499252],[41.63073,-87.500664],[41.63171,-87.502327],[41.63184,-87.502518],[41.63229,-87.503212],[41.632408,-87.50341],[41.633179,-87.504333],[41.633652,-87.504738],[41.634022,-87.505043],[41.634819,-87.505493],[41.635841,-87.505913],[41.636971,-87.506088],[41.638359,-87.506104],[41.639469,-87.506104],[41.640518,-87.506088],[41.64156,-87.506241],[41.64259,-87.506638],[41.643501,-87.507202],[41.644772,-87.508377],[41.6455,-87.509087],[41.64653,-87.510109],[41.64817,-87.511543],[41.64949,-87.51252],[41.650768,-87.513359],[41.652359,-87.514198],[41.653141,-87.514519],[41.653938,-87.514847],[41.659809,-87.516876],[41.660721,-87.517212],[41.661289,-87.51741],[41.664379,-87.518547],[41.66658,-87.519341],[41.672489,-87.521439],[41.672779,-87.521553],[41.674339,-87.522003],[41.676479,-87.522423],[41.67857,-87.522537],[41.680431,-87.522423],[41.68277,-87.522186],[41.683739,-87.522087],[41.684792,-87.522034],[41.688049,-87.521942],[41.691631,-87.521858],[41.691971,-87.521851],[41.69379,-87.521759],[41.69418,-87.521759],[41.698429,-87.521843],[41.698849,-87.521889],[41.699661,-87.522072],[41.70015,-87.522247],[41.700661,-87.522537],[41.70142,-87.52301],[41.703129,-87.524406],[41.703972,-87.525139],[41.704411,-87.525543],[41.705341,-87.526466],[41.706741,-87.527946],[41.707748,-87.529129],[41.709789,-87.53125],[41.711391,-87.532913],[41.71265,-87.534264],[41.713181,-87.534882],[41.713539,-87.535347],[41.713951,-87.535927],[41.714401,-87.536758],[41.71463,-87.537216],[41.714901,-87.537903],[41.715279,-87.538773],[41.715672,-87.539597],[41.716129,-87.540337],[41.716599,-87.541077],[41.717178,-87.541893],[41.717972,-87.543053],[41.71907,-87.54467],[41.71965,-87.545471],[41.720291,-87.54628],[41.721111,-87.547127],[41.721802,-87.547791],[41.722672,-87.548592],[41.723389,-87.549316],[41.723881,-87.549828],[41.724251,-87.550247],[41.72459,-87.550636],[41.7253,-87.551567],[41.726688,-87.553467],[41.726841,-87.553688],[41.728081,-87.555397],[41.72831,-87.555733],[41.73019,-87.558342],[41.731121,-87.559624],[41.732029,-87.56089],[41.732189,-87.561119],[41.73349,-87.563026],[41.733978,-87.563713],[41.734058,-87.56382],[41.734211,-87.564041],[41.73439,-87.564293],[41.734989,-87.565224],[41.735512,-87.565948],[41.736301,-87.566978],[41.73695,-87.567833],[41.737289,-87.568298],[41.73872,-87.570351],[41.738892,-87.57058],[41.74062,-87.572906],[41.740822,-87.573181],[41.742649,-87.5756],[41.742931,-87.575996],[41.74416,-87.577766],[41.74445,-87.578178],[41.746498,-87.581093],[41.746719,-87.581383],[41.746799,-87.581482],[41.747898,-87.583008],[41.748089,-87.583267],[41.749531,-87.585258],[41.75016,-87.586143],[41.75132,-87.58773],[41.751629,-87.588173],[41.753651,-87.590973],[41.75386,-87.591263],[41.75491,-87.592781],[41.75721,-87.596069],[41.75893,-87.598351],[41.76033,-87.600357],[41.762081,-87.602783],[41.762428,-87.603256],[41.76392,-87.605331],[41.76424,-87.605766],[41.76569,-87.60778],[41.765881,-87.608047],[41.765968,-87.60817],[41.76746,-87.610237],[41.76778,-87.61068],[41.769581,-87.613182],[41.769798,-87.613503],[41.771019,-87.615211],[41.771339,-87.615646],[41.7728,-87.617554],[41.77401,-87.61911],[41.77422,-87.619377],[41.774429,-87.619751],[41.774639,-87.620178],[41.774818,-87.620781],[41.77494,-87.621384],[41.775021,-87.622047],[41.77504,-87.623512],[41.77499,-87.62471],[41.775009,-87.625557],[41.775101,-87.626053],[41.775261,-87.626541],[41.775391,-87.626846],[41.7756,-87.627243],[41.77623,-87.62809],[41.777061,-87.629349],[41.77739,-87.629707],[41.778111,-87.630348],[41.77882,-87.630661],[41.779419,-87.630737],[41.78043,-87.630783],[41.78196,-87.630836],[41.785019,-87.630928],[41.786129,-87.630913],[41.788212,-87.630836],[41.790691,-87.630852],[41.796421,-87.631012],[41.801128,-87.631126],[41.801601,-87.631172],[41.805191,-87.631447],[41.807819,-87.63163],[41.80835,-87.631638],[41.808811,-87.631561],[41.809361,-87.631401],[41.809879,-87.631126],[41.810581,-87.630692],[41.811211,-87.630287],[41.811691,-87.630142],[41.812279,-87.630043],[41.813179,-87.630043],[41.814732,-87.630058],[41.81604,-87.630074],[41.821491,-87.630234],[41.827309,-87.630363],[41.832878,-87.630508],[41.838039,-87.630623],[41.83884,-87.630661],[41.840469,-87.630737],[41.84201,-87.630783],[41.84251,-87.630836],[41.843029,-87.631012],[41.84354,-87.631287],[41.84399,-87.63166],[41.844391,-87.632118],[41.844891,-87.632896],[41.845081,-87.633362],[41.845261,-87.633781],[41.845459,-87.63459],[41.846199,-87.637672],[41.84671,-87.639793],[41.846989,-87.640991],[41.84721,-87.641724],[41.847519,-87.642349],[41.8479,-87.642906],[41.848339,-87.643333],[41.848869,-87.643707],[41.850079,-87.644493],[41.850769,-87.644836],[41.85099,-87.64492],[41.851238,-87.64502],[41.851719,-87.645126],[41.852139,-87.64518],[41.852669,-87.645172],[41.853271,-87.645111],[41.853981,-87.644913],[41.855999,-87.644287],[41.856468,-87.644203],[41.857059,-87.644127],[41.857689,-87.64415],[41.860191,-87.644234],[41.861851,-87.644272],[41.86293,-87.644302],[41.863682,-87.644341],[41.865219,-87.644386],[41.866169,-87.644447],[41.86689,-87.644493],[41.868229,-87.644547],[41.8689,-87.64463],[41.86945,-87.644699],[41.869991,-87.644737],[41.87067,-87.644753],[41.87249,-87.644814],[41.873219,-87.644836],[41.874111,-87.644974],[41.874882,-87.645126],[41.875172,-87.64518],[41.875568,-87.645264],[41.875961,-87.645317],[41.876202,-87.645363],[41.876541,-87.645432],[41.876999,-87.6455],[41.877399,-87.645531],[41.877899,-87.645554],[41.878368,-87.645523],[41.879318,-87.645477],[41.879959,-87.645508],[41.880581,-87.645531],[41.88126,-87.645554],[41.881889,-87.645561],[41.883259,-87.645592],[41.88398,-87.645622],[41.884651,-87.645653],[41.885029,-87.645683],[41.885479,-87.645767],[41.886139,-87.645988],[41.88652,-87.646149],[41.887001,-87.646362],[41.887371,-87.646568],[41.887749,-87.646828],[41.888081,-87.647057],[41.888119,-87.647087],[41.888489,-87.647423],[41.888741,-87.647636],[41.889091,-87.647987],[41.889599,-87.648621],[41.88995,-87.649078],[41.89069,-87.650177],[41.89127,-87.650841],[41.891418,-87.650978],[41.89156,-87.65107],[41.891701,-87.651108],[41.89183,-87.651108],[41.891949,-87.65107],[41.892059,-87.651001],[41.89217,-87.650887],[41.89225,-87.650772],[41.892342,-87.650597],[41.892391,-87.650421],[41.892422,-87.650261],[41.892429,-87.65007],[41.892441,-87.649803],[41.892422,-87.649338],[41.892391,-87.648972],[41.892361,-87.648552],[41.892361,-87.648087],[41.892399,-87.64476],[41.89249,-87.639282],[41.892479,-87.638832],[41.892441,-87.638237],[41.89241,-87.637604],[41.892361,-87.637047],[41.892361,-87.636559],[41.892368,-87.635567],[41.892399,-87.634079],[41.89241,-87.632607],[41.893211,-87.632629],[41.89402,-87.632652],[41.89481,-87.632683],[41.895611,-87.632698],[41.89661,-87.632721],[41.896641,-87.631241],[41.896641,-87.629768],[41.896679,-87.628197],[41.896149,-87.628181],[41.895679,-87.628166],[41.894878,-87.628143],[41.894081,-87.628128],[41.893269,-87.628113],[41.89325,-87.629677],[41.89323,-87.631157],[41.893211,-87.632629],[41.893188,-87.634109],[41.893169,-87.63559],[41.89315,-87.637062],[41.893021,-87.637283],[41.892929,-87.637428],[41.89275,-87.637733],[41.892689,-87.637894],[41.892651,-87.638062],[41.892632,-87.638252],[41.89262,-87.638527],[41.892601,-87.639381],[41.892521,-87.644867],[41.89249,-87.646172],[41.892479,-87.647072],[41.89246,-87.648064],[41.892471,-87.64846],[41.892521,-87.649002],[41.892651,-87.650078],[41.892799,-87.651161],[41.892879,-87.651688],[41.89299,-87.652138],[41.893101,-87.652481],[41.893291,-87.652924],[41.893639,-87.653648],[41.894058,-87.654518],[41.89447,-87.655403],[41.894871,-87.656174],[41.895149,-87.656647],[41.89539,-87.656967],[41.895962,-87.657677],[41.896519,-87.65818],[41.897129,-87.658661],[41.8974,-87.658813],[41.89782,-87.65905],[41.89819,-87.659233],[41.900101,-87.660202],[41.900791,-87.660477],[41.901241,-87.660637],[41.901821,-87.660812],[41.902191,-87.660889],[41.90255,-87.660927],[41.902859,-87.660927],[41.903141,-87.660927],[41.903702,-87.660873],[41.903831,-87.660873],[41.904369,-87.660789],[41.90501,-87.660751],[41.905529,-87.660767],[41.905891,-87.660873],[41.906189,-87.66095],[41.906441,-87.661057],[41.906811,-87.66124],[41.907249,-87.661491],[41.907539,-87.661743],[41.907848,-87.662033],[41.908291,-87.662529],[41.909241,-87.663643],[41.909691,-87.664062],[41.910149,-87.664429],[41.910461,-87.664627],[41.9109,-87.664909],[41.912708,-87.666008],[41.912788,-87.666077],[41.915161,-87.667587],[41.915649,-87.667953],[41.91629,-87.668404],[41.916439,-87.668518],[41.916729,-87.668831],[41.91708,-87.669212],[41.917389,-87.669563],[41.917679,-87.669922],[41.918121,-87.670479],[41.918739,-87.671509],[41.919769,-87.673317],[41.920898,-87.675247],[41.921242,-87.675873],[41.921619,-87.676521],[41.92218,-87.677513],[41.922489,-87.678047],[41.922619,-87.678284],[41.923698,-87.680252],[41.924721,-87.682037],[41.92522,-87.682922],[41.927361,-87.686684],[41.927792,-87.687393],[41.928799,-87.689163],[41.929001,-87.689552],[41.92963,-87.690582],[41.930061,-87.691383],[41.930672,-87.69252],[41.931339,-87.693619],[41.9319,-87.69458],[41.932331,-87.695351],[41.933491,-87.697357],[41.933861,-87.697937],[41.934811,-87.699547],[41.93568,-87.70118],[41.936279,-87.702217],[41.936371,-87.702377],[41.936661,-87.702873],[41.936829,-87.703178],[41.93882,-87.706848],[41.939129,-87.707397],[41.93948,-87.708023],[41.93959,-87.708221],[41.94009,-87.709068],[41.940449,-87.709732],[41.940701,-87.710213],[41.94088,-87.710663],[41.941051,-87.711304],[41.94125,-87.712151],[41.941429,-87.712914],[41.941559,-87.713448],[41.94186,-87.714233],[41.942139,-87.714783],[41.942402,-87.715218],[41.942719,-87.71563],[41.943039,-87.715981],[41.943329,-87.71627],[41.943661,-87.71653],[41.94408,-87.716797],[41.945202,-87.717422],[41.94611,-87.717987],[41.946739,-87.718307],[41.947182,-87.718613],[41.947441,-87.718903],[41.94799,-87.719643],[41.948189,-87.720032],[41.948399,-87.720512],[41.948662,-87.721153],[41.94891,-87.72168],[41.949181,-87.722221],[41.952042,-87.72718],[41.952511,-87.727997],[41.9534,-87.729607],[41.953949,-87.730568],[41.954659,-87.731827],[41.954929,-87.7323],[41.955219,-87.732803],[41.95554,-87.733383],[41.95668,-87.735443],[41.956779,-87.735619],[41.957531,-87.736992],[41.958099,-87.737984],[41.958439,-87.738586],[41.958561,-87.738808],[41.95908,-87.739777],[41.95985,-87.741112],[41.96048,-87.741989],[41.96114,-87.742798],[41.961761,-87.7435],[41.962189,-87.744049],[41.963001,-87.745064],[41.963402,-87.74556],[41.963699,-87.745934],[41.963951,-87.746147],[41.964199,-87.746323],[41.964561,-87.746521],[41.964909,-87.746681],[41.965309,-87.746841],[41.965721,-87.746887],[41.966469,-87.746979],[41.967361,-87.747002],[41.969601,-87.747108],[41.97126,-87.747261],[41.972328,-87.747261],[41.975868,-87.747368],[41.976582,-87.74733],[41.977741,-87.746933],[41.978149,-87.746773],[41.978668,-87.746597],[41.979149,-87.746521],[41.97963,-87.746513],[41.980129,-87.74659],[41.980659,-87.74678],[41.981121,-87.747017],[41.98172,-87.747459],[41.982231,-87.74791],[41.982811,-87.748444],[41.983509,-87.749092],[41.984138,-87.749657],[41.984531,-87.750023],[41.984901,-87.750351],[41.985321,-87.750641],[41.98571,-87.750847],[41.986271,-87.751129],[41.986649,-87.751221],[41.987041,-87.751297],[41.987518,-87.751328],[41.987991,-87.751297],[41.989819,-87.751167],[41.990379,-87.751106],[41.992519,-87.750862],[41.994652,-87.750687],[41.99548,-87.750557],[41.99633,-87.750343],[41.997799,-87.749763],[41.999229,-87.749161],[42.00008,-87.748909],[42.001251,-87.748703],[42.00251,-87.748596],[42.006142,-87.748543],[42.00729,-87.748619],[42.007839,-87.748703],[42.00959,-87.749184],[42.010971,-87.749924],[42.011929,-87.750641],[42.012589,-87.751228],[42.013081,-87.751747],[42.014019,-87.752853],[42.01445,-87.753502],[42.01543,-87.755249],[42.020039,-87.76368],[42.020691,-87.764687],[42.021221,-87.765343],[42.021919,-87.766144],[42.022621,-87.766747],[42.02335,-87.767319],[42.02404,-87.767693],[42.024658,-87.768044],[42.025539,-87.768356],[42.026581,-87.7686],[42.027531,-87.768677],[42.030849,-87.768578],[42.032188,-87.768562],[42.032799,-87.768501],[42.033298,-87.76841],[42.034088,-87.76815],[42.03487,-87.767807],[42.035759,-87.767303],[42.036461,-87.76683],[42.037239,-87.766159],[42.038399,-87.764923],[42.039051,-87.764267],[42.0396,-87.763817],[42.040749,-87.763062],[42.041328,-87.762779],[42.043091,-87.762177],[42.044079,-87.762016],[42.044498,-87.762001],[42.047741,-87.761932],[42.04987,-87.761887],[42.051231,-87.761864],[42.051991,-87.761757],[42.052879,-87.761543],[42.05381,-87.761169],[42.054588,-87.760788],[42.05513,-87.760452],[42.05558,-87.760139],[42.05648,-87.759331],[42.05727,-87.758522],[42.05814,-87.757629],[42.058819,-87.75692],[42.059608,-87.756264],[42.060211,-87.755859],[42.060471,-87.755669],[42.061069,-87.755348],[42.061691,-87.755058],[42.062199,-87.754921],[42.062759,-87.754799],[42.063301,-87.754723],[42.063709,-87.754677],[42.064232,-87.754662],[42.064781,-87.754723],[42.065472,-87.754822],[42.06617,-87.755043],[42.066711,-87.755249],[42.067429,-87.755638],[42.06802,-87.75602],[42.06884,-87.756538],[42.069248,-87.756798],[42.069908,-87.75724],[42.07058,-87.757652],[42.071121,-87.757912],[42.071678,-87.758133],[42.0723,-87.758324],[42.07299,-87.758492],[42.073681,-87.758583],[42.07476,-87.758583],[42.076611,-87.75856],[42.077148,-87.75853],[42.077969,-87.758522],[42.078892,-87.758507],[42.07933,-87.758476],[42.079731,-87.758492],[42.079781,-87.758476],[42.081989,-87.758453],[42.08493,-87.758408],[42.085621,-87.75843],[42.086361,-87.75853],[42.086941,-87.758652],[42.087681,-87.758888],[42.088169,-87.759071],[42.088661,-87.759338],[42.08881,-87.75943],[42.089211,-87.759666],[42.090309,-87.760384],[42.091419,-87.761093],[42.095058,-87.763451],[42.097141,-87.764778],[42.09898,-87.76593],[42.099689,-87.766411],[42.101601,-87.767662],[42.103401,-87.768806],[42.10585,-87.770447],[42.106239,-87.770737],[42.10722,-87.771507],[42.108059,-87.772247],[42.108379,-87.772507],[42.108849,-87.772858],[42.10936,-87.773239],[42.109718,-87.77346],[42.111549,-87.774612],[42.11272,-87.775337],[42.113739,-87.775963],[42.114719,-87.77655],[42.115582,-87.7771],[42.117809,-87.778511],[42.118382,-87.778862],[42.12056,-87.780197],[42.12328,-87.781914],[42.12645,-87.783867],[42.126942,-87.784142],[42.127602,-87.784477],[42.128239,-87.784767],[42.129059,-87.784973],[42.129711,-87.785088],[42.130562,-87.785187],[42.131519,-87.78524],[42.132221,-87.785316],[42.13308,-87.785492],[42.13382,-87.785713],[42.135139,-87.786217],[42.13567,-87.786484],[42.13641,-87.786972],[42.13707,-87.787422],[42.138168,-87.788307],[42.13821,-87.78833],[42.140251,-87.789978],[42.141151,-87.790497],[42.141621,-87.790657],[42.14296,-87.791054],[42.14362,-87.791283],[42.144211,-87.791672],[42.144669,-87.792099],[42.145069,-87.792664],[42.145401,-87.793343],[42.145599,-87.793892],[42.145721,-87.794434],[42.145771,-87.794891],[42.145821,-87.796387],[42.14584,-87.797203],[42.14584,-87.797958],[42.145859,-87.798767],[42.145859,-87.800247],[42.14587,-87.802933],[42.145901,-87.808601],[42.145901,-87.811043],[42.145851,-87.812111],[42.145672,-87.813942],[42.145641,-87.814331],[42.14502,-87.820427],[42.14452,-87.825111],[42.144451,-87.825943],[42.144409,-87.826927],[42.144428,-87.827858],[42.144501,-87.828568],[42.144619,-87.829437],[42.144859,-87.830528],[42.145069,-87.831284],[42.145359,-87.831993],[42.145981,-87.833397],[42.146179,-87.833832],[42.14756,-87.836853],[42.148281,-87.838402],[42.148571,-87.839073],[42.148819,-87.839722],[42.1492,-87.840851],[42.149422,-87.841797],[42.14959,-87.842781],[42.14967,-87.843857],[42.149651,-87.844856],[42.149632,-87.847847],[42.149639,-87.850197],[42.149658,-87.855049],[42.149658,-87.860329],[42.1497,-87.864372],[42.149689,-87.867493],[42.149681,-87.869987],[42.149731,-87.870621],[42.149811,-87.871208],[42.14999,-87.87175],[42.150139,-87.872139],[42.150291,-87.872437],[42.15052,-87.872818],[42.15078,-87.873161],[42.15115,-87.873528],[42.151539,-87.873787],[42.151852,-87.873962],[42.152149,-87.874069],[42.152699,-87.874161],[42.15313,-87.874184],[42.153339,-87.874199],[42.15374,-87.874207],[42.157639,-87.874168],[42.158699,-87.874153],[42.160179,-87.874107],[42.160629,-87.874092],[42.163109,-87.874008],[42.163399,-87.874001],[42.165241,-87.87397],[42.167831,-87.873917],[42.169861,-87.873894],[42.17178,-87.873863],[42.17326,-87.873863],[42.174019,-87.873901],[42.174801,-87.873962],[42.176182,-87.874138],[42.176769,-87.874237],[42.177711,-87.874443],[42.178131,-87.874527],[42.17844,-87.874603],[42.17931,-87.874863],[42.18029,-87.87516],[42.181358,-87.875557],[42.181831,-87.875748],[42.182209,-87.875908],[42.183289,-87.876404],[42.184441,-87.877007],[42.184528,-87.87706],[42.185589,-87.877678],[42.186489,-87.878242],[42.18737,-87.878868],[42.188221,-87.879494],[42.195709,-87.885323],[42.19754,-87.886803],[42.19907,-87.88797],[42.199951,-87.888527],[42.200871,-87.889076],[42.20155,-87.889351],[42.20517,-87.890984],[42.22628,-87.900421],[42.22681,-87.900627],[42.227371,-87.90081],[42.2285,-87.9011],[42.229641,-87.90126],[42.230141,-87.901314],[42.230179,-87.901314],[42.230831,-87.901321],[42.231899,-87.901314],[42.234669,-87.901314],[42.234951,-87.901314],[42.23531,-87.901314],[42.235359,-87.901314],[42.236629,-87.901299],[42.240108,-87.901291],[42.243969,-87.901283],[42.244492,-87.901268],[42.249939,-87.901207],[42.251091,-87.901253],[42.252041,-87.901237],[42.253761,-87.90123],[42.25462,-87.90123],[42.254639,-87.90123],[42.255199,-87.901237],[42.25528,-87.901253],[42.256168,-87.901329],[42.256691,-87.901421],[42.256821,-87.901443],[42.257919,-87.901711],[42.25861,-87.901947],[42.259811,-87.902428],[42.260391,-87.902733],[42.261002,-87.903069],[42.261929,-87.903687],[42.26366,-87.905006],[42.267639,-87.908043],[42.272011,-87.911377],[42.272549,-87.911797],[42.272709,-87.911903],[42.273109,-87.912163],[42.273659,-87.912437],[42.27404,-87.912598],[42.274639,-87.912788],[42.275101,-87.912918],[42.27562,-87.912987],[42.276051,-87.91301],[42.276501,-87.91301],[42.276958,-87.912956],[42.277439,-87.912872],[42.278099,-87.912689],[42.27858,-87.912514],[42.278931,-87.912338],[42.279678,-87.911919],[42.280369,-87.911484],[42.28059,-87.911339],[42.28149,-87.910782],[42.281971,-87.910477],[42.28299,-87.909813],[42.283611,-87.909409],[42.284531,-87.908852],[42.28495,-87.908562],[42.290989,-87.904701],[42.291241,-87.904541],[42.291859,-87.90419],[42.29245,-87.903877],[42.29311,-87.90358],[42.293751,-87.903313],[42.294361,-87.903107],[42.295101,-87.902908],[42.295879,-87.902763],[42.296692,-87.902641],[42.297459,-87.902603],[42.29821,-87.902603],[42.29826,-87.902603],[42.29882,-87.902618],[42.299259,-87.902672],[42.30035,-87.902832],[42.301628,-87.903053],[42.302292,-87.903137],[42.306721,-87.903893],[42.3083,-87.904114],[42.30925,-87.904259],[42.313931,-87.905037],[42.31591,-87.905373],[42.315971,-87.90538],[42.317219,-87.905563],[42.319248,-87.905884],[42.320099,-87.906029],[42.321541,-87.906273],[42.323151,-87.90654],[42.324631,-87.906776],[42.325279,-87.906914],[42.326191,-87.907158],[42.326649,-87.907318],[42.327339,-87.907593],[42.327431,-87.907631],[42.32835,-87.908058],[42.329189,-87.908546],[42.329731,-87.908913],[42.330898,-87.909798],[42.331249,-87.910103],[42.331699,-87.910507],[42.334949,-87.913521],[42.335129,-87.913696],[42.33625,-87.914742],[42.33865,-87.916962],[42.339691,-87.917938],[42.341042,-87.919182],[42.34127,-87.919388],[42.341648,-87.919724],[42.34193,-87.919983],[42.343891,-87.921791],[42.34391,-87.921799],[42.34409,-87.921959],[42.344631,-87.922432],[42.34494,-87.922722],[42.34621,-87.923927],[42.34623,-87.923943],[42.3465,-87.924202],[42.346531,-87.92424],[42.34808,-87.925667],[42.34837,-87.925926],[42.34864,-87.926163],[42.350658,-87.928032],[42.353119,-87.930313],[42.353668,-87.930817],[42.354561,-87.931633],[42.354832,-87.9319],[42.355061,-87.932114],[42.3564,-87.93335],[42.359619,-87.936279],[42.35994,-87.936546],[42.360081,-87.936668],[42.360352,-87.936882],[42.360889,-87.937279],[42.36092,-87.937286],[42.361118,-87.937424],[42.36142,-87.937622],[42.361961,-87.93795],[42.362572,-87.938278],[42.363659,-87.93882],[42.36404,-87.939003],[42.364449,-87.939209],[42.364979,-87.939461],[42.36742,-87.940666],[42.367661,-87.940788],[42.369171,-87.941521],[42.370029,-87.941963],[42.37035,-87.942108],[42.371849,-87.942848],[42.372108,-87.94297],[42.373638,-87.943733],[42.374329,-87.944054],[42.374802,-87.944283],[42.375401,-87.944588],[42.375778,-87.944771],[42.37595,-87.944862],[42.376289,-87.945023],[42.376511,-87.945137],[42.376961,-87.945351],[42.377129,-87.945442],[42.377331,-87.945549],[42.378689,-87.946213],[42.37888,-87.946312],[42.379311,-87.946533],[42.37944,-87.946587],[42.379829,-87.946777],[42.380001,-87.946854],[42.38044,-87.94706],[42.380661,-87.947159],[42.381241,-87.947456],[42.382389,-87.948013],[42.382462,-87.948051],[42.382851,-87.948219],[42.383518,-87.948471],[42.384171,-87.948692],[42.384609,-87.948807],[42.38512,-87.948936],[42.385399,-87.948997],[42.385521,-87.94902],[42.385872,-87.949074],[42.385979,-87.949081],[42.38644,-87.949127],[42.38715,-87.949181],[42.387539,-87.949188],[42.388279,-87.949158],[42.388699,-87.949127],[42.393009,-87.948914],[42.399189,-87.948593],[42.400169,-87.948532],[42.401939,-87.948441],[42.40752,-87.948151],[42.408859,-87.948082],[42.411079,-87.947968],[42.414631,-87.947777],[42.417721,-87.947617],[42.417839,-87.947617],[42.42411,-87.947304],[42.42445,-87.947304],[42.42498,-87.947311],[42.425591,-87.947418],[42.426151,-87.947563],[42.42667,-87.947739],[42.42717,-87.947983],[42.42791,-87.948418],[42.428268,-87.948677],[42.432419,-87.95211],[42.43317,-87.952812],[42.43433,-87.953911],[42.434551,-87.954086],[42.43504,-87.95443],[42.435471,-87.954681],[42.435902,-87.954903],[42.436291,-87.95507],[42.436729,-87.955223],[42.443661,-87.957207],[42.446579,-87.958061],[42.450272,-87.959129],[42.45446,-87.960342],[42.457829,-87.961311],[42.460541,-87.962097],[42.46624,-87.963753],[42.466709,-87.963837],[42.46714,-87.963898],[42.46785,-87.963928],[42.46854,-87.963852],[42.469398,-87.963654],[42.47002,-87.963409],[42.47094,-87.962936],[42.471451,-87.962563],[42.471951,-87.962173],[42.472351,-87.961777],[42.472691,-87.961388],[42.472919,-87.961143],[42.473141,-87.960838],[42.473389,-87.960487],[42.473751,-87.959908],[42.474091,-87.959267],[42.474339,-87.95871],[42.474579,-87.958107],[42.474979,-87.956993],[42.47575,-87.954857],[42.476349,-87.953232],[42.477161,-87.950951],[42.477421,-87.950203],[42.47765,-87.949638],[42.477749,-87.94944],[42.47776,-87.949417],[42.47789,-87.949173],[42.478451,-87.948372],[42.478779,-87.947983],[42.479149,-87.947647],[42.4795,-87.947327],[42.480011,-87.947067],[42.480629,-87.946777],[42.481499,-87.946548],[42.4827,-87.946373],[42.483231,-87.94635],[42.485489,-87.946503],[42.486431,-87.946701],[42.487469,-87.94693],[42.487999,-87.94709],[42.48864,-87.947304],[42.491199,-87.94841],[42.493931,-87.949562],[42.494591,-87.949837],[42.494999,-87.949997],[42.495449,-87.950188],[42.497162,-87.950813],[42.497761,-87.950974],[42.499001,-87.95118],[42.500721,-87.951279],[42.50214,-87.951279],[42.50436,-87.951286],[42.505032,-87.951286],[42.506561,-87.951286],[42.508209,-87.951317],[42.50922,-87.951378],[42.512119,-87.951401],[42.517422,-87.951561],[42.5191,-87.95166],[42.527321,-87.951767],[42.528019,-87.951767],[42.530079,-87.951813],[42.53437,-87.95195],[42.537998,-87.952087],[42.53896,-87.95211],[42.542992,-87.952179],[42.543209,-87.952179],[42.544239,-87.952209],[42.547321,-87.952278],[42.548321,-87.952278],[42.55302,-87.952377],[42.562149,-87.952499],[42.56295,-87.95253],[42.56432,-87.952583],[42.56636,-87.952583],[42.567169,-87.952583],[42.567719,-87.952591],[42.56955,-87.952599],[42.570301,-87.952606],[42.571308,-87.952621],[42.572819,-87.95266],[42.57473,-87.952682],[42.57695,-87.952782],[42.57877,-87.952782],[42.58197,-87.95282],[42.582748,-87.952827],[42.583569,-87.952843],[42.584492,-87.952797],[42.58572,-87.952782],[42.588539,-87.952782],[42.58942,-87.952782],[42.589821,-87.952751],[42.592258,-87.952606],[42.592979,-87.952553],[42.59499,-87.952423],[42.598339,-87.952271],[42.600689,-87.952148],[42.603001,-87.952103],[42.603951,-87.952103],[42.604309,-87.952103],[42.6054,-87.952103],[42.608521,-87.95208],[42.613789,-87.952141],[42.614651,-87.952164],[42.615299,-87.952171],[42.619499,-87.95224],[42.61972,-87.95224],[42.625019,-87.952293],[42.63596,-87.952461],[42.639912,-87.952469],[42.641048,-87.952477],[42.6451,-87.95253],[42.654541,-87.952629],[42.655182,-87.952621],[42.66497,-87.952713],[42.667931,-87.952744],[42.67329,-87.952751],[42.681122,-87.952888],[42.684052,-87.952942],[42.684479,-87.95295],[42.686378,-87.95298],[42.692211,-87.953583],[42.693001,-87.953629],[42.696129,-87.953659],[42.69717,-87.95369],[42.698582,-87.95369],[42.698879,-87.95369],[42.709702,-87.953697],[42.716751,-87.953781],[42.725109,-87.953796],[42.726089,-87.953796],[42.73225,-87.953812],[42.75415,-87.953957],[42.760849,-87.954033],[42.76405,-87.953941],[42.7644,-87.953934],[42.77129,-87.953743],[42.778252,-87.953613],[42.779011,-87.95359],[42.78289,-87.953506],[42.803699,-87.95311],[42.8083,-87.953033],[42.812599,-87.952888],[42.81868,-87.952667],[42.824211,-87.952667],[42.825371,-87.952682],[42.833721,-87.952423],[42.838821,-87.952263],[42.83934,-87.952217],[42.839851,-87.952133],[42.840672,-87.951927],[42.84153,-87.95166],[42.842659,-87.951218],[42.843498,-87.950867],[42.844509,-87.950241],[42.84565,-87.949203],[42.846661,-87.947929],[42.851608,-87.941116],[42.852348,-87.940201],[42.853031,-87.939468],[42.853661,-87.938957],[42.854321,-87.938553],[42.855301,-87.938026],[42.85643,-87.937668],[42.857899,-87.937561],[42.863659,-87.937401],[42.869049,-87.937202],[42.875801,-87.936913],[42.893761,-87.936333],[42.91114,-87.935699],[42.920799,-87.935364],[42.926022,-87.93515],[42.935051,-87.935051],[42.937641,-87.935028],[42.94381,-87.934921],[42.951809,-87.934769],[42.95229,-87.934753],[42.95507,-87.934677],[42.957401,-87.934593],[42.960239,-87.934273],[42.961479,-87.934151],[42.96249,-87.934059],[42.96286,-87.933952],[42.963268,-87.933777],[42.96397,-87.933403],[42.964241,-87.933113],[42.964699,-87.932587],[42.96492,-87.932259],[42.965141,-87.931808],[42.965401,-87.931137],[42.965549,-87.930641],[42.965729,-87.930054],[42.96582,-87.929443],[42.966061,-87.926323],[42.966518,-87.919907],[42.96656,-87.91967],[42.966648,-87.91922],[42.96677,-87.918739],[42.966949,-87.918167],[42.967289,-87.917488],[42.96751,-87.917084],[42.967751,-87.916672],[42.968071,-87.916313],[42.968399,-87.915993],[42.968689,-87.915787],[42.968891,-87.915688],[42.969082,-87.915581],[42.96941,-87.915527],[42.969688,-87.915482],[42.969959,-87.915466],[42.970371,-87.915443],[42.97525,-87.915451],[42.975849,-87.915489],[42.976501,-87.915573],[42.98035,-87.916344],[42.98069,-87.916389],[42.980991,-87.916412],[42.981251,-87.916412],[42.981491,-87.916397],[42.98193,-87.916367],[42.98246,-87.91626],[42.982792,-87.916183],[42.983582,-87.915848],[42.98513,-87.91507],[42.986259,-87.914452],[42.98703,-87.9142],[42.987961,-87.914108],[42.98835,-87.914131],[42.98914,-87.914261],[42.99115,-87.914452],[42.994808,-87.914902],[42.99572,-87.915024],[42.996471,-87.915108],[42.99799,-87.915337],[42.999889,-87.915894],[43.001011,-87.91613],[43.00272,-87.916092],[43.004318,-87.916077],[43.006119,-87.916039],[43.0089,-87.915977],[43.009029,-87.91597],[43.01149,-87.915962],[43.015759,-87.915993],[43.016911,-87.916039],[43.017559,-87.916161],[43.018318,-87.916489],[43.019081,-87.916977],[43.019451,-87.917328],[43.019791,-87.917664],[43.021389,-87.919563],[43.021759,-87.919922],[43.022331,-87.920387],[43.022812,-87.920708],[43.023361,-87.920929],[43.024681,-87.921333],[43.028019,-87.922417],[43.028759,-87.922577],[43.028858,-87.922577],[43.03212,-87.922188],[43.032219,-87.922157],[43.032768,-87.922127],[43.033539,-87.922157],[43.034081,-87.92215],[43.0345,-87.922073],[43.03466,-87.921989],[43.034859,-87.921852],[43.034981,-87.92173],[43.035099,-87.921593],[43.03521,-87.92141],[43.035259,-87.92131],[43.03532,-87.921219],[43.0354,-87.920998],[43.03548,-87.920723],[43.035568,-87.920326],[43.035591,-87.919861],[43.03558,-87.918289],[43.035591,-87.917702],[43.035599,-87.916687],[43.03561,-87.915329],[43.03561,-87.915092],[43.03561,-87.914688],[43.03561,-87.914253],[43.035549,-87.912064],[43.035549,-87.908081],[43.035568,-87.907173],[43.035591,-87.906487],[43.035751,-87.904419],[43.035809,-87.90374],[43.035831,-87.903641],[43.035858,-87.903313],[43.03595,-87.903023],[43.036011,-87.902893],[43.036121,-87.902733],[43.03635,-87.902557],[43.03653,-87.902496],[43.03772,-87.902641],[43.038971,-87.902771],[43.040199,-87.902924],[43.04081,-87.902992],[43.041409,-87.903084],[43.042629,-87.903191],[43.04282,-87.903214],[43.043831,-87.90329],[43.044521,-87.903374],[43.045731,-87.903503],[43.045738,-87.904762],[43.04731,-87.904747],[43.048161,-87.904739],[43.048161,-87.904022],[43.048161,-87.903473],[43.046951,-87.903503],[43.045731,-87.903503],[43.044521,-87.903374],[43.043831,-87.90329],[43.043758,-87.904579],[43.04369,-87.905762],[43.04369,-87.905823],[43.043621,-87.907066],[43.04253,-87.906937],[43.04248,-87.906937],[43.042419,-87.906937],[43.042068,-87.906898],[43.042061,-87.906898],[43.04121,-87.906807],[43.039989,-87.906677],[43.038761,-87.906517],[43.03751,-87.90638],[43.03759,-87.905151],[43.03767,-87.903923],[43.036461,-87.903763],[43.036079,-87.903923],[43.035969,-87.904083],[43.035919,-87.904228],[43.035912,-87.904373],[43.035931,-87.908089],[43.0359,-87.909447],[43.035881,-87.910278],[43.035851,-87.911263],[43.035801,-87.914452],[43.035751,-87.918259],[43.035751,-87.919861],[43.035728,-87.920593],[43.035721,-87.920998],[43.035591,-87.922607],[43.03558,-87.923424],[43.03558,-87.92379],[43.035591,-87.924149],[43.03561,-87.924393],[43.035629,-87.924583],[43.03566,-87.924942],[43.035679,-87.925163],[43.035702,-87.925537],[43.035721,-87.92598],[43.03574,-87.926323],[43.03574,-87.926804],[43.035751,-87.927902],[43.035751,-87.928146],[43.035751,-87.928421],[43.035759,-87.930168],[43.03574,-87.931343],[43.035721,-87.933563],[43.035709,-87.934143],[43.035671,-87.934692],[43.035568,-87.936211],[43.035561,-87.938606],[43.035622,-87.939484],[43.035671,-87.940826],[43.035728,-87.941803],[43.035782,-87.942642],[43.035789,-87.943176],[43.035671,-87.94426],[43.035511,-87.945007],[43.035221,-87.945747],[43.034821,-87.946533],[43.03429,-87.947563],[43.034019,-87.948112],[43.03334,-87.949768],[43.03281,-87.951027],[43.0326,-87.951683],[43.032452,-87.952278],[43.032379,-87.952728],[43.03231,-87.953239],[43.032291,-87.953827],[43.03228,-87.954376],[43.032269,-87.954552],[43.032291,-87.961647],[43.032429,-87.962967],[43.032921,-87.965187],[43.033298,-87.966957],[43.033489,-87.967957],[43.03355,-87.968353],[43.033581,-87.968803],[43.0336,-87.969223],[43.033588,-87.969643],[43.033539,-87.970238],[43.033459,-87.970772],[43.033279,-87.971603],[43.03281,-87.973343],[43.032661,-87.973679],[43.03249,-87.974091],[43.032261,-87.974838],[43.032082,-87.975403],[43.03159,-87.977219],[43.031269,-87.978416],[43.031139,-87.978958],[43.030689,-87.980766],[43.030579,-87.981277],[43.030521,-87.981857],[43.030499,-87.982559],[43.030529,-87.985023],[43.03051,-87.986221],[43.03051,-87.98687],[43.030499,-87.987038],[43.03054,-87.990387],[43.03051,-87.992172],[43.03051,-87.992378],[43.030491,-87.992699],[43.030411,-87.993988],[43.03027,-87.996979],[43.030231,-87.997726],[43.030151,-87.999237],[43.030121,-87.999397],[43.029961,-88.000107],[43.029819,-88.000839],[43.02919,-88.003342],[43.028351,-88.00666],[43.028049,-88.007927],[43.027889,-88.008904],[43.027748,-88.009811],[43.02763,-88.010849],[43.027569,-88.011658],[43.0275,-88.01284],[43.02737,-88.015297],[43.027328,-88.016182],[43.027359,-88.016907],[43.027382,-88.017128],[43.027451,-88.017601],[43.027691,-88.018661],[43.027939,-88.019707],[43.028049,-88.020309],[43.02808,-88.02095],[43.02808,-88.021629],[43.028061,-88.02227],[43.02803,-88.026176],[43.028042,-88.027649],[43.028099,-88.028664],[43.028229,-88.029716],[43.028431,-88.03125],[43.02853,-88.032516],[43.028542,-88.03302],[43.02853,-88.03331],[43.028481,-88.03376],[43.0284,-88.034233],[43.028252,-88.034843],[43.028069,-88.035431],[43.027931,-88.035851],[43.02755,-88.036972],[43.027149,-88.038231],[43.0271,-88.038544],[43.027039,-88.039017],[43.027012,-88.039749],[43.02702,-88.040443],[43.027069,-88.040733],[43.027161,-88.041222],[43.02726,-88.04158],[43.027328,-88.041801],[43.028851,-88.045921],[43.029499,-88.047737],[43.030392,-88.050247],[43.030701,-88.051277],[43.030861,-88.051933],[43.031109,-88.053177],[43.031281,-88.054733],[43.031349,-88.055977],[43.031349,-88.056801],[43.031319,-88.057404],[43.031281,-88.057869],[43.031189,-88.05883],[43.030941,-88.060387],[43.030571,-88.062408],[43.030472,-88.062988],[43.029839,-88.066437],[43.029659,-88.067436],[43.02935,-88.069183],[43.025459,-88.090889],[43.024971,-88.093628],[43.024849,-88.094482],[43.024769,-88.095253],[43.024658,-88.096413],[43.02457,-88.097771],[43.02454,-88.099388],[43.024521,-88.100899],[43.024521,-88.106697],[43.02454,-88.107452],[43.024559,-88.109207],[43.02462,-88.110458],[43.024719,-88.111443],[43.024841,-88.112778],[43.02496,-88.113808],[43.0252,-88.114967],[43.025471,-88.116226],[43.02655,-88.120468],[43.028172,-88.126808],[43.028278,-88.127243],[43.028351,-88.127548],[43.02853,-88.128418],[43.028721,-88.129578],[43.028851,-88.130577],[43.02895,-88.131683],[43.028961,-88.131882],[43.028999,-88.132919],[43.02903,-88.134407],[43.029041,-88.143044],[43.029041,-88.143547],[43.029041,-88.14402],[43.029049,-88.144447],[43.02906,-88.144913],[43.029079,-88.145401],[43.029148,-88.146584],[43.02919,-88.147041],[43.029221,-88.14743],[43.029251,-88.147713],[43.029289,-88.148003],[43.029362,-88.148613],[43.029449,-88.149208],[43.02951,-88.149673],[43.02961,-88.150223],[43.029732,-88.150917],[43.029831,-88.151443],[43.0299,-88.151741],[43.02993,-88.151848],[43.030231,-88.153168],[43.03059,-88.154747],[43.03067,-88.15509],[43.03117,-88.157288],[43.031952,-88.160637],[43.03199,-88.160812],[43.032249,-88.161919],[43.032341,-88.162277],[43.03241,-88.162613],[43.032928,-88.164886],[43.032959,-88.165024],[43.033878,-88.169022],[43.034328,-88.170937],[43.034431,-88.171341],[43.034519,-88.171623],[43.03463,-88.171944],[43.034779,-88.172333],[43.034962,-88.172707],[43.03513,-88.173027],[43.035309,-88.173332],[43.035519,-88.17366],[43.035759,-88.173981],[43.035992,-88.174263],[43.036171,-88.174438],[43.036442,-88.17469],[43.03701,-88.175194],[43.037819,-88.175926],[43.038212,-88.176331],[43.03849,-88.176651],[43.038849,-88.177101],[43.039059,-88.177399],[43.03923,-88.177643],[43.03957,-88.178223],[43.039841,-88.178703],[43.040112,-88.179283],[43.04026,-88.179672],[43.04055,-88.180367],[43.04105,-88.182213],[43.041161,-88.182632],[43.041309,-88.183144],[43.041988,-88.185661],[43.042099,-88.186073],[43.04253,-88.187592],[43.046051,-88.200409],[43.046188,-88.200912],[43.046619,-88.202454],[43.046879,-88.203392],[43.048019,-88.207558],[43.04834,-88.208733],[43.048431,-88.209023],[43.048512,-88.209343],[43.048569,-88.209602],[43.04866,-88.210007],[43.04874,-88.210457],[43.048809,-88.210907],[43.04887,-88.211403],[43.048901,-88.211777],[43.04895,-88.212624],[43.048969,-88.21331],[43.049042,-88.216667],[43.04908,-88.218513],[43.049099,-88.219383],[43.049229,-88.225807],[43.04924,-88.226486],[43.04924,-88.227028],[43.049221,-88.227417],[43.04921,-88.227623],[43.049198,-88.227913],[43.04916,-88.228477],[43.049141,-88.228607],[43.049141,-88.228699],[43.04892,-88.231216],[43.048908,-88.2313],[43.048779,-88.232697],[43.048759,-88.233093],[43.04874,-88.233398],[43.048691,-88.233963],[43.04842,-88.236961],[43.04818,-88.239693],[43.048038,-88.241203],[43.047909,-88.24263],[43.047409,-88.248291],[43.047359,-88.24884],[43.047009,-88.252777],[43.047009,-88.252823],[43.046902,-88.254044],[43.046799,-88.255203],[43.046791,-88.255272],[43.046719,-88.256119],[43.0466,-88.25737],[43.046371,-88.259956],[43.046021,-88.263924],[43.04591,-88.265198],[43.045891,-88.265678],[43.04586,-88.266357],[43.045872,-88.266876],[43.04591,-88.267464],[43.04594,-88.267822],[43.04599,-88.268227],[43.046108,-88.269081],[43.046169,-88.269386],[43.046421,-88.270714],[43.046452,-88.270897],[43.046478,-88.271072],[43.046829,-88.273041],[43.04689,-88.273399],[43.047138,-88.274773],[43.047581,-88.277138],[43.047791,-88.278267],[43.048031,-88.27951],[43.049561,-88.287903],[43.049679,-88.288651],[43.049789,-88.289482],[43.049881,-88.290283],[43.050049,-88.292168],[43.05056,-88.298302],[43.050739,-88.300453],[43.05077,-88.300903],[43.050789,-88.301338],[43.0508,-88.30162],[43.050819,-88.302353],[43.050819,-88.302856],[43.0508,-88.304039],[43.050789,-88.304413],[43.050758,-88.306023],[43.050751,-88.30822],[43.050659,-88.311096],[43.050652,-88.31218],[43.050629,-88.313522],[43.05061,-88.315117],[43.050529,-88.318817],[43.050449,-88.323334],[43.0504,-88.325867],[43.050369,-88.327263],[43.050289,-88.331337],[43.050228,-88.333923],[43.05019,-88.335167],[43.05011,-88.336807],[43.050041,-88.337982],[43.049961,-88.339233],[43.049671,-88.342697],[43.049629,-88.343201],[43.049492,-88.34491],[43.04924,-88.34803],[43.049191,-88.348808],[43.049171,-88.349281],[43.049171,-88.349457],[43.04916,-88.349663],[43.04916,-88.350082],[43.049171,-88.350754],[43.049171,-88.351051],[43.049221,-88.351883],[43.049259,-88.352409],[43.04932,-88.353157],[43.05051,-88.36348],[43.050541,-88.363747],[43.050591,-88.36422],[43.050941,-88.367111],[43.05098,-88.367577],[43.051029,-88.368088],[43.051189,-88.369392],[43.051601,-88.373032],[43.051689,-88.373878],[43.05196,-88.37616],[43.05201,-88.376648],[43.052158,-88.377876],[43.05225,-88.378593],[43.052441,-88.380287],[43.052582,-88.381561],[43.05278,-88.383263],[43.053089,-88.386002],[43.053131,-88.386383],[43.053341,-88.388168],[43.053371,-88.388489],[43.053501,-88.38958],[43.053619,-88.390839],[43.05368,-88.391533],[43.053711,-88.392036],[43.053741,-88.392677],[43.053791,-88.394341],[43.053799,-88.394707],[43.053909,-88.399147],[43.053928,-88.399673],[43.053982,-88.40184],[43.05402,-88.403053],[43.05407,-88.405243],[43.054062,-88.405617],[43.054081,-88.407494],[43.054089,-88.40847],[43.054119,-88.410583],[43.054119,-88.410973],[43.05415,-88.411682],[43.05415,-88.412109],[43.05415,-88.413513],[43.054161,-88.413834],[43.054169,-88.414261],[43.05418,-88.414513],[43.054249,-88.415581],[43.054329,-88.416313],[43.05444,-88.41729],[43.054569,-88.41806],[43.054691,-88.418709],[43.054821,-88.41935],[43.055099,-88.420502],[43.05521,-88.42086],[43.055309,-88.421242],[43.055359,-88.421387],[43.055511,-88.421867],[43.055672,-88.422417],[43.055679,-88.422478],[43.05579,-88.422829],[43.05592,-88.423302],[43.05637,-88.42482],[43.056549,-88.425423],[43.05843,-88.43177],[43.058449,-88.43187],[43.059299,-88.434753],[43.059349,-88.434883],[43.060131,-88.437523],[43.060429,-88.438583],[43.060661,-88.439423],[43.060829,-88.440117],[43.06123,-88.441879],[43.061378,-88.442596],[43.062431,-88.447449],[43.062599,-88.44825],[43.06282,-88.449219],[43.06295,-88.449722],[43.063129,-88.450439],[43.06337,-88.451286],[43.063591,-88.452057],[43.063881,-88.453003],[43.06419,-88.453934],[43.064739,-88.455513],[43.066841,-88.461693],[43.066959,-88.462029],[43.06715,-88.462563],[43.067421,-88.463387],[43.067669,-88.464233],[43.067841,-88.464851],[43.067959,-88.465286],[43.068218,-88.466377],[43.068291,-88.466713],[43.068378,-88.467201],[43.068531,-88.468018],[43.06868,-88.468933],[43.06879,-88.469749],[43.068859,-88.47036],[43.069012,-88.472099],[43.06905,-88.472656],[43.069061,-88.472977],[43.069092,-88.474022],[43.069111,-88.476013],[43.069111,-88.476624],[43.069111,-88.477081],[43.06913,-88.477287],[43.06913,-88.477448],[43.06913,-88.478432],[43.06913,-88.478691],[43.069149,-88.480858],[43.069149,-88.481438],[43.06916,-88.48597],[43.069172,-88.486252],[43.06921,-88.492996],[43.069221,-88.495323],[43.069229,-88.49646],[43.069248,-88.497299],[43.069271,-88.498138],[43.069309,-88.499077],[43.069359,-88.499962],[43.06942,-88.500969],[43.069469,-88.501572],[43.069489,-88.501892],[43.069969,-88.507957],[43.070061,-88.509216],[43.07008,-88.509407],[43.070179,-88.510658],[43.070431,-88.513901],[43.070492,-88.51474],[43.070511,-88.515106],[43.070591,-88.516472],[43.070648,-88.517754],[43.07069,-88.518997],[43.070709,-88.520409],[43.070721,-88.520813],[43.070709,-88.522957],[43.070702,-88.523666],[43.07069,-88.524811],[43.07069,-88.52597],[43.070671,-88.527519],[43.07066,-88.531227],[43.070641,-88.531982],[43.070591,-88.53952],[43.070591,-88.539589],[43.07058,-88.540199],[43.07056,-88.541679],[43.070469,-88.551804],[43.070332,-88.554916],[43.070301,-88.555557],[43.07024,-88.556923],[43.070179,-88.558861],[43.07016,-88.55938],[43.070129,-88.560188],[43.070091,-88.563057],[43.070141,-88.572777],[43.070148,-88.575912],[43.07019,-88.577583],[43.070301,-88.578796],[43.070431,-88.579903],[43.07061,-88.580917],[43.070839,-88.582092],[43.071121,-88.583252],[43.0714,-88.584221],[43.07233,-88.586693],[43.07235,-88.586723],[43.072369,-88.586769],[43.072521,-88.587059],[43.07254,-88.587112],[43.072609,-88.587227],[43.072739,-88.587471],[43.072899,-88.587936],[43.073662,-88.589317],[43.074829,-88.591042],[43.07695,-88.593788],[43.077309,-88.594254],[43.07748,-88.594467],[43.07753,-88.594528],[43.079578,-88.597366],[43.080521,-88.598824],[43.081039,-88.599678],[43.082088,-88.60173],[43.082611,-88.602928],[43.08321,-88.604378],[43.083771,-88.60601],[43.084019,-88.606911],[43.084332,-88.608017],[43.084728,-88.609871],[43.085049,-88.611809],[43.08519,-88.612892],[43.08527,-88.613678],[43.085369,-88.615013],[43.085419,-88.616333],[43.08543,-88.617683],[43.0854,-88.618927],[43.085369,-88.619614],[43.085121,-88.624397],[43.085171,-88.632263],[43.085171,-88.632339],[43.085178,-88.634216],[43.08522,-88.638939],[43.085209,-88.639542],[43.08514,-88.644173],[43.08514,-88.644333],[43.084881,-88.649406],[43.084881,-88.649429],[43.08482,-88.650238],[43.084621,-88.654083],[43.08456,-88.65567],[43.084579,-88.657303],[43.084579,-88.657356],[43.084579,-88.658028],[43.084591,-88.658546],[43.084999,-88.667168],[43.085239,-88.672729],[43.085258,-88.673241],[43.085381,-88.677238],[43.085411,-88.679863],[43.08569,-88.691322],[43.085701,-88.691681],[43.085781,-88.696457],[43.0858,-88.697037],[43.08617,-88.719414],[43.086201,-88.720299],[43.086288,-88.723587],[43.086342,-88.725113],[43.08638,-88.726692],[43.08667,-88.736557],[43.08667,-88.736778],[43.086731,-88.739326],[43.086769,-88.741638],[43.08691,-88.747162],[43.087009,-88.749893],[43.087009,-88.751511],[43.087029,-88.754051],[43.08704,-88.754494],[43.087021,-88.75515],[43.08699,-88.755768],[43.086929,-88.756668],[43.086929,-88.75695],[43.086929,-88.756973],[43.086891,-88.757599],[43.08683,-88.759071],[43.08675,-88.760948],[43.086712,-88.761871],[43.086491,-88.766769],[43.08646,-88.767616],[43.086269,-88.772011],[43.086269,-88.772186],[43.086269,-88.772362],[43.086239,-88.773163],[43.086208,-88.77552],[43.086201,-88.776062],[43.086201,-88.779388],[43.086182,-88.785919],[43.08617,-88.788612],[43.086159,-88.791847],[43.086151,-88.795143],[43.086128,-88.795792],[43.08614,-88.796783],[43.086151,-88.798538],[43.086159,-88.799026],[43.08609,-88.811394],[43.08609,-88.81263],[43.086201,-88.815567],[43.086231,-88.816254],[43.086571,-88.825272],[43.086578,-88.825394],[43.086761,-88.829613],[43.086948,-88.834953],[43.087021,-88.838562],[43.08709,-88.846916],[43.087101,-88.848228],[43.08717,-88.854118],[43.08736,-88.868973],[43.08757,-88.877777],[43.087719,-88.88401],[43.087719,-88.884193],[43.087742,-88.884422],[43.087742,-88.884827],[43.08783,-88.888527],[43.08783,-88.888573],[43.087841,-88.888908],[43.087872,-88.889671],[43.087891,-88.890007],[43.08794,-88.890717],[43.088009,-88.891388],[43.088051,-88.891701],[43.088139,-88.892326],[43.088181,-88.892609],[43.08828,-88.893227],[43.088291,-88.893272],[43.088341,-88.893539],[43.088459,-88.894112],[43.088631,-88.894852],[43.088772,-88.895432],[43.088959,-88.896103],[43.089081,-88.896477],[43.089298,-88.897163],[43.09053,-88.900627],[43.090549,-88.900703],[43.09074,-88.901253],[43.090832,-88.901497],[43.09164,-88.903801],[43.09169,-88.903938],[43.091831,-88.90432],[43.092098,-88.905144],[43.09227,-88.905609],[43.092461,-88.906128],[43.093201,-88.908333],[43.0942,-88.911102],[43.094299,-88.911362],[43.094559,-88.912132],[43.094582,-88.91217],[43.0952,-88.91394],[43.095261,-88.914078],[43.09544,-88.914627],[43.095581,-88.914993],[43.098469,-88.923241],[43.10091,-88.930153],[43.10112,-88.930763],[43.10183,-88.932831],[43.106812,-88.947777],[43.108349,-88.952507],[43.108551,-88.953087],[43.109089,-88.954758],[43.109249,-88.955223],[43.109402,-88.955688],[43.10955,-88.956161],[43.109692,-88.956642],[43.109821,-88.957123],[43.109951,-88.957603],[43.110069,-88.958092],[43.11018,-88.95858],[43.110291,-88.959068],[43.110401,-88.959557],[43.110489,-88.96006],[43.11058,-88.960564],[43.110661,-88.96106],[43.110741,-88.961563],[43.110809,-88.962067],[43.110851,-88.962357],[43.110882,-88.962578],[43.110939,-88.963081],[43.110989,-88.963593],[43.111031,-88.964104],[43.111069,-88.964607],[43.111099,-88.965134],[43.11113,-88.965637],[43.111149,-88.966148],[43.11116,-88.967148],[43.111172,-88.967247],[43.11116,-88.971397],[43.11116,-88.97261],[43.11105,-88.984154],[43.111038,-88.98632],[43.111019,-88.992767],[43.110989,-88.998093],[43.110989,-88.998138],[43.110889,-89.012108],[43.110821,-89.015648],[43.110779,-89.017059],[43.110771,-89.017517],[43.11068,-89.02224],[43.11063,-89.024139],[43.110592,-89.026413],[43.110569,-89.027283],[43.110519,-89.029579],[43.110359,-89.036949],[43.110298,-89.039177],[43.110229,-89.041527],[43.1101,-89.045311],[43.11002,-89.048042],[43.110008,-89.04821],[43.10981,-89.054123],[43.109741,-89.056519],[43.109692,-89.058418],[43.109631,-89.061363],[43.109619,-89.061943],[43.109539,-89.065392],[43.109501,-89.067207],[43.109489,-89.068176],[43.109489,-89.068283],[43.109451,-89.069901],[43.109428,-89.071342],[43.109341,-89.07547],[43.109299,-89.076897],[43.109299,-89.076927],[43.109299,-89.076981],[43.109291,-89.078293],[43.109268,-89.078979],[43.109261,-89.079514],[43.109211,-89.081497],[43.109169,-89.082977],[43.109169,-89.083351],[43.109119,-89.085411],[43.109112,-89.086403],[43.109112,-89.086983],[43.109058,-89.0886],[43.109051,-89.089218],[43.109039,-89.089661],[43.109032,-89.09008],[43.109009,-89.090721],[43.109001,-89.091454],[43.108971,-89.092293],[43.108971,-89.092621],[43.108959,-89.093277],[43.108929,-89.094009],[43.108891,-89.096252],[43.10886,-89.097717],[43.108841,-89.098877],[43.108768,-89.100647],[43.108742,-89.102913],[43.108639,-89.107513],[43.108589,-89.109528],[43.10857,-89.111092],[43.108559,-89.112862],[43.108582,-89.116722],[43.108601,-89.118752],[43.108601,-89.119766],[43.108601,-89.121323],[43.10865,-89.129753],[43.10865,-89.131493],[43.108662,-89.13208],[43.108662,-89.132881],[43.108669,-89.13401],[43.108669,-89.13456],[43.108669,-89.135674],[43.108681,-89.138672],[43.108688,-89.140388],[43.1087,-89.142563],[43.108711,-89.143417],[43.108719,-89.145088],[43.108719,-89.146698],[43.108749,-89.151192],[43.108761,-89.155251],[43.108768,-89.157341],[43.10878,-89.158699],[43.108799,-89.161583],[43.10881,-89.164177],[43.10881,-89.164337],[43.108822,-89.16452],[43.108841,-89.169144],[43.108849,-89.169968],[43.108849,-89.170067],[43.10886,-89.170403],[43.10886,-89.170593],[43.108891,-89.171341],[43.108921,-89.172081],[43.10899,-89.173203],[43.109032,-89.17379],[43.109051,-89.174004],[43.109081,-89.174347],[43.10915,-89.175087],[43.10923,-89.175827],[43.110241,-89.184196],[43.11031,-89.184792],[43.110371,-89.185364],[43.110439,-89.186096],[43.110481,-89.186668],[43.110512,-89.187218],[43.110531,-89.187782],[43.11055,-89.188301],[43.11055,-89.188858],[43.11055,-89.189339],[43.11055,-89.189873],[43.110531,-89.19043],[43.1105,-89.191254],[43.110458,-89.191818],[43.110409,-89.192467],[43.110298,-89.193604],[43.109779,-89.198807],[43.109699,-89.199608],[43.10918,-89.204697],[43.109081,-89.205757],[43.10899,-89.206871],[43.108971,-89.207077],[43.108849,-89.208763],[43.10878,-89.209976],[43.1087,-89.211639],[43.108681,-89.212372],[43.10865,-89.213287],[43.10862,-89.214828],[43.108601,-89.219421],[43.108589,-89.221031],[43.108582,-89.22271],[43.10857,-89.224281],[43.108559,-89.225891],[43.10854,-89.227341],[43.108471,-89.228706],[43.10844,-89.229073],[43.108349,-89.230164],[43.108181,-89.231499],[43.108009,-89.232567],[43.10778,-89.233856],[43.107578,-89.234756],[43.10738,-89.235649],[43.107071,-89.237053],[43.106022,-89.241821],[43.105339,-89.244904],[43.105209,-89.245483],[43.10508,-89.246071],[43.10495,-89.246651],[43.104778,-89.247414],[43.10453,-89.248627],[43.104469,-89.24894],[43.10437,-89.249496],[43.104229,-89.250328],[43.104111,-89.251099],[43.104,-89.251862],[43.10397,-89.252029],[43.103882,-89.252762],[43.10379,-89.253532],[43.10371,-89.254356],[43.10363,-89.25528],[43.103569,-89.256157],[43.103519,-89.257027],[43.10347,-89.258713],[43.103458,-89.259209],[43.103458,-89.259628],[43.10347,-89.26059],[43.103481,-89.261337],[43.103531,-89.262894],[43.10363,-89.266487],[43.103642,-89.266968],[43.10368,-89.268379],[43.103729,-89.269852],[43.103771,-89.271584],[43.103809,-89.272453],[43.103859,-89.274269],[43.10387,-89.27475],[43.103931,-89.27636],[43.103951,-89.277313],[43.103981,-89.280144],[43.10405,-89.282356],[43.104092,-89.284149],[43.104229,-89.287529],[43.10424,-89.288116],[43.104271,-89.28904],[43.104321,-89.290154],[43.104382,-89.291077],[43.104431,-89.291817],[43.104469,-89.292183],[43.104561,-89.293152],[43.10466,-89.294067],[43.104759,-89.294823],[43.10487,-89.295601],[43.10508,-89.296806],[43.105431,-89.298698],[43.105701,-89.30011],[43.10577,-89.300438],[43.105881,-89.300987],[43.106152,-89.302452],[43.106281,-89.303543],[43.106331,-89.304207],[43.1064,-89.305237],[43.10643,-89.30658],[43.10643,-89.307007],[43.106461,-89.30912],[43.106461,-89.309532],[43.106541,-89.315872],[43.106541,-89.316963],[43.10659,-89.321068],[43.106628,-89.32251],[43.106628,-89.323143],[43.10664,-89.324203],[43.106651,-89.324623],[43.106659,-89.325493],[43.10667,-89.325897],[43.106659,-89.326691],[43.106659,-89.327927],[43.106689,-89.32943],[43.106689,-89.330353],[43.106689,-89.330902],[43.10672,-89.332352],[43.106758,-89.335403],[43.106758,-89.336487],[43.106781,-89.336777],[43.106831,-89.337082],[43.10688,-89.337379],[43.106949,-89.337646],[43.107288,-89.338333],[43.107689,-89.338943],[43.10796,-89.339211],[43.108089,-89.339256],[43.108158,-89.339272],[43.108231,-89.339256],[43.10828,-89.339233],[43.108341,-89.339203],[43.108391,-89.339149],[43.10844,-89.339081],[43.108479,-89.339012],[43.108509,-89.338943],[43.10854,-89.338882],[43.108559,-89.338737],[43.108559,-89.338661],[43.108551,-89.338509],[43.108528,-89.33844],[43.108501,-89.338364],[43.108452,-89.338272],[43.10833,-89.338074],[43.108158,-89.33786],[43.10807,-89.33773],[43.107559,-89.338516],[43.10722,-89.338997],[43.107121,-89.339127],[43.106781,-89.339523],[43.106529,-89.339798],[43.10619,-89.340134],[43.10585,-89.340424],[43.105629,-89.340622],[43.10553,-89.340714],[43.105438,-89.340813],[43.104912,-89.341301],[43.104721,-89.34153],[43.104599,-89.341667],[43.104481,-89.341827],[43.10442,-89.341904],[43.104321,-89.342041],[43.10416,-89.342247],[43.10397,-89.34259],[43.103779,-89.343018],[43.10371,-89.343178],[43.102921,-89.345177],[43.10239,-89.346519],[43.102169,-89.34697],[43.102051,-89.347214],[43.101921,-89.347458],[43.1017,-89.347717],[43.101398,-89.34803],[43.10099,-89.348381],[43.100422,-89.348808],[43.099991,-89.349152],[43.09985,-89.349297],[43.099758,-89.349403],[43.099579,-89.349617],[43.098431,-89.351143],[43.097351,-89.352654],[43.096169,-89.354187],[43.094879,-89.355911],[43.093971,-89.357079],[43.092312,-89.359451],[43.09145,-89.360626],[43.090469,-89.362],[43.090172,-89.362411],[43.089981,-89.362671],[43.089901,-89.362793],[43.08923,-89.363708],[43.089149,-89.363823],[43.089008,-89.364014],[43.088638,-89.364517],[43.087391,-89.366341],[43.086121,-89.368088],[43.0849,-89.369873],[43.08371,-89.371552],[43.08363,-89.371681],[43.082359,-89.373444],[43.08112,-89.375259],[43.07988,-89.377037],[43.080639,-89.378036],[43.081268,-89.378883],[43.08194,-89.379761],[43.082588,-89.380623],[43.082191,-89.381187],[43.082081,-89.381317],[43.081749,-89.38179],[43.08152,-89.382133],[43.081329,-89.382393],[43.080959,-89.382912],[43.0807,-89.383293],[43.08054,-89.383507],[43.080189,-89.384048],[43.07959,-89.384933],[43.07888,-89.38591],[43.078331,-89.386703],[43.077492,-89.38784],[43.07708,-89.388481],[43.076981,-89.388618],[43.07671,-89.389023],[43.076359,-89.389519],[43.07608,-89.389923],[43.075871,-89.390221],[43.075779,-89.39035],[43.075699,-89.39045],[43.075451,-89.3908],[43.075699,-89.391144],[43.076092,-89.39164],[43.076462,-89.392128],[43.076752,-89.392517],[43.0765,-89.392891],[43.07618,-89.393349],[43.076069,-89.393509],[43.075939,-89.393707],[43.075851,-89.393837],[43.075809,-89.393929],[43.07579,-89.39399],[43.075779,-89.394043],[43.075771,-89.394073],[43.075779,-89.394493],[43.075779,-89.394508],[43.07579,-89.394676],[43.07579,-89.394913],[43.07579,-89.395348],[43.07653,-89.395332],[43.07663,-89.395317],[43.07692,-89.395317],[43.077271,-89.395317],[43.07692,-89.395317],[43.07663,-89.395317],[43.07653,-89.395332],[43.07579,-89.395348],[43.075802,-89.395767],[43.075809,-89.396217],[43.075821,-89.396729],[43.075821,-89.397331],[43.074909,-89.397369],[43.074429,-89.397392],[43.074329,-89.3974],[43.07391,-89.397408],[43.073219,-89.39743],[43.073231,-89.39827],[43.073238,-89.399063],[43.073261,-89.400467],[43.073261,-89.400612],[43.073189,-89.400642],[43.073078,-89.400703],[43.072609,-89.400711],[43.072418,-89.400726],[43.072128,-89.400841],[43.07185,-89.400909],[43.071541,-89.400917],[43.07135,-89.400917],[43.070961,-89.40094],[43.07019,-89.400993],[43.06934,-89.401016],[43.069038,-89.401039],[43.068748,-89.401047],[43.068241,-89.401062],[43.067669,-89.401077],[43.067261,-89.401062],[43.066792,-89.401009],[43.066341,-89.400963],[43.065899,-89.400917],[43.06506,-89.400871],[43.064388,-89.400864],[43.064251,-89.400864],[43.063709,-89.400864],[43.06319,-89.400864],[43.062618,-89.400864],[43.062061,-89.400871],[43.06152,-89.400879],[43.06097,-89.400887],[43.060509,-89.400871],[43.06028,-89.400871],[43.059891,-89.400879],[43.059429,-89.40081],[43.0592,-89.400742],[43.058971,-89.400627],[43.058411,-89.4002],[43.05761,-89.399521],[43.057259,-89.399231],[43.057049,-89.399048],[43.05682,-89.398888],[43.056641,-89.398743],[43.056469,-89.398598],[43.05608,-89.398293],[43.055489,-89.397842],[43.055019,-89.397438],[43.054729,-89.397186],[43.05452,-89.397018],[43.053989,-89.396561],[43.053951,-89.396553],[43.053349,-89.396027],[43.05307,-89.39579],[43.052929,-89.395683],[43.05275,-89.395538],[43.05246,-89.395309],[43.052139,-89.395111],[43.051849,-89.394943],[43.051601,-89.394791],[43.050961,-89.394531],[43.050591,-89.394409],[43.05022,-89.394318],[43.049709,-89.394211],[43.049221,-89.394173],[43.049141,-89.394157],[43.04911,-89.394157],[43.048901,-89.394157],[43.048771,-89.394157],[43.047531,-89.394173],[43.047199,-89.394157],[43.04718,-89.394157],[43.04501,-89.394173],[43.04414,-89.39415],[43.043339,-89.39415],[43.04253,-89.394127],[43.041771,-89.394119],[43.039829,-89.394127],[43.03944,-89.394127],[43.038479,-89.394112],[43.038078,-89.394112],[43.03783,-89.394234],[43.03767,-89.394272],[43.037231,-89.394447],[43.03698,-89.3946],[43.036739,-89.394783],[43.03648,-89.394997],[43.03624,-89.395264],[43.036079,-89.395493],[43.03603,-89.395569],[43.035671,-89.396271],[43.035568,-89.396461],[43.03529,-89.397552],[43.035069,-89.398438],[43.034962,-89.398979],[43.03484,-89.399712],[43.034771,-89.400146],[43.034698,-89.40081],[43.03466,-89.401329],[43.034649,-89.401718],[43.03463,-89.40255],[43.034641,-89.403023],[43.03476,-89.406349],[43.034771,-89.406639],[43.034801,-89.407051],[43.034809,-89.407387],[43.034882,-89.408974],[43.034882,-89.408997],[43.034882,-89.409042],[43.034901,-89.409523],[43.034931,-89.410179],[43.034981,-89.411568],[43.035,-89.411903],[43.035019,-89.412407],[43.035019,-89.41272],[43.035061,-89.413727],[43.03513,-89.415581],[43.035141,-89.415901],[43.035141,-89.416023],[43.035179,-89.417168],[43.03524,-89.418861],[43.03524,-89.419319],[43.035309,-89.421188],[43.035332,-89.421638],[43.035351,-89.42215],[43.03537,-89.422447],[43.035389,-89.423088],[43.0354,-89.423637],[43.035568,-89.428818],[43.03561,-89.430168],[43.035629,-89.43071],[43.035622,-89.43129],[43.03561,-89.431824],[43.03558,-89.432503],[43.035549,-89.433159],[43.035519,-89.433647],[43.035332,-89.436821],[43.03524,-89.438187],[43.034931,-89.443604],[43.034851,-89.445007],[43.034828,-89.445374],[43.03484,-89.445747],[43.03484,-89.446167],[43.03487,-89.446587],[43.03495,-89.447327],[43.035011,-89.447662],[43.03508,-89.448067],[43.035191,-89.448486],[43.035221,-89.448608],[43.035301,-89.448914],[43.035412,-89.44928],[43.035542,-89.449593],[43.03569,-89.449966],[43.035789,-89.450157],[43.036091,-89.450668],[43.03627,-89.450974],[43.03643,-89.451202],[43.03685,-89.451843],[43.037029,-89.45208],[43.037159,-89.452293],[43.037258,-89.452477],[43.03669,-89.453217],[43.035759,-89.454361],[43.03529,-89.454964],[43.034512,-89.455994],[43.034401,-89.456139],[43.0327,-89.458611],[43.03196,-89.459641],[43.031799,-89.459862],[43.031601,-89.460129],[43.031399,-89.460403],[43.031158,-89.460747],[43.031029,-89.460922],[43.03091,-89.46109],[43.03046,-89.461647],[43.03035,-89.461777],[43.03017,-89.462013],[43.029709,-89.462646],[43.029499,-89.462921],[43.0289,-89.463737],[43.02879,-89.463913],[43.028469,-89.46434],[43.028111,-89.464783],[43.027981,-89.464958],[43.02771,-89.465286],[43.027649,-89.465363],[43.027229,-89.465851],[43.027149,-89.465942],[43.026932,-89.466179],[43.026539,-89.466599],[43.02597,-89.467163],[43.02536,-89.467728],[43.02486,-89.468147],[43.0242,-89.468689],[43.023811,-89.468987],[43.023479,-89.469223],[43.022739,-89.469727],[43.021938,-89.4702],[43.021549,-89.470428],[43.02121,-89.470596],[43.020802,-89.470787],[43.0205,-89.47094],[43.020229,-89.471069],[43.019939,-89.471184],[43.019039,-89.471527],[43.01828,-89.471817],[43.01738,-89.472183],[43.017189,-89.47226],[43.016861,-89.472382],[43.016441,-89.472542],[43.016022,-89.47271],[43.015598,-89.472878],[43.015469,-89.472923],[43.015251,-89.473],[43.01519,-89.473022],[43.014481,-89.473259],[43.014069,-89.473442],[43.01371,-89.473633],[43.013409,-89.473793],[43.013008,-89.474022],[43.01265,-89.474243],[43.01236,-89.474449],[43.012001,-89.474709],[43.011478,-89.475113],[43.011299,-89.475273],[43.01099,-89.475548],[43.01067,-89.475853],[43.010441,-89.476097],[43.010181,-89.476372],[43.00996,-89.476624],[43.009521,-89.477158],[43.0093,-89.47744],[43.009079,-89.477737],[43.008671,-89.47834],[43.008301,-89.478928],[43.00795,-89.479553],[43.007061,-89.481232],[43.006771,-89.481827],[43.006489,-89.482384],[43.005619,-89.484093],[43.005421,-89.484489],[43.00103,-89.492912],[43.000919,-89.493118],[43.000359,-89.494186],[42.999249,-89.496353],[42.99855,-89.497719],[42.998241,-89.498337],[42.998119,-89.498596],[42.99778,-89.499298],[42.9972,-89.500542],[42.996769,-89.501511],[42.99649,-89.502136],[42.995998,-89.503273],[42.995789,-89.503777],[42.995209,-89.505219],[42.993729,-89.509003],[42.993519,-89.509552],[42.99329,-89.510063],[42.993069,-89.510422],[42.992889,-89.510712],[42.992691,-89.510986],[42.992489,-89.511253],[42.99229,-89.511482],[42.99192,-89.511864],[42.991619,-89.512123],[42.991371,-89.512299],[42.991119,-89.512466],[42.990871,-89.512611],[42.990601,-89.512741],[42.990341,-89.512848],[42.990089,-89.512939],[42.989799,-89.513023],[42.989529,-89.513069],[42.989239,-89.513092],[42.98885,-89.513107],[42.98856,-89.5131],[42.988159,-89.513046],[42.986961,-89.51297],[42.986568,-89.512917],[42.98317,-89.512627],[42.98093,-89.512451],[42.97971,-89.512352],[42.979271,-89.512329],[42.978512,-89.51223],[42.97805,-89.512253],[42.977852,-89.512283],[42.977612,-89.512337],[42.97739,-89.51239],[42.976929,-89.512558],[42.97673,-89.51265],[42.976509,-89.512772],[42.976269,-89.512917],[42.976028,-89.5131],[42.97554,-89.513512],[42.975288,-89.513763],[42.975071,-89.514023],[42.974911,-89.514221],[42.974709,-89.514511],[42.974548,-89.514763],[42.974312,-89.515182],[42.97414,-89.515533],[42.9739,-89.516129],[42.97374,-89.516617],[42.97361,-89.517113],[42.973518,-89.517517],[42.973419,-89.518173],[42.97337,-89.518799],[42.97324,-89.521744],[42.973129,-89.524033],[42.97311,-89.524368],[42.97308,-89.524986],[42.973042,-89.525757],[42.973,-89.527557],[42.973011,-89.528603],[42.973011,-89.529083],[42.973019,-89.529327],[42.973049,-89.530357],[42.973148,-89.532158],[42.973228,-89.53318],[42.973259,-89.533562],[42.97337,-89.534477],[42.97374,-89.537521],[42.973801,-89.538048],[42.973888,-89.538811],[42.974091,-89.540489],[42.974209,-89.541382],[42.974319,-89.542328],[42.97443,-89.543228],[42.974461,-89.543457],[42.97472,-89.545349],[42.974831,-89.546181],[42.975239,-89.549667],[42.975319,-89.550293],[42.975399,-89.550919],[42.97551,-89.551613],[42.975552,-89.551826],[42.975769,-89.55262],[42.976021,-89.553299],[42.976398,-89.55407],[42.976841,-89.554741],[42.977371,-89.555382],[42.97781,-89.555771],[42.978199,-89.556061],[42.978729,-89.556374],[42.979172,-89.556557],[42.97961,-89.556686],[42.97966,-89.556686],[42.980492,-89.556847],[42.980549,-89.556862],[42.982189,-89.557182],[42.982521,-89.557266],[42.982811,-89.557373],[42.98299,-89.557426],[42.983101,-89.55748],[42.983349,-89.55761],[42.98362,-89.557762],[42.98381,-89.557892],[42.983891,-89.557953],[42.984112,-89.558113],[42.984341,-89.558296],[42.98476,-89.558723],[42.98505,-89.559067],[42.985241,-89.559319],[42.985401,-89.559563],[42.985561,-89.559822],[42.985699,-89.560066],[42.985821,-89.560303],[42.98597,-89.560623],[42.986172,-89.561096],[42.986229,-89.561272],[42.986271,-89.561417],[42.986389,-89.56179],[42.986481,-89.562134],[42.986561,-89.562477],[42.986622,-89.562851],[42.986671,-89.563217],[42.98671,-89.563591],[42.986729,-89.56395],[42.986851,-89.567833],[42.986858,-89.567993],[42.98698,-89.571823],[42.986992,-89.572067],[42.987011,-89.572502],[42.98703,-89.57328],[42.98708,-89.575073],[42.987099,-89.575523],[42.98716,-89.577377],[42.98719,-89.578133],[42.98724,-89.579239],[42.987411,-89.582062],[42.98753,-89.584084],[42.987591,-89.585213],[42.98764,-89.586487],[42.98777,-89.59021],[42.98777,-89.590607],[42.98782,-89.591881],[42.987862,-89.593178],[42.98814,-89.60231],[42.988171,-89.603233],[42.988239,-89.605171],[42.9883,-89.607559],[42.988331,-89.608292],[42.988411,-89.611099],[42.98848,-89.613152],[42.988541,-89.615097],[42.988548,-89.615578],[42.98856,-89.616287],[42.98856,-89.617088],[42.98856,-89.617607],[42.98856,-89.61779],[42.988522,-89.619347],[42.98835,-89.625923],[42.988331,-89.626846],[42.988319,-89.627289],[42.988289,-89.628166],[42.98827,-89.628967],[42.988251,-89.629768],[42.988239,-89.630966],[42.988201,-89.631592],[42.988091,-89.63578],[42.988079,-89.636543],[42.987999,-89.63942],[42.987919,-89.642677],[42.9879,-89.643517],[42.9879,-89.644028],[42.9879,-89.644699],[42.98793,-89.645363],[42.987999,-89.64637],[42.988022,-89.646683],[42.988091,-89.647392],[42.988201,-89.64817],[42.988289,-89.648758],[42.988392,-89.649277],[42.98851,-89.649887],[42.98867,-89.650574],[42.988831,-89.651207],[42.988949,-89.651627],[42.98914,-89.65229],[42.989361,-89.652977],[42.989578,-89.653572],[42.989769,-89.654068],[42.990021,-89.654678],[42.99036,-89.655434],[42.9907,-89.65612],[42.991119,-89.656883],[42.991531,-89.657593],[42.99192,-89.658211],[42.992161,-89.658562],[42.992481,-89.658997],[42.993038,-89.659714],[42.993519,-89.660271],[42.994259,-89.661072],[42.994801,-89.661652],[42.995312,-89.662193],[42.995892,-89.662857],[42.99622,-89.663277],[42.996529,-89.663696],[42.997051,-89.664413],[42.99741,-89.665001],[42.99765,-89.665413],[42.99791,-89.665863],[42.998341,-89.666672],[42.998581,-89.66716],[42.99902,-89.668121],[42.999359,-89.668953],[42.999512,-89.66938],[42.999828,-89.670258],[43.000179,-89.671249],[43.00053,-89.672211],[43.000622,-89.672409],[43.00079,-89.672867],[43.001202,-89.67408],[43.00222,-89.676949],[43.00285,-89.678703],[43.003231,-89.679787],[43.00338,-89.68026],[43.003559,-89.680847],[43.003639,-89.681137],[43.003799,-89.681747],[43.003941,-89.682472],[43.004021,-89.682869],[43.004089,-89.68325],[43.0042,-89.684052],[43.004261,-89.684601],[43.004311,-89.685181],[43.00436,-89.685837],[43.004589,-89.691223],[43.004791,-89.694778],[43.004841,-89.695793],[43.004879,-89.69664],[43.00491,-89.697166],[43.004921,-89.697456],[43.004951,-89.698196],[43.004951,-89.698807],[43.00494,-89.699478],[43.00491,-89.700073],[43.004841,-89.700844],[43.004719,-89.70179],[43.004589,-89.702477],[43.004559,-89.702637],[43.004452,-89.703171],[43.004318,-89.703667],[43.004169,-89.704208],[43.004009,-89.704727],[43.00383,-89.705223],[43.00359,-89.705841],[43.003349,-89.70639],[43.002838,-89.707451],[43.002411,-89.708328],[43.002369,-89.708412],[43.001888,-89.709373],[43.001308,-89.710518],[43.000881,-89.711433],[43.000488,-89.71228],[43.00016,-89.71302],[42.999889,-89.713654],[42.999592,-89.714378],[42.999561,-89.71447],[42.99934,-89.714996],[42.998878,-89.716164],[42.998661,-89.716789],[42.998329,-89.717667],[42.997822,-89.719002],[42.997631,-89.719498],[42.997398,-89.720139],[42.99715,-89.720886],[42.996281,-89.723671],[42.995911,-89.724693],[42.995682,-89.725357],[42.994919,-89.727592],[42.994759,-89.72805],[42.994011,-89.730217],[42.993801,-89.730858],[42.993649,-89.731377],[42.9935,-89.731911],[42.99337,-89.732437],[42.993271,-89.732918],[42.993179,-89.733368],[42.993092,-89.733887],[42.993019,-89.734367],[42.992939,-89.73497],[42.992889,-89.735519],[42.992851,-89.736053],[42.992828,-89.736313],[42.992821,-89.736526],[42.992809,-89.737007],[42.992802,-89.737534],[42.992809,-89.738091],[42.992821,-89.738609],[42.992859,-89.739197],[42.992859,-89.739273],[42.992939,-89.740021],[42.993011,-89.740623],[42.993111,-89.741272],[42.99321,-89.741859],[42.993328,-89.742416],[42.993462,-89.742973],[42.993622,-89.743584],[42.993771,-89.744087],[42.99379,-89.744164],[42.993961,-89.744637],[42.994301,-89.745529],[42.99453,-89.746162],[42.994781,-89.746696],[42.99506,-89.747269],[42.995369,-89.747902],[42.995739,-89.748657],[42.996311,-89.749809],[42.996368,-89.749939],[42.99651,-89.750221],[42.99828,-89.75383],[42.998638,-89.754593],[42.998718,-89.754784],[42.99921,-89.755814],[42.99934,-89.756111],[42.999901,-89.757347],[43.00013,-89.757874],[43.000801,-89.759354],[43.001209,-89.760246],[43.00174,-89.761421],[43.00211,-89.762253],[43.002369,-89.76281],[43.00259,-89.763329],[43.00272,-89.763603],[43.002972,-89.764168],[43.00312,-89.764488],[43.003262,-89.764801],[43.003639,-89.76564],[43.00423,-89.766937],[43.004631,-89.767853],[43.00478,-89.768173],[43.00526,-89.769241],[43.005409,-89.769562],[43.005638,-89.770081],[43.00597,-89.770821],[43.006149,-89.77124],[43.006359,-89.771851],[43.006432,-89.772072],[43.006538,-89.772537],[43.006649,-89.773087],[43.006691,-89.773354],[43.006729,-89.773666],[43.006748,-89.773933],[43.00676,-89.774193],[43.006771,-89.774529],[43.006779,-89.774948],[43.006779,-89.776451],[43.006779,-89.777443],[43.00679,-89.782654],[43.006802,-89.783211],[43.006809,-89.783463],[43.00684,-89.783943],[43.006882,-89.784363],[43.006939,-89.784813],[43.007,-89.785202],[43.007038,-89.785431],[43.007092,-89.785637],[43.00713,-89.785873],[43.007191,-89.786102],[43.007252,-89.786331],[43.007309,-89.786568],[43.007511,-89.787201],[43.007591,-89.78743],[43.007809,-89.78801],[43.00856,-89.789848],[43.009411,-89.791977],[43.00967,-89.792664],[43.00975,-89.7929],[43.009819,-89.793137],[43.009998,-89.79377],[43.010052,-89.793983],[43.01017,-89.79451],[43.01022,-89.794762],[43.010281,-89.795189],[43.010342,-89.795624],[43.01038,-89.796028],[43.010399,-89.796257],[43.010429,-89.796654],[43.010429,-89.796837],[43.010441,-89.79731],[43.010441,-89.799301],[43.010441,-89.800194],[43.010441,-89.802048],[43.010448,-89.804337],[43.010448,-89.806992],[43.010448,-89.808151],[43.010448,-89.809303],[43.010448,-89.809723],[43.010448,-89.812317],[43.010448,-89.813797],[43.010448,-89.815964],[43.010448,-89.817101],[43.010448,-89.819481],[43.010448,-89.819862],[43.01046,-89.824028],[43.01046,-89.824432],[43.01046,-89.8255],[43.010448,-89.828148],[43.01046,-89.828957],[43.01046,-89.832207],[43.010448,-89.835289],[43.010448,-89.835876],[43.010441,-89.836212],[43.010399,-89.838417],[43.01038,-89.839417],[43.010262,-89.841171],[43.010139,-89.843361],[43.01012,-89.843712],[43.009892,-89.848351],[43.009701,-89.851158],[43.009548,-89.854637],[43.009392,-89.85833],[43.009369,-89.859497],[43.00948,-89.862198],[43.009529,-89.863251],[43.009621,-89.865067],[43.00983,-89.869011],[43.010021,-89.871681],[43.010269,-89.876167],[43.01049,-89.880219],[43.010639,-89.882553],[43.0107,-89.884857],[43.010681,-89.887283],[43.010681,-89.887337],[43.010479,-89.891418],[43.01041,-89.892281],[43.010269,-89.895088],[43.010059,-89.8974],[43.009911,-89.899902],[43.009781,-89.901718],[43.00972,-89.903259],[43.00967,-89.90448],[43.009659,-89.905258],[43.00967,-89.906242],[43.009689,-89.90712],[43.00975,-89.908997],[43.0098,-89.914932],[43.0098,-89.919472],[43.009781,-89.923943],[43.009781,-89.927223],[43.009781,-89.927368],[43.009739,-89.931778],[43.009739,-89.932327],[43.009701,-89.934723],[43.009701,-89.937279],[43.009701,-89.937859],[43.009682,-89.940277],[43.009659,-89.942307],[43.009628,-89.946854],[43.009602,-89.950851],[43.009571,-89.951309],[43.009499,-89.951973],[43.009369,-89.95266],[43.009281,-89.953049],[43.009171,-89.953506],[43.00885,-89.954369],[43.008301,-89.955437],[43.007992,-89.955917],[43.007179,-89.957169],[43.006672,-89.958099],[43.006371,-89.958817],[43.00605,-89.959717],[43.00573,-89.961403],[43.005409,-89.963257],[43.005219,-89.964523],[43.005169,-89.965347],[43.00515,-89.966011],[43.005169,-89.967216],[43.005299,-89.969254],[43.005341,-89.970016],[43.00536,-89.971008],[43.005322,-89.971947],[43.005211,-89.972893],[43.004959,-89.974182],[43.004631,-89.975349],[43.004452,-89.9758],[43.004101,-89.976639],[43.003479,-89.977768],[43.002708,-89.978844],[43.001968,-89.979637],[43.001259,-89.980324],[43.00082,-89.980621],[42.999352,-89.981857],[42.998119,-89.98317],[42.997471,-89.984093],[42.997169,-89.984573],[42.996948,-89.984978],[42.99649,-89.985863],[42.996159,-89.986763],[42.995899,-89.987953],[42.99577,-89.988953],[42.995129,-89.993919],[42.994869,-89.995918],[42.99469,-89.997208],[42.994381,-89.998444],[42.993809,-89.999763],[42.993301,-90.000778],[42.99205,-90.003281],[42.989639,-90.008163],[42.988991,-90.009354],[42.988651,-90.009811],[42.98827,-90.010307],[42.987358,-90.011383],[42.986519,-90.012169],[42.984989,-90.013412],[42.983101,-90.014923],[42.982281,-90.015762],[42.981071,-90.017143],[42.98045,-90.017921],[42.979012,-90.019676],[42.978119,-90.020813],[42.977928,-90.021057],[42.977581,-90.02166],[42.97715,-90.02253],[42.976768,-90.023483],[42.976372,-90.024879],[42.97633,-90.025078],[42.976151,-90.025887],[42.9757,-90.028503],[42.975632,-90.028893],[42.975262,-90.030983],[42.97506,-90.03199],[42.974731,-90.033409],[42.97427,-90.034889],[42.973419,-90.037308],[42.97274,-90.039162],[42.97224,-90.040428],[42.971432,-90.042137],[42.970589,-90.04361],[42.969669,-90.044998],[42.968731,-90.046417],[42.968159,-90.047508],[42.96764,-90.048897],[42.967289,-90.050339],[42.967129,-90.051559],[42.96706,-90.053436],[42.966919,-90.057114],[42.96674,-90.061653],[42.966572,-90.066002],[42.966469,-90.069687],[42.96645,-90.072388],[42.96653,-90.075821],[42.966629,-90.077888],[42.966961,-90.083092],[42.966969,-90.08326],[42.96722,-90.087273],[42.967449,-90.090897],[42.967491,-90.091911],[42.967529,-90.09288],[42.967541,-90.093353],[42.96751,-90.094131],[42.967381,-90.095467],[42.96714,-90.096771],[42.966511,-90.098793],[42.966202,-90.09967],[42.966141,-90.099838],[42.965969,-90.100304],[42.965691,-90.100952],[42.96542,-90.101723],[42.965271,-90.102448],[42.96521,-90.103363],[42.965321,-90.104233],[42.965569,-90.105148],[42.966068,-90.106163],[42.96722,-90.108383],[42.96843,-90.110703],[42.969398,-90.112572],[42.969601,-90.113007],[42.969669,-90.113037],[42.96973,-90.113113],[42.969749,-90.113167],[42.969761,-90.11322],[42.969742,-90.113312],[42.969719,-90.11338],[42.969921,-90.113762],[42.97052,-90.115097],[42.971069,-90.116653],[42.971531,-90.118279],[42.971649,-90.11879],[42.97205,-90.120628],[42.972408,-90.122871],[42.972591,-90.124802],[42.97263,-90.126259],[42.972649,-90.126953],[42.972698,-90.131462],[42.972698,-90.13279],[42.97274,-90.134659],[42.972759,-90.13665],[42.972771,-90.136818],[42.972778,-90.138779],[42.972839,-90.139618],[42.973061,-90.140839],[42.973549,-90.142433],[42.97361,-90.142593],[42.974041,-90.1436],[42.974541,-90.145058],[42.974689,-90.146156],[42.974739,-90.147346],[42.974682,-90.148621],[42.97467,-90.148773],[42.97467,-90.149353],[42.974659,-90.153587],[42.974689,-90.160133],[42.97467,-90.162048],[42.974689,-90.162689],[42.97472,-90.172752],[42.97472,-90.177963],[42.974682,-90.181389],[42.974602,-90.184021],[42.97403,-90.189453],[42.97374,-90.192329],[42.97287,-90.200706],[42.972599,-90.203522],[42.97229,-90.206871],[42.971951,-90.211433],[42.971809,-90.21299],[42.97163,-90.214867],[42.971031,-90.221939],[42.97052,-90.226273],[42.97028,-90.227928],[42.96965,-90.232018],[42.96954,-90.23262],[42.96785,-90.243736],[42.967548,-90.246292],[42.96735,-90.250122],[42.967369,-90.250961],[42.967361,-90.256058],[42.9674,-90.25869],[42.96743,-90.261978],[42.96743,-90.262657],[42.967442,-90.263412],[42.96743,-90.26413],[42.96743,-90.264793],[42.967442,-90.265503],[42.96743,-90.266098],[42.96743,-90.26683],[42.967442,-90.267448],[42.9674,-90.269737],[42.967419,-90.270844],[42.9674,-90.272949],[42.9674,-90.2761],[42.9674,-90.27652],[42.967411,-90.280884],[42.967449,-90.28598],[42.967449,-90.290863],[42.967499,-90.294472],[42.967499,-90.295883],[42.967491,-90.297699],[42.96748,-90.30098],[42.967571,-90.306236],[42.967621,-90.309967],[42.967491,-90.317307],[42.967491,-90.31739],[42.967491,-90.319443],[42.967411,-90.325058],[42.967411,-90.325493],[42.967381,-90.327713],[42.967369,-90.329811],[42.967369,-90.329903],[42.96735,-90.331093],[42.967319,-90.332481],[42.9673,-90.334282],[42.96727,-90.335968],[42.967159,-90.339478],[42.967159,-90.339798],[42.967098,-90.342171],[42.967079,-90.34967],[42.966999,-90.356537],[42.966961,-90.359528],[42.966839,-90.369621],[42.966782,-90.375168],[42.966648,-90.388168],[42.96664,-90.388939],[42.966511,-90.395317],[42.96637,-90.399452],[42.966309,-90.404411],[42.966221,-90.411858],[42.966202,-90.41449],[42.966122,-90.428467],[42.966061,-90.431557],[42.96603,-90.432541],[42.96603,-90.433617],[42.966042,-90.43576],[42.965981,-90.438393],[42.966,-90.43943],[42.966091,-90.440758],[42.966202,-90.441887],[42.96645,-90.44294],[42.96653,-90.443367],[42.966721,-90.44413],[42.967911,-90.44799],[42.96796,-90.448143],[42.971432,-90.460823],[42.973,-90.466087],[42.97319,-90.466812],[42.973309,-90.467331],[42.973412,-90.467796],[42.97348,-90.468361],[42.97353,-90.469597],[42.973469,-90.477882],[42.973469,-90.479057],[42.97348,-90.49086],[42.973518,-90.497833],[42.973518,-90.500122],[42.973518,-90.50325],[42.973549,-90.507812],[42.973549,-90.507919],[42.973621,-90.517906],[42.973598,-90.519722],[42.97353,-90.520943],[42.973652,-90.53756],[42.973629,-90.540237],[42.97356,-90.541977],[42.97356,-90.542168],[42.973171,-90.546806],[42.972839,-90.550018],[42.972809,-90.550346],[42.972462,-90.556587],[42.97226,-90.561752],[42.972141,-90.568008],[42.972351,-90.568817],[42.973309,-90.571457],[42.973492,-90.572372],[42.97361,-90.573898],[42.973701,-90.581207],[42.973808,-90.586098],[42.973881,-90.595062],[42.97385,-90.605927],[42.973919,-90.616028],[42.973869,-90.624092],[42.97385,-90.624878],[42.973869,-90.625809],[42.973999,-90.627274],[42.973999,-90.627441],[42.974152,-90.62825],[42.9743,-90.629059],[42.974449,-90.629593],[42.974609,-90.63015],[42.97485,-90.630997],[42.97501,-90.631538],[42.975189,-90.632156],[42.975231,-90.632317],[42.975281,-90.632477],[42.975422,-90.632584],[42.97599,-90.63382],[42.977322,-90.636063],[42.977661,-90.636528],[42.978531,-90.638138],[42.979,-90.638672],[42.980049,-90.640602],[42.980419,-90.641296],[42.98064,-90.641823],[42.980728,-90.642113],[42.980801,-90.642349],[42.98098,-90.643097],[42.981071,-90.643677],[42.981098,-90.645668],[42.981098,-90.645821],[42.98106,-90.647621],[42.98106,-90.648857],[42.981079,-90.650017],[42.981079,-90.651108],[42.981091,-90.652237],[42.98111,-90.653389],[42.981079,-90.654503],[42.981079,-90.655563],[42.981941,-90.655533],[42.982738,-90.655548],[42.98362,-90.655602],[42.984428,-90.65564],[42.985279,-90.655617],[42.98568,-90.655617],[42.986511,-90.655602],[42.98735,-90.655579],[42.9884,-90.655617],[42.988319,-90.656952],[42.988319,-90.658043],[42.988331,-90.659157],[42.9883,-90.660278],[42.9883,-90.660477],[42.988281,-90.661133],[42.98835,-90.662758],[42.988369,-90.665703],[42.988392,-90.668457],[42.988392,-90.67379],[42.988392,-90.674477],[42.988392,-90.675667],[42.98838,-90.676804],[42.98838,-90.678093],[42.98843,-90.685593],[42.988468,-90.68708],[42.98848,-90.687332],[42.98851,-90.68763],[42.988621,-90.688347],[42.988689,-90.68869],[42.988762,-90.68898],[42.990822,-90.695793],[42.99176,-90.698807],[42.992241,-90.700783],[42.99226,-90.702766],[42.991928,-90.704613],[42.991211,-90.706284],[42.99015,-90.708992],[42.989819,-90.709808],[42.989651,-90.710258],[42.989529,-90.710709],[42.989429,-90.711243],[42.989311,-90.712479],[42.98914,-90.714157],[42.989071,-90.714851],[42.988991,-90.715309],[42.988861,-90.715881],[42.988621,-90.716537],[42.98838,-90.717033],[42.98806,-90.71759],[42.987709,-90.718102],[42.987431,-90.718407],[42.98658,-90.719223],[42.983021,-90.722969],[42.982151,-90.724121],[42.981548,-90.725197],[42.981239,-90.726059],[42.980999,-90.726761],[42.980652,-90.728317],[42.9804,-90.729897],[42.980129,-90.732224],[42.97987,-90.733421],[42.979431,-90.734596],[42.978649,-90.735641],[42.977322,-90.736938],[42.976639,-90.737877],[42.9762,-90.738564],[42.975842,-90.739662],[42.973831,-90.745811],[42.97369,-90.747498],[42.973801,-90.748871],[42.97385,-90.75016],[42.973721,-90.751053],[42.973579,-90.75177],[42.973251,-90.752663],[42.9716,-90.755959],[42.97131,-90.757301],[42.971241,-90.758797],[42.97126,-90.759377],[42.971882,-90.761467],[42.97316,-90.763771],[42.97366,-90.765007],[42.973782,-90.765358],[42.974098,-90.767448],[42.974152,-90.76844],[42.9739,-90.774597],[42.973991,-90.781052],[42.974289,-90.784599],[42.974548,-90.78775],[42.97472,-90.789833],[42.974998,-90.79245],[42.974998,-90.793137],[42.975159,-90.796341],[42.975391,-90.806297],[42.975159,-90.809509],[42.974319,-90.817451],[42.974159,-90.819733],[42.974018,-90.82502],[42.974072,-90.835114],[42.974152,-90.849457],[42.974159,-90.852043],[42.974159,-90.854248],[42.974171,-90.859169],[42.974171,-90.859451],[42.97414,-90.864342],[42.97414,-90.867859],[42.974049,-90.869011],[42.973782,-90.870407],[42.97324,-90.87236],[42.972481,-90.87513],[42.97187,-90.877213],[42.970638,-90.881416],[42.96711,-90.893044],[42.967079,-90.893539],[42.96701,-90.8937],[42.966461,-90.89563],[42.96603,-90.897797],[42.965118,-90.903191],[42.96487,-90.905121],[42.964211,-90.908493],[42.963749,-90.909729],[42.963058,-90.911011],[42.96101,-90.914032],[42.96048,-90.915123],[42.960041,-90.916641],[42.960072,-90.917023],[42.959881,-90.918388],[42.959839,-90.922974],[42.959911,-90.923119],[42.95993,-90.933022],[42.959961,-90.934807],[42.95998,-90.9366],[42.95993,-90.940147],[42.95977,-90.942513],[42.959679,-90.942734],[42.959549,-90.943291],[42.959179,-90.94429],[42.958382,-90.94603],[42.957008,-90.948212],[42.95435,-90.95269],[42.954239,-90.95285],[42.952801,-90.956886],[42.95269,-90.957787],[42.952591,-90.95929],[42.95261,-90.972862],[42.95266,-90.974541],[42.95282,-90.975288],[42.95327,-90.97657],[42.95446,-90.978592],[42.956699,-90.981422],[42.957279,-90.98204],[42.957661,-90.982437],[42.958351,-90.98317],[42.95929,-90.98423],[42.9594,-90.984261],[42.95977,-90.984657],[42.9599,-90.984703],[42.960751,-90.985527],[42.96093,-90.985573],[42.962231,-90.986412],[42.964249,-90.98719],[42.96521,-90.987411],[42.965599,-90.987694],[42.96637,-90.987968],[42.966438,-90.988159],[42.966782,-90.98819],[42.967491,-90.988617],[42.967789,-90.988777],[42.970619,-90.990753],[42.970741,-90.990753],[42.971199,-90.991089],[42.971451,-90.991119],[42.97184,-90.991493],[42.97295,-90.991959],[42.973049,-90.992088],[42.97366,-90.992332],[42.97401,-90.992577],[42.97419,-90.992577],[42.974411,-90.992691],[42.97485,-90.992897],[42.97504,-90.99308],[42.975288,-90.993149],[42.975559,-90.993362],[42.975929,-90.993637],[42.976521,-90.994331],[42.97673,-90.994797],[42.977001,-90.995613],[42.977119,-90.997437],[42.976841,-90.999092],[42.976589,-90.999657],[42.976551,-91.00013],[42.976521,-91.000687],[42.976009,-91.003487],[42.97636,-91.00972],[42.976429,-91.011833],[42.976379,-91.01252],[42.975609,-91.014763],[42.97533,-91.016037],[42.975361,-91.017036],[42.975681,-91.01841],[42.976479,-91.020462],[42.97662,-91.020554],[42.976711,-91.020958],[42.9772,-91.022087],[42.977459,-91.022667],[42.9781,-91.02417],[42.978401,-91.025223],[42.979549,-91.034569],[42.979851,-91.035469],[42.981079,-91.037338],[42.982182,-91.03936],[42.98296,-91.040947],[42.983189,-91.041321],[42.984261,-91.043068],[42.985199,-91.044403],[42.986,-91.044998],[42.986549,-91.04528],[42.987579,-91.045433],[42.987862,-91.045372],[42.98901,-91.045273],[42.989948,-91.04525],[42.990528,-91.045372],[42.990719,-91.045464],[42.991291,-91.045723],[42.99221,-91.046303],[42.993069,-91.046829],[42.99424,-91.047546],[42.996712,-91.049042],[42.997391,-91.049477],[42.998169,-91.050011],[42.999321,-91.050797],[42.999569,-91.05098],[43.001091,-91.052162],[43.00351,-91.054024],[43.00452,-91.054871],[43.005001,-91.055229],[43.006001,-91.055893],[43.006222,-91.056053],[43.006741,-91.056473],[43.007778,-91.057343],[43.00827,-91.057747],[43.008541,-91.058006],[43.00877,-91.058243],[43.008991,-91.058517],[43.00914,-91.058723],[43.00943,-91.059196],[43.009628,-91.059608],[43.009789,-91.059952],[43.009941,-91.060349],[43.010052,-91.060654],[43.010189,-91.061142],[43.01033,-91.061768],[43.01046,-91.062576],[43.010632,-91.063942],[43.01075,-91.065376],[43.01086,-91.066238],[43.01096,-91.066872],[43.011162,-91.068039],[43.012051,-91.073959],[43.01226,-91.075867],[43.012371,-91.076912],[43.012489,-91.078018],[43.012539,-91.078506],[43.013119,-91.086014],[43.01376,-91.093567],[43.013821,-91.094513],[43.013969,-91.096184],[43.014069,-91.097588],[43.014141,-91.098396],[43.014179,-91.09877],[43.01424,-91.099632],[43.01432,-91.100906],[43.014511,-91.103043],[43.014591,-91.103683],[43.014721,-91.10437],[43.014889,-91.104942],[43.01524,-91.105919],[43.016338,-91.108963],[43.016521,-91.109459],[43.016819,-91.110229],[43.01709,-91.110832],[43.01746,-91.111473],[43.017891,-91.112152],[43.01857,-91.113152],[43.01862,-91.11322],[43.019169,-91.114037],[43.01944,-91.114433],[43.02026,-91.115631],[43.020691,-91.116257],[43.021141,-91.116943],[43.022141,-91.118423],[43.023411,-91.120308],[43.02364,-91.120644],[43.02536,-91.123207],[43.025631,-91.123611],[43.026081,-91.124283],[43.02713,-91.125732],[43.02837,-91.127663],[43.028568,-91.127991],[43.02953,-91.129517],[43.029812,-91.129936],[43.030418,-91.130852],[43.031059,-91.131844],[43.031528,-91.132584],[43.032459,-91.134041],[43.032631,-91.1343],[43.033009,-91.134888],[43.033081,-91.134987],[43.033508,-91.135689],[43.03371,-91.136009],[43.033981,-91.136414],[43.034451,-91.137154],[43.034569,-91.137329],[43.034779,-91.137573],[43.035172,-91.137917],[43.03603,-91.138351],[43.037041,-91.138687],[43.03809,-91.139023],[43.039059,-91.139374],[43.041851,-91.140343],[43.042221,-91.140457],[43.042992,-91.140678],[43.043388,-91.140793],[43.043949,-91.140823],[43.04422,-91.140831],[43.044731,-91.140839],[43.045292,-91.140869],[43.04557,-91.140877],[43.046532,-91.140892],[43.047821,-91.140877],[43.048931,-91.140892],[43.04908,-91.140892],[43.050388,-91.140984],[43.050381,-91.14167],[43.050381,-91.142303],[43.050381,-91.14241],[43.050381,-91.142883],[43.050369,-91.143021],[43.050369,-91.14373],[43.050362,-91.144371],[43.05035,-91.145103],[43.050301,-91.146446],[43.050259,-91.147789],[43.05022,-91.149323],[43.050098,-91.150833],[43.05003,-91.151283],[43.049789,-91.152298],[43.04921,-91.153687],[43.048981,-91.154137],[43.048698,-91.154617],[43.048431,-91.155037],[43.048,-91.156113],[43.047569,-91.157181],[43.046169,-91.160583],[43.045391,-91.162453],[43.045078,-91.163208],[43.04483,-91.16394],[43.044682,-91.164467],[43.044529,-91.165154],[43.04443,-91.165901],[43.044369,-91.166946],[43.04427,-91.169456],[43.044151,-91.172447],[43.04409,-91.173897],[43.044041,-91.175163],[43.043968,-91.176437],[43.04385,-91.178802],[43.043789,-91.180031],[43.043732,-91.181091],[43.043629,-91.181129],[43.04356,-91.181107],[43.043362,-91.181007],[43.043209,-91.180763],[43.043121,-91.180473],[43.043049,-91.180138],[43.043049,-91.17968],[43.043098,-91.179237],[43.043282,-91.178673],[43.04332,-91.178574],[43.043308,-91.178436],[43.043289,-91.178337],[43.04324,-91.178261],[43.04319,-91.178177],[43.04211,-91.178162],[43.041988,-91.178146],[43.04179,-91.178123],[43.04163,-91.178062],[43.04147,-91.177994],[43.041279,-91.177887],[43.041142,-91.177803],[43.0411,-91.177773],[43.041012,-91.177711],[43.040951,-91.177673],[43.040829,-91.177582],[43.04034,-91.177231],[43.039429,-91.176743],[43.03875,-91.176491],[43.037891,-91.17627],[43.036999,-91.176033],[43.036121,-91.175781],[43.034512,-91.175247],[43.034248,-91.175194],[43.03252,-91.174782],[43.032429,-91.174759],[43.032001,-91.17466],[43.03159,-91.174568],[43.029911,-91.174347],[43.02919,-91.174133],[43.028999,-91.174042],[43.027889,-91.173523],[43.027599,-91.173393],[43.027359,-91.173317],[43.02713,-91.173286],[43.02684,-91.173317],[43.02647,-91.173447],[43.02626,-91.173553],[43.026051,-91.173759],[43.02573,-91.17411],[43.025612,-91.174248],[43.025341,-91.174568],[43.024719,-91.175323],[43.024712,-91.175957],[43.0247,-91.176643],[43.025009,-91.17704],[43.025249,-91.177223],[43.026901,-91.178749],[43.026901,-91.178749],[43.027771,-91.179314],[43.028,-91.179619],[43.028721,-91.179871],[43.029449,-91.180489],[43.028721,-91.179871],[43.028,-91.179619],[43.027771,-91.179314],[43.026901,-91.178749],[43.025249,-91.177223],[43.025009,-91.17704],[43.0247,-91.176643],[43.023682,-91.177856],[43.023449,-91.177467],[43.023178,-91.177017],[43.02198,-91.178429],[43.02079,-91.179787],[43.019588,-91.181183],[43.01841,-91.182541],[43.01865,-91.182991],[43.01889,-91.183434],[43.01894,-91.183571],[43.018959,-91.183739],[43.01894,-91.183929],[43.018902,-91.184082],[43.01881,-91.184227],[43.018669,-91.184471],[43.018608,-91.184662],[43.0186,-91.184792],[43.018639,-91.184929],[43.018791,-91.185501],[43.019501,-91.188087],[43.01984,-91.189362],[43.020111,-91.190277],[43.020161,-91.19075],[43.020161,-91.190971],[43.02013,-91.19136],[43.019989,-91.191933],[43.01939,-91.192917],[43.019032,-91.193573],[43.018089,-91.195267],[43.017731,-91.196167],[43.017361,-91.198097],[43.017361,-91.199203],[43.01754,-91.200043],[43.018921,-91.204712],[43.019138,-91.205803],[43.019192,-91.206734],[43.0191,-91.20723],[43.018761,-91.208138],[43.017429,-91.210411],[43.01725,-91.211067],[43.016739,-91.214211],[43.016449,-91.21524],[43.015831,-91.216583],[43.015419,-91.217773],[43.01498,-91.220818],[43.01503,-91.221519],[43.015659,-91.222183],[43.014549,-91.22403],[43.013512,-91.232567],[43.012779,-91.237953],[43.012501,-91.2397],[43.01181,-91.245277],[43.011311,-91.25013],[43.01128,-91.25058],[43.01083,-91.256699],[43.01049,-91.260307],[43.00951,-91.269043],[43.008709,-91.274841],[43.00816,-91.280167],[43.00745,-91.284897],[43.00613,-91.291733],[43.00563,-91.294037],[43.005329,-91.295776],[43.005039,-91.299454],[43.004349,-91.309303],[43.004028,-91.313454],[43.004051,-91.314751],[43.00428,-91.316498],[43.00481,-91.31871],[43.00552,-91.321053],[43.005699,-91.321648],[43.006062,-91.322823],[43.00695,-91.325287],[43.008961,-91.329376],[43.01128,-91.334541],[43.012192,-91.336601],[43.013241,-91.339531],[43.01466,-91.344078],[43.01569,-91.347008],[43.01635,-91.349411],[43.01717,-91.35218],[43.018398,-91.357262],[43.019588,-91.362747],[43.02002,-91.364464],[43.02071,-91.367332],[43.021481,-91.369827],[43.022331,-91.371887],[43.023609,-91.373909],[43.024921,-91.375137],[43.027569,-91.377007],[43.03022,-91.379097],[43.032478,-91.380722],[43.033119,-91.381248],[43.03447,-91.38221],[43.035431,-91.383057],[43.036282,-91.384018],[43.037079,-91.38517],[43.037811,-91.385948],[43.03915,-91.387917],[43.040791,-91.390312],[43.042339,-91.392433],[43.042461,-91.392593],[43.044628,-91.396049],[43.046741,-91.39901],[43.04723,-91.399773],[43.04739,-91.40004],[43.048859,-91.402344],[43.049568,-91.404152],[43.050011,-91.405769],[43.0504,-91.40786],[43.050758,-91.410851],[43.051289,-91.41497],[43.051479,-91.416443],[43.051682,-91.419533],[43.05159,-91.42794],[43.051571,-91.42926],[43.051498,-91.43499],[43.05159,-91.440483],[43.051769,-91.444656],[43.05183,-91.445663],[43.051929,-91.447456],[43.051922,-91.455101],[43.05191,-91.457558],[43.05191,-91.459091],[43.05191,-91.46312],[43.05191,-91.469193],[43.05191,-91.473999],[43.051991,-91.479179],[43.052052,-91.479683],[43.05225,-91.481392],[43.05254,-91.482521],[43.05257,-91.482597],[43.053501,-91.4851],[43.054531,-91.487518],[43.055149,-91.488968],[43.056931,-91.4935],[43.057289,-91.494431],[43.059639,-91.500137],[43.060909,-91.503304],[43.060909,-91.503479],[43.062679,-91.50769],[43.063148,-91.508812],[43.063999,-91.510933],[43.064541,-91.512589],[43.064819,-91.514023],[43.06517,-91.51873],[43.065529,-91.520447],[43.06699,-91.524559],[43.067928,-91.52774],[43.0681,-91.528954],[43.068119,-91.530167],[43.067982,-91.532257],[43.067799,-91.533699],[43.067089,-91.539223],[43.06686,-91.541779],[43.066841,-91.544403],[43.067551,-91.548523],[43.067799,-91.550262],[43.068081,-91.551102],[43.068878,-91.552292],[43.06955,-91.553062],[43.06974,-91.553291],[43.070042,-91.553528],[43.070881,-91.554222],[43.072418,-91.555496],[43.07341,-91.556282],[43.075489,-91.557747],[43.076561,-91.558502],[43.077042,-91.558838],[43.078918,-91.560402],[43.079472,-91.56086],[43.08173,-91.562737],[43.081959,-91.562927],[43.082439,-91.563583],[43.08252,-91.563957],[43.082619,-91.564423],[43.082649,-91.565231],[43.082649,-91.567169],[43.082668,-91.568481],[43.08353,-91.568481],[43.08461,-91.568512],[43.08456,-91.570511],[43.08456,-91.572601],[43.08456,-91.574532],[43.084541,-91.57653],[43.084518,-91.578247],[43.084518,-91.578552],[43.084518,-91.579369],[43.084518,-91.580582],[43.084629,-91.581177],[43.085178,-91.583183],[43.085369,-91.584084],[43.085499,-91.584732],[43.085499,-91.585609],[43.08543,-91.587318],[43.085419,-91.587471],[43.0854,-91.587967],[43.085388,-91.588173],[43.085339,-91.589287],[43.085892,-91.589394],[43.086391,-91.589699],[43.086842,-91.590202],[43.087879,-91.591377],[43.096512,-91.601433],[43.097141,-91.602257],[43.098049,-91.604446],[43.098129,-91.605103],[43.098141,-91.605339],[43.098209,-91.606567],[43.098289,-91.608307],[43.098339,-91.609177],[43.098381,-91.610184],[43.098412,-91.610832],[43.098499,-91.612793],[43.09856,-91.613861],[43.098591,-91.614197],[43.09864,-91.614594],[43.098671,-91.614822],[43.098789,-91.615494],[43.098942,-91.61615],[43.099098,-91.616707],[43.099232,-91.617073],[43.099419,-91.617638],[43.100269,-91.620087],[43.100941,-91.621971],[43.101379,-91.623291],[43.101501,-91.62365],[43.10157,-91.623917],[43.101631,-91.624268],[43.101662,-91.62455],[43.101688,-91.624863],[43.101719,-91.625183],[43.101719,-91.62545],[43.101688,-91.62603],[43.101669,-91.626358],[43.101631,-91.626556],[43.101608,-91.626778],[43.101379,-91.628242],[43.101261,-91.629089],[43.101131,-91.630142],[43.101089,-91.63047],[43.10107,-91.63076],[43.101059,-91.631027],[43.101059,-91.631638],[43.10107,-91.631889],[43.101101,-91.63224],[43.10112,-91.632507],[43.101181,-91.632927],[43.10128,-91.633377],[43.101471,-91.634163],[43.10157,-91.634483],[43.10173,-91.634918],[43.101749,-91.634956],[43.102009,-91.635513],[43.10228,-91.636047],[43.102341,-91.636177],[43.102421,-91.636383],[43.102531,-91.636658],[43.102631,-91.637093],[43.102989,-91.639053],[43.10305,-91.639397],[43.103222,-91.64035],[43.103531,-91.642227],[43.1036,-91.642929],[43.103642,-91.643837],[43.103649,-91.644653],[43.103642,-91.645157],[43.103569,-91.648911],[43.103539,-91.650902],[43.103512,-91.652542],[43.10355,-91.654099],[43.103611,-91.654732],[43.10363,-91.654907],[43.103771,-91.655617],[43.10437,-91.657883],[43.104771,-91.659279],[43.1054,-91.661461],[43.10569,-91.662491],[43.106201,-91.66436],[43.106461,-91.665443],[43.106621,-91.666344],[43.106709,-91.66703],[43.106739,-91.667297],[43.10685,-91.668282],[43.10693,-91.668739],[43.107159,-91.669617],[43.10725,-91.669891],[43.10738,-91.670227],[43.107479,-91.670448],[43.10762,-91.670677],[43.107761,-91.670921],[43.107891,-91.671089],[43.108101,-91.671341],[43.108669,-91.671837],[43.108971,-91.672089],[43.109261,-91.672501],[43.109779,-91.673241],[43.110191,-91.673866],[43.110722,-91.674667],[43.111839,-91.676331],[43.11203,-91.676613],[43.112518,-91.677338],[43.11322,-91.67836],[43.113701,-91.67907],[43.114079,-91.679672],[43.11438,-91.680138],[43.11441,-91.680443],[43.114422,-91.680588],[43.114422,-91.680794],[43.114399,-91.680992],[43.11438,-91.681137],[43.114281,-91.681488],[43.114208,-91.681953],[43.11417,-91.682533],[43.114182,-91.6828],[43.11425,-91.683258],[43.11441,-91.683929],[43.114601,-91.684464],[43.114761,-91.684914],[43.11515,-91.685997],[43.11573,-91.687668],[43.115799,-91.687897],[43.11615,-91.689041],[43.11631,-91.689537],[43.116371,-91.689728],[43.116779,-91.691132],[43.117229,-91.692703],[43.117401,-91.693268],[43.117668,-91.694237],[43.11808,-91.695633],[43.118771,-91.697792],[43.11935,-91.699547],[43.1199,-91.701141],[43.120239,-91.702263],[43.120819,-91.704041],[43.120892,-91.704269],[43.121521,-91.706123],[43.121841,-91.707268],[43.122059,-91.708443],[43.122391,-91.710632],[43.12249,-91.711197],[43.12262,-91.712013],[43.122849,-91.712929],[43.122952,-91.713272],[43.12307,-91.713577],[43.123199,-91.71389],[43.123562,-91.714523],[43.12381,-91.714928],[43.12405,-91.71524],[43.12426,-91.715538],[43.125,-91.716454],[43.125408,-91.716927],[43.125999,-91.717628],[43.126759,-91.718536],[43.127602,-91.719551],[43.127892,-91.719887],[43.128559,-91.720703],[43.129959,-91.722382],[43.131569,-91.724297],[43.132359,-91.725258],[43.132702,-91.7257],[43.13295,-91.726089],[43.13316,-91.726463],[43.133411,-91.726967],[43.133591,-91.727371],[43.133739,-91.727753],[43.1339,-91.728203],[43.134041,-91.728722],[43.134232,-91.729446],[43.134991,-91.73259],[43.13501,-91.732674],[43.13512,-91.733063],[43.135231,-91.733482],[43.13541,-91.733994],[43.13559,-91.734444],[43.13567,-91.734619],[43.135891,-91.735123],[43.136101,-91.735512],[43.136608,-91.73642],[43.13689,-91.736954],[43.138611,-91.739937],[43.139488,-91.741493],[43.13958,-91.741653],[43.139721,-91.74192],[43.139851,-91.742157],[43.140011,-91.742538],[43.14011,-91.74279],[43.14016,-91.742897],[43.14027,-91.743233],[43.140339,-91.743446],[43.140591,-91.744263],[43.140839,-91.745117],[43.141369,-91.746872],[43.142281,-91.750031],[43.14246,-91.750633],[43.142719,-91.751503],[43.14275,-91.751663],[43.142769,-91.751793],[43.14278,-91.751823],[43.14283,-91.754173],[43.142849,-91.7547],[43.142872,-91.7556],[43.142891,-91.756538],[43.142948,-91.756813],[43.14299,-91.757019],[43.14323,-91.757736],[43.143681,-91.759003],[43.143829,-91.759483],[43.143978,-91.759949],[43.14431,-91.760872],[43.14444,-91.761253],[43.144669,-91.761917],[43.145081,-91.763077],[43.145538,-91.76442],[43.145691,-91.764893],[43.14616,-91.766319],[43.146301,-91.766724],[43.146599,-91.767563],[43.146851,-91.76825],[43.146931,-91.768501],[43.14695,-91.768631],[43.146969,-91.768806],[43.146969,-91.76947],[43.146961,-91.77037],[43.146961,-91.771347],[43.14695,-91.771942],[43.14695,-91.772827],[43.146938,-91.773369],[43.146938,-91.77372],[43.146938,-91.774483],[43.146938,-91.77597],[43.146931,-91.776787],[43.147591,-91.776787],[43.148102,-91.776787],[43.15052,-91.776802],[43.15078,-91.776802],[43.15192,-91.776787],[43.154831,-91.776802],[43.156071,-91.776772],[43.156502,-91.776756],[43.157242,-91.776604],[43.157791,-91.77636],[43.158421,-91.775993],[43.159088,-91.775482],[43.16003,-91.774841],[43.16082,-91.774529],[43.161659,-91.774391],[43.161678,-91.774391],[43.162479,-91.774429],[43.163231,-91.774628],[43.163898,-91.774963],[43.16444,-91.775238],[43.165218,-91.775787],[43.166012,-91.776604],[43.166389,-91.777122],[43.16684,-91.777901],[43.16721,-91.778877],[43.167389,-91.77951],[43.167542,-91.780273],[43.167961,-91.78315],[43.168289,-91.784843],[43.168678,-91.786583],[43.1689,-91.787552],[43.169529,-91.790283],[43.170029,-91.792473],[43.170422,-91.794258],[43.170879,-91.796371],[43.17107,-91.797531],[43.1712,-91.79863],[43.171299,-91.799423],[43.171589,-91.801567],[43.172169,-91.804192],[43.172939,-91.807587],[43.173241,-91.80883],[43.17342,-91.80954],[43.173801,-91.810623],[43.17458,-91.812508],[43.17466,-91.812714],[43.174728,-91.812866],[43.174999,-91.81353],[43.175259,-91.814293],[43.17561,-91.815773],[43.17572,-91.816277],[43.175949,-91.817261],[43.176151,-91.818153],[43.176369,-91.819077],[43.176651,-91.82029],[43.17688,-91.82132],[43.177132,-91.822342],[43.1772,-91.822731],[43.177299,-91.823242],[43.177368,-91.824097],[43.177399,-91.824463],[43.177368,-91.826088],[43.177361,-91.827431],[43.17746,-91.829079],[43.17754,-91.829773],[43.17765,-91.830353],[43.178059,-91.832558],[43.17828,-91.833618],[43.17836,-91.834084],[43.178551,-91.835136],[43.178799,-91.83654],[43.179279,-91.839104],[43.179352,-91.839493],[43.179451,-91.840073],[43.179562,-91.841118],[43.179588,-91.84201],[43.179588,-91.843063],[43.179588,-91.843651],[43.1796,-91.844482],[43.179611,-91.844597],[43.179691,-91.84536],[43.179821,-91.845963],[43.179852,-91.846123],[43.180309,-91.84761],[43.180679,-91.84877],[43.18084,-91.849457],[43.180851,-91.849564],[43.181019,-91.850929],[43.180988,-91.853149],[43.181061,-91.854042],[43.18116,-91.854874],[43.181431,-91.857651],[43.18153,-91.858521],[43.181549,-91.858627],[43.181629,-91.859238],[43.181702,-91.859497],[43.181751,-91.859673],[43.181999,-91.860451],[43.18214,-91.860947],[43.182461,-91.862],[43.182468,-91.862106],[43.182598,-91.863403],[43.18264,-91.86377],[43.182709,-91.864609],[43.182911,-91.864571],[43.18314,-91.864517],[43.183331,-91.864487],[43.18354,-91.864449],[43.183651,-91.864433],[43.184059,-91.864342],[43.18449,-91.864258],[43.18494,-91.864166],[43.185299,-91.86409],[43.18536,-91.864082],[43.18615,-91.863983],[43.186989,-91.863998],[43.187511,-91.86412],[43.18782,-91.86422],[43.188099,-91.864342],[43.188461,-91.864517],[43.18848,-91.864517],[43.188759,-91.864723],[43.18919,-91.865021],[43.18951,-91.865311],[43.189751,-91.865547],[43.190041,-91.865913],[43.190441,-91.86647],[43.190609,-91.866699],[43.190701,-91.866821],[43.190868,-91.867058],[43.19109,-91.867378],[43.19207,-91.868881],[43.192501,-91.869507],[43.193001,-91.870216],[43.193489,-91.870941],[43.193859,-91.871536],[43.19426,-91.87207],[43.19458,-91.872452],[43.194851,-91.872742],[43.19516,-91.873001],[43.195469,-91.873222],[43.196331,-91.873718],[43.196819,-91.873978],[43.197731,-91.874474],[43.198479,-91.87487],[43.1987,-91.874992],[43.199131,-91.875198],[43.20018,-91.875732],[43.201111,-91.876244],[43.201988,-91.876694],[43.20322,-91.877312],[43.203491,-91.877434],[43.203548,-91.877449],[43.203911,-91.877609],[43.205009,-91.877998],[43.205299,-91.878113],[43.205742,-91.878273],[43.206619,-91.878601],[43.20752,-91.878922],[43.207981,-91.879013],[43.208172,-91.879044],[43.208389,-91.879044],[43.20924,-91.879021],[43.209679,-91.878937],[43.209789,-91.878906],[43.210129,-91.878838],[43.211029,-91.878433],[43.211559,-91.878098],[43.212238,-91.877548],[43.212311,-91.877472],[43.212769,-91.876984],[43.21352,-91.876129],[43.213982,-91.87561],[43.214241,-91.875343],[43.214661,-91.875008],[43.214939,-91.874786],[43.21534,-91.874527],[43.21571,-91.874336],[43.215778,-91.874313],[43.216331,-91.874077],[43.216702,-91.873962],[43.21714,-91.873863],[43.217419,-91.873833],[43.219589,-91.873756],[43.22345,-91.873749],[43.2239,-91.873741],[43.224331,-91.873703],[43.224701,-91.87365],[43.225189,-91.873543],[43.225491,-91.873444],[43.225769,-91.873337],[43.226139,-91.873169],[43.226761,-91.872757],[43.22681,-91.872726],[43.2271,-91.872498],[43.228371,-91.871323],[43.22876,-91.870979],[43.22934,-91.870407],[43.229931,-91.869827],[43.2304,-91.869392],[43.230949,-91.868896],[43.23156,-91.868294],[43.231979,-91.867867],[43.232471,-91.867378],[43.233101,-91.866814],[43.2337,-91.866226],[43.234051,-91.865852],[43.234211,-91.865677],[43.23473,-91.865051],[43.235359,-91.864311],[43.236259,-91.863167],[43.237549,-91.861526],[43.23814,-91.860809],[43.238899,-91.859894],[43.239559,-91.859039],[43.24041,-91.857971],[43.24094,-91.857307],[43.241169,-91.857033],[43.242321,-91.855629],[43.242641,-91.855171],[43.242962,-91.854607],[43.24337,-91.853844],[43.24371,-91.853142],[43.243961,-91.852493],[43.244129,-91.851952],[43.244228,-91.851509],[43.244671,-91.849731],[43.24506,-91.848007],[43.24522,-91.847237],[43.245331,-91.84687],[43.24538,-91.846733],[43.245548,-91.846283],[43.245819,-91.84568],[43.246262,-91.844887],[43.246552,-91.84449],[43.24659,-91.844437],[43.24707,-91.843887],[43.247089,-91.843857],[43.24757,-91.843483],[43.248428,-91.842827],[43.25,-91.841637],[43.250481,-91.841293],[43.251221,-91.840721],[43.252331,-91.83992],[43.25338,-91.839188],[43.253551,-91.839081],[43.25367,-91.838997],[43.254021,-91.838852],[43.254372,-91.838707],[43.25489,-91.838516],[43.255169,-91.838448],[43.255249,-91.838417],[43.255428,-91.838387],[43.25618,-91.838303],[43.256248,-91.838287],[43.257462,-91.838219],[43.258148,-91.838181],[43.25819,-91.838181],[43.25824,-91.838181],[43.258381,-91.838173],[43.25898,-91.838127],[43.259521,-91.838081],[43.259811,-91.838043],[43.260139,-91.837967],[43.26049,-91.837883],[43.260811,-91.837784],[43.26112,-91.837669],[43.26144,-91.837517],[43.261841,-91.837334],[43.26231,-91.837029],[43.262821,-91.836678],[43.263649,-91.83609],[43.2649,-91.83519],[43.265331,-91.834877],[43.266079,-91.834351],[43.266449,-91.834091],[43.26733,-91.833458],[43.2696,-91.831833],[43.270039,-91.831451],[43.27026,-91.831238],[43.270481,-91.830978],[43.270699,-91.830704],[43.27092,-91.830383],[43.27108,-91.830116],[43.271179,-91.829933],[43.271271,-91.829773],[43.27142,-91.829468],[43.27161,-91.829033],[43.271999,-91.828079],[43.272301,-91.827347],[43.272709,-91.826439],[43.273651,-91.824188],[43.27409,-91.82309],[43.274441,-91.822281],[43.274448,-91.82225],[43.274529,-91.822067],[43.274891,-91.821167],[43.27623,-91.817993],[43.27737,-91.815208],[43.277599,-91.814697],[43.27776,-91.814392],[43.277939,-91.814087],[43.278648,-91.812988],[43.279011,-91.812477],[43.27961,-91.811592],[43.280231,-91.810638],[43.28051,-91.81015],[43.28054,-91.810097],[43.280842,-91.809441],[43.281101,-91.808723],[43.281288,-91.807983],[43.281391,-91.807533],[43.281609,-91.806732],[43.281811,-91.806091],[43.281979,-91.805687],[43.282249,-91.805161],[43.282349,-91.80497],[43.28241,-91.804893],[43.28297,-91.804207],[43.283249,-91.803963],[43.283489,-91.80378],[43.283791,-91.803574],[43.284142,-91.803413],[43.28418,-91.803391],[43.284519,-91.803261],[43.284649,-91.80323],[43.28511,-91.803162],[43.28545,-91.803162],[43.285801,-91.803177],[43.286049,-91.803238],[43.28669,-91.80336],[43.28783,-91.803627],[43.28841,-91.803787],[43.28933,-91.804077],[43.289879,-91.804314],[43.290771,-91.804688],[43.290951,-91.804802],[43.29108,-91.804878],[43.291359,-91.805077],[43.291592,-91.805191],[43.291981,-91.805428],[43.292061,-91.805481],[43.29269,-91.805946],[43.29306,-91.806236],[43.293499,-91.80658],[43.294552,-91.807587],[43.294991,-91.808022],[43.295078,-91.808128],[43.29541,-91.808517],[43.295589,-91.808708],[43.295811,-91.808937],[43.296478,-91.809631],[43.297009,-91.810188],[43.297298,-91.810493],[43.29739,-91.810577],[43.297569,-91.81076],[43.298,-91.811234],[43.298141,-91.811363],[43.29847,-91.811684],[43.29863,-91.811813],[43.29892,-91.81205],[43.299019,-91.812134],[43.29945,-91.812492],[43.299492,-91.812523],[43.29987,-91.812767],[43.30014,-91.812973],[43.30032,-91.813103],[43.300621,-91.813301],[43.30069,-91.813347],[43.30098,-91.813522],[43.3013,-91.813683],[43.302101,-91.814049],[43.302608,-91.81427],[43.30344,-91.814598],[43.30418,-91.814842],[43.304531,-91.814941],[43.30479,-91.815002],[43.3055,-91.815109],[43.305981,-91.81517],[43.30629,-91.815193],[43.306419,-91.815208],[43.307018,-91.815231],[43.307449,-91.815224],[43.307899,-91.815193],[43.308392,-91.815132],[43.30909,-91.815071],[43.312489,-91.814713],[43.312901,-91.814667],[43.313969,-91.814568],[43.31456,-91.814484],[43.314861,-91.81443],[43.31554,-91.814369],[43.31628,-91.814308],[43.317879,-91.81414],[43.320381,-91.813889],[43.321678,-91.813759],[43.323212,-91.81356],[43.32444,-91.813454],[43.325821,-91.813347],[43.327171,-91.813164],[43.327679,-91.81311],[43.329708,-91.812897],[43.332432,-91.81263],[43.33374,-91.812469],[43.336681,-91.812157],[43.337231,-91.812103],[43.337818,-91.812019],[43.338181,-91.811996],[43.338531,-91.811943],[43.338959,-91.811836],[43.339359,-91.811722],[43.33979,-91.811577],[43.340092,-91.81144],[43.340382,-91.811317],[43.341091,-91.810921],[43.34174,-91.810493],[43.342232,-91.810097],[43.342548,-91.809837],[43.3428,-91.809608],[43.34314,-91.809258],[43.34343,-91.80896],[43.34412,-91.808189],[43.344601,-91.807701],[43.344849,-91.807419],[43.34507,-91.807228],[43.345112,-91.80719],[43.345482,-91.8069],[43.346081,-91.806473],[43.346378,-91.806297],[43.34655,-91.806198],[43.346821,-91.806084],[43.347092,-91.805962],[43.34726,-91.805901],[43.347549,-91.805809],[43.34787,-91.805717],[43.348331,-91.805634],[43.348721,-91.805557],[43.349281,-91.805481],[43.35025,-91.805367],[43.353081,-91.804947],[43.353958,-91.804817],[43.355099,-91.80468],[43.356178,-91.804581],[43.356689,-91.804558],[43.356899,-91.80455],[43.357128,-91.804527],[43.3577,-91.804482],[43.36039,-91.804359],[43.36121,-91.804283],[43.361961,-91.804237],[43.3629,-91.80423],[43.3633,-91.804283],[43.363739,-91.804352],[43.364208,-91.804451],[43.36475,-91.804611],[43.365009,-91.80471],[43.365211,-91.804787],[43.365479,-91.804916],[43.365662,-91.805008],[43.365891,-91.805138],[43.366451,-91.805473],[43.366871,-91.805779],[43.367119,-91.805977],[43.367519,-91.806328],[43.367741,-91.806534],[43.36797,-91.806763],[43.369518,-91.808403],[43.37009,-91.80899],[43.371281,-91.810242],[43.371799,-91.810783],[43.372742,-91.811783],[43.373039,-91.812103],[43.373421,-91.812508],[43.374981,-91.814087],[43.37569,-91.814857],[43.378891,-91.81823],[43.38047,-91.819893],[43.381939,-91.821426],[43.384838,-91.824463],[43.386452,-91.826187],[43.387749,-91.827553],[43.388939,-91.828781],[43.389301,-91.82917],[43.389938,-91.829857],[43.390141,-91.83007],[43.390549,-91.83049],[43.391411,-91.831383],[43.391731,-91.831703],[43.39217,-91.832176],[43.392681,-91.832741],[43.393169,-91.833237],[43.3937,-91.833817],[43.39436,-91.834641],[43.394699,-91.835114],[43.394951,-91.835449],[43.395741,-91.8367],[43.397331,-91.839394],[43.399021,-91.842262],[43.399979,-91.84388],[43.400669,-91.845032],[43.401211,-91.845947],[43.40181,-91.846977],[43.403198,-91.849327],[43.403938,-91.850594],[43.404541,-91.851608],[43.404781,-91.85202],[43.405159,-91.852592],[43.405701,-91.853279],[43.406139,-91.853752],[43.40662,-91.854187],[43.407051,-91.854553],[43.407471,-91.854843],[43.409611,-91.856239],[43.409901,-91.856407],[43.410488,-91.856796],[43.410629,-91.85688],[43.41293,-91.858353],[43.413361,-91.858582],[43.413479,-91.858643],[43.41428,-91.858963],[43.414349,-91.858994],[43.414761,-91.859077],[43.415279,-91.859177],[43.415619,-91.859207],[43.416222,-91.85923],[43.420502,-91.859222],[43.421329,-91.859207],[43.42276,-91.859238],[43.424122,-91.859238],[43.42482,-91.85923],[43.426231,-91.859222],[43.426449,-91.859253],[43.427521,-91.859337],[43.428638,-91.85952],[43.42926,-91.859627],[43.430519,-91.859863],[43.430759,-91.859901],[43.431629,-91.860046],[43.43235,-91.860184],[43.433491,-91.860397],[43.435768,-91.860817],[43.437302,-91.861076],[43.438011,-91.861198],[43.438141,-91.861221],[43.438519,-91.861267],[43.438911,-91.861328],[43.4394,-91.861412],[43.439621,-91.861443],[43.440681,-91.861603],[43.441521,-91.861717],[43.442429,-91.861877],[43.442551,-91.861893],[43.443081,-91.861961],[43.444111,-91.862106],[43.444511,-91.862183],[43.445202,-91.862267],[43.445782,-91.862373],[43.44619,-91.862411],[43.446579,-91.862473],[43.446751,-91.862503],[43.447189,-91.862587],[43.44735,-91.862633],[43.447811,-91.862778],[43.448269,-91.862984],[43.44873,-91.863197],[43.449421,-91.86364],[43.449661,-91.863838],[43.450069,-91.864166],[43.450569,-91.864662],[43.450661,-91.864761],[43.45192,-91.866302],[43.452412,-91.866882],[43.45282,-91.867393],[43.453209,-91.867821],[43.453602,-91.868202],[43.454029,-91.868523],[43.45433,-91.868721],[43.454769,-91.86898],[43.45525,-91.869186],[43.455669,-91.869324],[43.456032,-91.869431],[43.456409,-91.869499],[43.45694,-91.869537],[43.457439,-91.869583],[43.457588,-91.869583],[43.45776,-91.869583],[43.458031,-91.869583],[43.459148,-91.869591],[43.45953,-91.869591],[43.460609,-91.869629],[43.4617,-91.86969],[43.463131,-91.869759],[43.464809,-91.869797],[43.466209,-91.869812],[43.4673,-91.869881],[43.468639,-91.869926],[43.470329,-91.869957],[43.472401,-91.870041],[43.472759,-91.870064],[43.473381,-91.870079],[43.480659,-91.8703],[43.481178,-91.870323],[43.48175,-91.870338],[43.483601,-91.870377],[43.484951,-91.870438],[43.485561,-91.870461],[43.48658,-91.870506],[43.487129,-91.870522],[43.488239,-91.870613],[43.488499,-91.870621],[43.489849,-91.870682],[43.490452,-91.870697],[43.493309,-91.870888],[43.493919,-91.870903],[43.496738,-91.871063],[43.49741,-91.871094],[43.498032,-91.871101],[43.499561,-91.871132],[43.499722,-91.871132],[43.500721,-91.871117],[43.50666,-91.871193],[43.507229,-91.871117],[43.5079,-91.870934],[43.508709,-91.870613],[43.50988,-91.87011],[43.51083,-91.869873],[43.51181,-91.869766],[43.515041,-91.869728],[43.515091,-91.877609],[43.515079,-91.884689],[43.515129,-91.889664],[43.51516,-91.890823],[43.515282,-91.891632],[43.51543,-91.89241],[43.51569,-91.893242],[43.516041,-91.894272],[43.520061,-91.905167],[43.52042,-91.906036],[43.520882,-91.906937],[43.522461,-91.909332],[43.522701,-91.909721],[43.523418,-91.910797],[43.524139,-91.911591],[43.524818,-91.912163],[43.528252,-91.914177],[43.5289,-91.914597],[43.529381,-91.915031],[43.529739,-91.91539],[43.530121,-91.915894],[43.53051,-91.916473],[43.53088,-91.917213],[43.5312,-91.918037],[43.531521,-91.919167],[43.532452,-91.924477],[43.5327,-91.925987],[43.532829,-91.926987],[43.532871,-91.927567],[43.532921,-91.928253],[43.532928,-91.928947],[43.53294,-91.929626],[43.53294,-91.930817],[43.532959,-91.934486],[43.532959,-91.937798],[43.533031,-91.938789],[43.533138,-91.939621],[43.53336,-91.940536],[43.53363,-91.941277],[43.53392,-91.941994],[43.535801,-91.946037],[43.536171,-91.946793],[43.536591,-91.947433],[43.53709,-91.947929],[43.539539,-91.950172],[43.54406,-91.954353],[43.551071,-91.960854],[43.55196,-91.961647],[43.552601,-91.962372],[43.55307,-91.96312],[43.5536,-91.964203],[43.553989,-91.965393],[43.55426,-91.966728],[43.55479,-91.96978],[43.555099,-91.972092],[43.555161,-91.973091],[43.55518,-91.986076],[43.55518,-91.989853],[43.555141,-92.005463],[43.55518,-92.006264],[43.555248,-92.006912],[43.555389,-92.007477],[43.555592,-92.008148],[43.555779,-92.008591],[43.556099,-92.009171],[43.556419,-92.009598],[43.556759,-92.009872],[43.557201,-92.009987],[43.558472,-92.010002],[43.56015,-92.009972],[43.563339,-92.009911],[43.56567,-92.009842],[43.570992,-92.009789],[43.57476,-92.009781],[43.57906,-92.009697],[43.584259,-92.009773],[43.587372,-92.009682],[43.594002,-92.009827],[43.59824,-92.009842],[43.600311,-92.009857],[43.605431,-92.009811],[43.607231,-92.009842],[43.607979,-92.010002],[43.608608,-92.010277],[43.609379,-92.010742],[43.610031,-92.011307],[43.61068,-92.012108],[43.612709,-92.014832],[43.61409,-92.016693],[43.614922,-92.01783],[43.615631,-92.01857],[43.616299,-92.019073],[43.61694,-92.019447],[43.617561,-92.019653],[43.61824,-92.019783],[43.619129,-92.019798],[43.620121,-92.019791],[43.625568,-92.019707],[43.627071,-92.019814],[43.627659,-92.020012],[43.62833,-92.02037],[43.628819,-92.020737],[43.629501,-92.021347],[43.630402,-92.022461],[43.631031,-92.023232],[43.631779,-92.023911],[43.632431,-92.024361],[43.63316,-92.024673],[43.633961,-92.024841],[43.635719,-92.024918],[43.638618,-92.024948],[43.641392,-92.025017],[43.64497,-92.025017],[43.646,-92.025009],[43.650429,-92.024986],[43.652199,-92.024963],[43.655529,-92.024933],[43.656139,-92.02494],[43.65675,-92.02507],[43.657452,-92.025337],[43.658112,-92.025681],[43.658772,-92.02623],[43.65934,-92.026817],[43.65992,-92.027611],[43.660412,-92.028511],[43.66206,-92.03215],[43.66256,-92.033234],[43.662891,-92.033951],[43.665371,-92.03952],[43.665771,-92.040421],[43.666061,-92.041298],[43.666271,-92.042267],[43.666389,-92.043381],[43.666409,-92.044594],[43.666351,-92.050613],[43.666389,-92.051666],[43.666481,-92.052544],[43.666641,-92.053436],[43.667938,-92.058212],[43.668091,-92.058731],[43.66824,-92.059189],[43.668419,-92.059608],[43.66861,-92.060028],[43.668819,-92.06041],[43.669022,-92.060738],[43.669201,-92.06102],[43.66946,-92.061363],[43.67025,-92.062462],[43.670361,-92.062607],[43.67107,-92.06353],[43.671749,-92.064468],[43.67231,-92.065269],[43.672729,-92.066116],[43.672939,-92.066757],[43.673191,-92.068329],[43.674122,-92.076569],[43.674301,-92.077362],[43.674591,-92.078148],[43.67485,-92.07885],[43.675091,-92.079613],[43.67522,-92.08049],[43.67535,-92.081879],[43.675449,-92.083313],[43.675579,-92.084671],[43.675709,-92.085228],[43.675911,-92.085762],[43.676151,-92.086197],[43.6763,-92.086403],[43.676552,-92.086723],[43.677151,-92.087448],[43.67746,-92.087852],[43.678329,-92.089058],[43.679131,-92.090027],[43.679489,-92.090439],[43.679932,-92.090828],[43.68055,-92.091171],[43.68116,-92.091316],[43.68166,-92.091331],[43.682339,-92.09127],[43.682999,-92.091293],[43.683651,-92.091591],[43.684769,-92.092659],[43.685638,-92.093658],[43.686661,-92.095192],[43.68718,-92.095688],[43.688419,-92.096649],[43.689491,-92.097153],[43.691219,-92.098167],[43.694092,-92.099609],[43.698471,-92.101929],[43.699532,-92.10244],[43.701061,-92.103218],[43.701809,-92.103699],[43.702209,-92.104103],[43.705002,-92.107399],[43.706268,-92.108887],[43.707191,-92.109947],[43.70874,-92.111877],[43.709549,-92.112999],[43.712151,-92.117012],[43.712688,-92.117638],[43.71505,-92.120117],[43.718922,-92.124077],[43.720169,-92.125214],[43.72234,-92.126709],[43.725109,-92.128601],[43.725891,-92.12928],[43.726299,-92.12973],[43.72673,-92.130272],[43.729019,-92.133087],[43.732899,-92.137413],[43.733688,-92.138206],[43.734299,-92.138634],[43.734909,-92.138939],[43.7355,-92.139137],[43.736141,-92.139259],[43.737862,-92.13929],[43.739441,-92.139313],[43.741001,-92.13932],[43.74155,-92.139168],[43.742069,-92.138924],[43.742531,-92.138512],[43.742859,-92.1381],[43.743931,-92.136467],[43.744362,-92.13588],[43.744518,-92.135628],[43.744961,-92.135063],[43.745361,-92.13472],[43.745621,-92.134529],[43.74575,-92.134491],[43.745892,-92.134407],[43.746132,-92.1343],[43.746441,-92.134232],[43.746868,-92.134193],[43.747799,-92.134201],[43.756241,-92.134193],[43.76078,-92.13414],[43.76321,-92.13414],[43.76704,-92.134117],[43.767601,-92.134087],[43.768082,-92.13398],[43.76873,-92.133797],[43.77478,-92.131653],[43.777809,-92.130547],[43.77845,-92.130417],[43.778881,-92.13044],[43.779209,-92.130547],[43.77961,-92.130692],[43.780102,-92.130951],[43.78051,-92.131348],[43.781361,-92.132378],[43.781681,-92.132698],[43.782082,-92.132927],[43.78241,-92.133034],[43.78278,-92.133087],[43.783161,-92.13308],[43.78352,-92.13298],[43.78405,-92.132767],[43.784561,-92.132507],[43.784939,-92.132446],[43.785259,-92.1325],[43.785568,-92.132622],[43.785919,-92.13282],[43.78643,-92.13308],[43.786781,-92.133163],[43.789742,-92.133636],[43.79068,-92.133751],[43.791,-92.133751],[43.79134,-92.133682],[43.792229,-92.133362],[43.794762,-92.13237],[43.795341,-92.132133],[43.795811,-92.131828],[43.796268,-92.131378],[43.796612,-92.130898],[43.79744,-92.129784],[43.79776,-92.129478],[43.798119,-92.129204],[43.798538,-92.128998],[43.799042,-92.128883],[43.800709,-92.128777],[43.80159,-92.128754],[43.80212,-92.12886],[43.802608,-92.129066],[43.80304,-92.129372],[43.803429,-92.129807],[43.803768,-92.130341],[43.804531,-92.132423],[43.804859,-92.133163],[43.805199,-92.13369],[43.805569,-92.134071],[43.80616,-92.134598],[43.80685,-92.135117],[43.80743,-92.135391],[43.80846,-92.135727],[43.809029,-92.135887],[43.809422,-92.13607],[43.809952,-92.136597],[43.811062,-92.137917],[43.81184,-92.138634],[43.812729,-92.13916],[43.813499,-92.139557],[43.81422,-92.139793],[43.815022,-92.139954],[43.815632,-92.139977],[43.81633,-92.139908],[43.817009,-92.139793],[43.817989,-92.139641],[43.818439,-92.139587],[43.819351,-92.139511],[43.819801,-92.139633],[43.820221,-92.139832],[43.820629,-92.140106],[43.821041,-92.140411],[43.82198,-92.14138],[43.822369,-92.14167],[43.822849,-92.141907],[43.823299,-92.142014],[43.82365,-92.142067],[43.82383,-92.142067],[43.824451,-92.142113],[43.825191,-92.14222],[43.825741,-92.142387],[43.826279,-92.142593],[43.826771,-92.142937],[43.827202,-92.143288],[43.827572,-92.143677],[43.827969,-92.144257],[43.828331,-92.144867],[43.82906,-92.14682],[43.82935,-92.147583],[43.829708,-92.148598],[43.83049,-92.15062],[43.831341,-92.152527],[43.8326,-92.155373],[43.83289,-92.156311],[43.833141,-92.15731],[43.833241,-92.158257],[43.833248,-92.159897],[43.833241,-92.161392],[43.833271,-92.163696],[43.83334,-92.164383],[43.8335,-92.164993],[43.833649,-92.165489],[43.833851,-92.165939],[43.834068,-92.166382],[43.83485,-92.167793],[43.836201,-92.170326],[43.837158,-92.17218],[43.837669,-92.173157],[43.837971,-92.173943],[43.838089,-92.174393],[43.838181,-92.174797],[43.83823,-92.175209],[43.838268,-92.175583],[43.83844,-92.178589],[43.838501,-92.179169],[43.83852,-92.179337],[43.838581,-92.17971],[43.83873,-92.180267],[43.83913,-92.181099],[43.839951,-92.182114],[43.840179,-92.182419],[43.84108,-92.183594],[43.841862,-92.184433],[43.842442,-92.185143],[43.84333,-92.186249],[43.84407,-92.187134],[43.844799,-92.188026],[43.845558,-92.188942],[43.84631,-92.189827],[43.84708,-92.190773],[43.847649,-92.191513],[43.84856,-92.192459],[43.848919,-92.192589],[43.849251,-92.192627],[43.850109,-92.19265],[43.850868,-92.192642],[43.85165,-92.192528],[43.852638,-92.192528],[43.8536,-92.192711],[43.854191,-92.192909],[43.855129,-92.193176],[43.855148,-92.193192],[43.85577,-92.193573],[43.857811,-92.194427],[43.85902,-92.195007],[43.860619,-92.195763],[43.862148,-92.196358],[43.86348,-92.197304],[43.864449,-92.198433],[43.864658,-92.198662],[43.865631,-92.199768],[43.869308,-92.204727],[43.86945,-92.204918],[43.874081,-92.211403],[43.874298,-92.211723],[43.874969,-92.212128],[43.8769,-92.214661],[43.883049,-92.222717],[43.88409,-92.224007],[43.884281,-92.224358],[43.885441,-92.225731],[43.88702,-92.227219],[43.88768,-92.227539],[43.888248,-92.227448],[43.889851,-92.227524],[43.891079,-92.227577],[43.892231,-92.227837],[43.893261,-92.228737],[43.893661,-92.229263],[43.89785,-92.236198],[43.89843,-92.237312],[43.898891,-92.238449],[43.899601,-92.240402],[43.899799,-92.241249],[43.90012,-92.243263],[43.90041,-92.24514],[43.90081,-92.246452],[43.901119,-92.247147],[43.901821,-92.248367],[43.902569,-92.249512],[43.903759,-92.251343],[43.904751,-92.254761],[43.90625,-92.257797],[43.907478,-92.260292],[43.90786,-92.261047],[43.908871,-92.263138],[43.90934,-92.264107],[43.910851,-92.266411],[43.913441,-92.269531],[43.91518,-92.271439],[43.92067,-92.278778],[43.92506,-92.28508],[43.92762,-92.288727],[43.927689,-92.288834],[43.93301,-92.296463],[43.933571,-92.297852],[43.933781,-92.299599],[43.933819,-92.299896],[43.933891,-92.314003],[43.933979,-92.318802],[43.93441,-92.322411],[43.934399,-92.328407],[43.934429,-92.331886],[43.934509,-92.333328],[43.93478,-92.334908],[43.93504,-92.335876],[43.935371,-92.337387],[43.93565,-92.338699],[43.93615,-92.34095],[43.936611,-92.342827],[43.937191,-92.344559],[43.937431,-92.345192],[43.938061,-92.346657],[43.938419,-92.347427],[43.938808,-92.348053],[43.93922,-92.348557],[43.939678,-92.348969],[43.940048,-92.349228],[43.94104,-92.349838],[43.94162,-92.350166],[43.942001,-92.350319],[43.94244,-92.350487],[43.942741,-92.350601],[43.94305,-92.35067],[43.943359,-92.350708],[43.943722,-92.350754],[43.943871,-92.350769],[43.94429,-92.350777],[43.944698,-92.350807],[43.945179,-92.350922],[43.945438,-92.351013],[43.945591,-92.351067],[43.9459,-92.351227],[43.946259,-92.351448],[43.94659,-92.3517],[43.94688,-92.351936],[43.947121,-92.352203],[43.94735,-92.352501],[43.947571,-92.352814],[43.947811,-92.353172],[43.948059,-92.353569],[43.948231,-92.353844],[43.948639,-92.354362],[43.949009,-92.355003],[43.949959,-92.356422],[43.950039,-92.356537],[43.95039,-92.357048],[43.95055,-92.357277],[43.951191,-92.358307],[43.95153,-92.358818],[43.951752,-92.359161],[43.951809,-92.359253],[43.952011,-92.359589],[43.952209,-92.35994],[43.952469,-92.360489],[43.952999,-92.361671],[43.953159,-92.362106],[43.953419,-92.362953],[43.953911,-92.36454],[43.954762,-92.367317],[43.955441,-92.369591],[43.95594,-92.371246],[43.956268,-92.372253],[43.956589,-92.373169],[43.956909,-92.374077],[43.958241,-92.377724],[43.958832,-92.37941],[43.959591,-92.381477],[43.960178,-92.382912],[43.96069,-92.384064],[43.960991,-92.384727],[43.961269,-92.385307],[43.96172,-92.386192],[43.962261,-92.387177],[43.96302,-92.388557],[43.964191,-92.390511],[43.966202,-92.393997],[43.968491,-92.397911],[43.969391,-92.399467],[43.96991,-92.400368],[43.970482,-92.401497],[43.97076,-92.402184],[43.971062,-92.403053],[43.97139,-92.404221],[43.97163,-92.40522],[43.971828,-92.40641],[43.972061,-92.40834],[43.97216,-92.409187],[43.972851,-92.415314],[43.973331,-92.419449],[43.973831,-92.423653],[43.97411,-92.426247],[43.974178,-92.426773],[43.974388,-92.428543],[43.974548,-92.429871],[43.974789,-92.432266],[43.974838,-92.433449],[43.974819,-92.434433],[43.974701,-92.436172],[43.974529,-92.438507],[43.974442,-92.439774],[43.974419,-92.440041],[43.97419,-92.443359],[43.974018,-92.445541],[43.973881,-92.447403],[43.973881,-92.448471],[43.973911,-92.449059],[43.973961,-92.449623],[43.974049,-92.450317],[43.974129,-92.450821],[43.97427,-92.451477],[43.97467,-92.453293],[43.974861,-92.45414],[43.974972,-92.454628],[43.975311,-92.456123],[43.975689,-92.457878],[43.976639,-92.462059],[43.97665,-92.462143],[43.976871,-92.463112],[43.97718,-92.464531],[43.977631,-92.466293],[43.977718,-92.466507],[43.978119,-92.467529],[43.978531,-92.468269],[43.97924,-92.469421],[43.98019,-92.470871],[43.981041,-92.472183],[43.981571,-92.473],[43.982521,-92.474472],[43.983002,-92.475166],[43.983459,-92.475777],[43.98391,-92.476303],[43.984379,-92.476799],[43.984921,-92.477303],[43.985481,-92.477753],[43.986061,-92.478127],[43.986698,-92.478477],[43.98703,-92.478653],[43.987629,-92.478928],[43.98827,-92.479187],[43.988781,-92.479424],[43.989109,-92.479607],[43.989441,-92.47982],[43.98978,-92.480049],[43.990089,-92.480293],[43.990528,-92.480659],[43.99091,-92.48101],[43.991199,-92.481308],[43.992161,-92.482437],[43.99271,-92.483063],[43.993019,-92.48336],[43.993252,-92.483566],[43.993511,-92.483757],[43.993839,-92.484001],[43.994171,-92.484192],[43.99448,-92.484337],[43.9949,-92.484512],[43.99535,-92.484642],[43.99548,-92.484673],[43.99575,-92.484711],[43.996078,-92.484756],[43.996521,-92.484772],[43.99688,-92.484756],[43.997231,-92.484734],[43.99754,-92.48465],[43.998322,-92.484428],[43.999191,-92.484177],[44.002319,-92.483261],[44.005371,-92.48233],[44.005619,-92.482269],[44.00613,-92.482147],[44.006401,-92.482109],[44.006821,-92.482079],[44.007408,-92.482063],[44.007549,-92.482071],[44.007999,-92.482117],[44.008121,-92.48214],[44.008461,-92.482224],[44.00898,-92.482368],[44.009392,-92.482536],[44.009819,-92.48275],[44.01112,-92.483551],[44.012901,-92.484818],[44.015789,-92.486839],[44.0163,-92.487167],[44.016609,-92.487358],[44.01693,-92.487534],[44.017361,-92.487701],[44.01757,-92.48777],[44.018051,-92.487869],[44.01841,-92.487923],[44.018841,-92.487938],[44.01931,-92.487953],[44.02137,-92.487961],[44.02319,-92.487961],[44.02504,-92.487984],[44.027119,-92.488022],[44.029381,-92.488113],[44.029758,-92.488121],[44.030479,-92.488136],[44.030842,-92.488152],[44.031349,-92.488159],[44.032131,-92.488136],[44.032612,-92.488121],[44.033279,-92.488052],[44.034409,-92.487968],[44.035679,-92.487846],[44.03899,-92.487701],[44.039471,-92.487663],[44.041561,-92.487488],[44.042099,-92.487473],[44.042431,-92.48748],[44.042759,-92.487511],[44.043159,-92.487579],[44.043491,-92.487648],[44.043781,-92.487732],[44.04438,-92.487953],[44.044491,-92.487999],[44.044788,-92.488136],[44.045292,-92.488411],[44.04549,-92.488533],[44.04599,-92.488861],[44.04686,-92.489517],[44.048141,-92.490471],[44.04892,-92.491028],[44.050251,-92.491859],[44.050812,-92.492172],[44.05582,-92.495003],[44.057152,-92.495667],[44.061409,-92.497871],[44.06218,-92.498299],[44.06411,-92.499367],[44.068039,-92.501556],[44.068451,-92.501793],[44.071621,-92.503601],[44.0742,-92.505058],[44.076069,-92.506111],[44.078121,-92.507263],[44.079361,-92.50798],[44.07999,-92.508362],[44.081051,-92.508911],[44.081749,-92.509308],[44.0821,-92.509491],[44.082359,-92.509613],[44.082741,-92.509781],[44.083179,-92.509941],[44.083401,-92.51001],[44.083839,-92.510139],[44.084309,-92.510231],[44.084702,-92.510307],[44.085899,-92.51049],[44.08839,-92.510857],[44.091209,-92.511253],[44.093521,-92.511589],[44.094238,-92.511711],[44.0956,-92.511871],[44.096039,-92.511948],[44.097698,-92.512192],[44.098679,-92.512352],[44.09964,-92.512489],[44.09993,-92.512543],[44.10091,-92.512711],[44.102718,-92.513206],[44.105671,-92.514229],[44.1087,-92.515244],[44.108829,-92.515282],[44.11018,-92.515739],[44.111328,-92.516167],[44.112911,-92.516808],[44.114429,-92.517441],[44.117241,-92.518646],[44.118259,-92.519043],[44.119701,-92.519531],[44.12159,-92.520172],[44.1227,-92.520554],[44.123821,-92.520943],[44.124939,-92.521339],[44.129959,-92.523109],[44.131672,-92.523643],[44.133129,-92.524094],[44.134281,-92.524429],[44.136829,-92.525284],[44.139568,-92.526237],[44.144329,-92.527847],[44.145519,-92.528236],[44.14706,-92.528847],[44.148819,-92.529442],[44.149101,-92.529556],[44.14959,-92.529762],[44.14999,-92.529984],[44.150471,-92.530243],[44.150871,-92.530487],[44.15152,-92.530937],[44.151951,-92.531303],[44.15287,-92.53212],[44.15366,-92.532913],[44.154518,-92.533798],[44.15506,-92.534363],[44.15699,-92.536339],[44.16024,-92.539612],[44.16098,-92.540382],[44.16396,-92.543449],[44.16608,-92.545631],[44.166729,-92.54628],[44.16721,-92.546783],[44.16777,-92.54734],[44.168221,-92.54789],[44.168549,-92.548317],[44.168991,-92.549042],[44.169312,-92.549606],[44.169559,-92.55014],[44.1698,-92.55072],[44.170849,-92.553787],[44.17231,-92.557999],[44.172958,-92.559982],[44.173389,-92.561218],[44.17382,-92.562248],[44.174381,-92.563293],[44.17522,-92.564507],[44.176529,-92.566383],[44.177559,-92.567902],[44.179821,-92.571182],[44.180611,-92.572327],[44.18227,-92.574707],[44.183899,-92.576981],[44.18446,-92.577858],[44.184879,-92.578644],[44.185928,-92.580963],[44.1861,-92.581337],[44.18681,-92.582977],[44.18829,-92.586273],[44.189091,-92.588188],[44.19154,-92.593742],[44.194328,-92.600113],[44.194698,-92.600899],[44.19529,-92.602173],[44.19714,-92.6063],[44.199242,-92.610977],[44.199459,-92.611511],[44.200191,-92.61335],[44.200611,-92.614609],[44.200829,-92.615372],[44.200932,-92.615723],[44.201302,-92.6175],[44.20166,-92.619949],[44.202301,-92.625328],[44.202572,-92.627487],[44.202782,-92.629372],[44.202839,-92.629913],[44.2029,-92.630676],[44.202999,-92.631203],[44.203018,-92.631317],[44.203159,-92.631859],[44.203369,-92.632599],[44.20356,-92.633163],[44.2038,-92.633759],[44.203999,-92.634209],[44.204529,-92.635201],[44.204979,-92.635857],[44.2052,-92.636223],[44.206009,-92.6371],[44.20657,-92.637581],[44.20718,-92.638161],[44.207939,-92.638924],[44.20871,-92.639633],[44.209431,-92.640343],[44.209991,-92.640877],[44.2103,-92.641228],[44.21072,-92.641708],[44.21077,-92.641747],[44.21104,-92.642067],[44.211521,-92.642639],[44.212891,-92.64447],[44.213551,-92.64534],[44.213902,-92.645798],[44.214081,-92.646027],[44.214569,-92.64669],[44.21534,-92.647614],[44.21566,-92.647919],[44.2164,-92.648552],[44.217072,-92.649017],[44.21756,-92.649338],[44.217869,-92.649513],[44.219158,-92.650108],[44.219742,-92.650269],[44.22047,-92.650414],[44.221359,-92.650452],[44.223969,-92.650467],[44.224339,-92.650467],[44.238659,-92.650414],[44.245781,-92.650307],[44.24754,-92.650307],[44.249649,-92.650307],[44.249962,-92.650322],[44.253029,-92.650352],[44.255581,-92.650368],[44.261669,-92.650436],[44.26416,-92.650482],[44.264992,-92.650574],[44.266418,-92.651047],[44.266739,-92.651176],[44.2672,-92.651413],[44.267731,-92.651688],[44.26886,-92.652527],[44.272678,-92.656082],[44.274658,-92.658043],[44.275349,-92.658958],[44.275829,-92.659721],[44.27647,-92.660744],[44.27853,-92.664413],[44.280022,-92.667038],[44.280239,-92.667458],[44.281639,-92.669922],[44.28212,-92.670776],[44.2831,-92.672493],[44.283611,-92.673424],[44.284328,-92.674667],[44.284519,-92.675003],[44.285198,-92.676208],[44.285912,-92.677429],[44.286919,-92.679199],[44.287361,-92.679916],[44.28783,-92.680557],[44.288181,-92.680977],[44.288502,-92.681358],[44.28883,-92.681686],[44.28931,-92.682137],[44.290241,-92.682793],[44.290699,-92.683121],[44.291519,-92.683563],[44.29248,-92.68396],[44.29467,-92.684898],[44.298649,-92.686577],[44.30299,-92.688454],[44.304039,-92.688858],[44.305321,-92.689461],[44.30669,-92.690331],[44.30685,-92.690483],[44.307449,-92.690987],[44.307659,-92.6912],[44.308788,-92.692329],[44.309681,-92.693367],[44.310459,-92.694366],[44.31163,-92.695824],[44.31316,-92.697807],[44.314171,-92.699013],[44.316139,-92.701172],[44.316601,-92.701622],[44.31752,-92.702583],[44.31905,-92.704147],[44.320511,-92.705673],[44.32198,-92.707153],[44.322262,-92.707443],[44.322762,-92.707977],[44.323311,-92.708778],[44.323769,-92.709633],[44.324108,-92.710403],[44.324459,-92.711411],[44.325039,-92.713287],[44.3256,-92.714989],[44.326099,-92.71666],[44.326832,-92.718742],[44.327339,-92.720383],[44.327782,-92.721626],[44.328991,-92.724579],[44.329601,-92.726013],[44.330399,-92.727814],[44.331261,-92.729881],[44.332218,-92.732079],[44.33284,-92.733566],[44.334061,-92.736748],[44.334221,-92.737396],[44.334419,-92.738251],[44.334839,-92.740227],[44.335129,-92.741371],[44.335892,-92.744217],[44.336361,-92.745888],[44.33667,-92.746857],[44.337151,-92.748306],[44.337791,-92.750183],[44.338772,-92.752808],[44.33976,-92.755188],[44.340019,-92.755814],[44.341721,-92.759827],[44.34243,-92.761574],[44.342461,-92.761627],[44.34317,-92.76339],[44.344688,-92.766586],[44.347221,-92.771919],[44.347591,-92.772636],[44.347801,-92.773041],[44.348541,-92.774567],[44.3494,-92.775833],[44.350361,-92.777046],[44.352619,-92.779747],[44.35323,-92.780487],[44.355671,-92.78344],[44.356281,-92.784286],[44.357529,-92.786346],[44.359928,-92.790581],[44.364052,-92.797684],[44.364719,-92.798553],[44.365601,-92.799507],[44.36594,-92.799881],[44.36742,-92.801323],[44.368591,-92.802452],[44.369202,-92.803047],[44.369999,-92.803841],[44.371529,-92.805359],[44.372108,-92.805977],[44.372608,-92.806519],[44.375641,-92.810783],[44.377781,-92.813797],[44.3792,-92.815804],[44.379589,-92.81633],[44.37962,-92.816383],[44.382599,-92.820503],[44.383991,-92.82238],[44.388592,-92.828796],[44.390121,-92.830917],[44.392872,-92.834717],[44.396431,-92.839653],[44.397572,-92.841232],[44.399551,-92.843933],[44.40247,-92.848122],[44.40461,-92.851112],[44.406929,-92.854286],[44.41486,-92.865494],[44.418011,-92.870079],[44.418701,-92.871063],[44.42028,-92.87336],[44.421539,-92.875252],[44.421612,-92.875366],[44.421959,-92.875816],[44.422699,-92.876572],[44.423061,-92.876869],[44.423569,-92.877213],[44.42458,-92.877739],[44.426189,-92.87854],[44.426868,-92.878899],[44.42704,-92.87899],[44.427448,-92.879219],[44.429699,-92.880257],[44.430012,-92.880402],[44.43259,-92.881767],[44.433041,-92.882027],[44.434879,-92.883011],[44.43602,-92.883591],[44.437199,-92.8843],[44.437969,-92.884682],[44.43866,-92.88504],[44.439251,-92.885406],[44.43977,-92.885818],[44.440281,-92.886238],[44.441151,-92.887138],[44.446999,-92.893181],[44.449409,-92.895599],[44.450729,-92.896973],[44.451988,-92.898201],[44.455582,-92.901672],[44.45668,-92.902634],[44.457451,-92.903183],[44.457611,-92.903297],[44.457951,-92.903549],[44.45805,-92.903603],[44.458672,-92.903976],[44.459412,-92.904358],[44.459911,-92.904579],[44.46067,-92.904869],[44.461441,-92.905113],[44.465271,-92.906097],[44.467361,-92.906548],[44.47097,-92.907379],[44.471588,-92.907608],[44.47237,-92.907822],[44.47316,-92.907982],[44.47369,-92.908051],[44.47448,-92.908119],[44.47501,-92.908127],[44.475681,-92.908142],[44.47633,-92.908043],[44.480331,-92.90744],[44.48048,-92.907417],[44.48156,-92.907288],[44.481979,-92.907227],[44.483879,-92.907173],[44.48465,-92.907249],[44.485191,-92.907303],[44.485981,-92.907478],[44.486328,-92.907562],[44.49173,-92.908684],[44.492191,-92.908783],[44.492691,-92.908897],[44.493389,-92.909058],[44.496078,-92.909691],[44.496929,-92.910011],[44.49752,-92.91021],[44.49807,-92.910477],[44.499069,-92.911034],[44.499199,-92.91111],[44.499851,-92.911552],[44.500679,-92.912193],[44.501968,-92.913391],[44.502701,-92.914223],[44.502941,-92.914459],[44.503441,-92.915047],[44.50399,-92.915642],[44.505169,-92.916924],[44.506191,-92.917831],[44.50642,-92.917999],[44.50695,-92.918381],[44.507629,-92.918869],[44.50827,-92.919243],[44.5089,-92.919533],[44.509472,-92.919762],[44.509659,-92.91983],[44.512718,-92.920959],[44.513538,-92.921257],[44.516811,-92.922501],[44.517559,-92.922791],[44.518169,-92.923012],[44.518551,-92.923126],[44.51965,-92.923553],[44.520241,-92.92379],[44.520882,-92.924072],[44.521198,-92.924217],[44.52169,-92.924477],[44.522411,-92.924896],[44.523209,-92.925461],[44.524021,-92.926109],[44.525452,-92.927277],[44.5257,-92.92749],[44.528519,-92.929817],[44.53413,-92.934547],[44.53981,-92.939278],[44.54258,-92.941597],[44.54335,-92.942101],[44.544621,-92.942863],[44.54575,-92.943459],[44.550549,-92.945862],[44.556,-92.948578],[44.557758,-92.949478],[44.56308,-92.952103],[44.563759,-92.952538],[44.564331,-92.952927],[44.564869,-92.953362],[44.565418,-92.953903],[44.56628,-92.954842],[44.568211,-92.957207],[44.569229,-92.95842],[44.571362,-92.960999],[44.572269,-92.96212],[44.573189,-92.963333],[44.574162,-92.964737],[44.576248,-92.967781],[44.577271,-92.969231],[44.578548,-92.971107],[44.57909,-92.971901],[44.57946,-92.972458],[44.580189,-92.973488],[44.58054,-92.973984],[44.583061,-92.977623],[44.584339,-92.979523],[44.58543,-92.981087],[44.586102,-92.982033],[44.586712,-92.982773],[44.58765,-92.983719],[44.5886,-92.98455],[44.590031,-92.985672],[44.595638,-92.989937],[44.59726,-92.991013],[44.59845,-92.991676],[44.598801,-92.99189],[44.599751,-92.992401],[44.601219,-92.993217],[44.602402,-92.993813],[44.60302,-92.994102],[44.60387,-92.994339],[44.604469,-92.994469],[44.605019,-92.994553],[44.605961,-92.994598],[44.60857,-92.994583],[44.610661,-92.994614],[44.611549,-92.994614],[44.616039,-92.994637],[44.616428,-92.994637],[44.618328,-92.994629],[44.625191,-92.994583],[44.62664,-92.994537],[44.630249,-92.99453],[44.637451,-92.994461],[44.638371,-92.994453],[44.63903,-92.994469],[44.639599,-92.994537],[44.640381,-92.994682],[44.640961,-92.994888],[44.641232,-92.99498],[44.64151,-92.995102],[44.641819,-92.995247],[44.642521,-92.995628],[44.644699,-92.996948],[44.64986,-93.000076],[44.659161,-93.005722],[44.661491,-93.007133],[44.661869,-93.007347],[44.663361,-93.008278],[44.665051,-93.009247],[44.666271,-93.00985],[44.668468,-93.01091],[44.673691,-93.013451],[44.67741,-93.015213],[44.684792,-93.018784],[44.688129,-93.020393],[44.688911,-93.020798],[44.690331,-93.021477],[44.690979,-93.021797],[44.691971,-93.022278],[44.692612,-93.022583],[44.693851,-93.023163],[44.694061,-93.023262],[44.695221,-93.023842],[44.695381,-93.023918],[44.695831,-93.024117],[44.69648,-93.024437],[44.698059,-93.025177],[44.700199,-93.026237],[44.700939,-93.026611],[44.701721,-93.027039],[44.703369,-93.027946],[44.705311,-93.029037],[44.709171,-93.031273],[44.71262,-93.033279],[44.713089,-93.033562],[44.71347,-93.033791],[44.714008,-93.034088],[44.714409,-93.034317],[44.714748,-93.034477],[44.715111,-93.034607],[44.715549,-93.034767],[44.71595,-93.034866],[44.716221,-93.03492],[44.716438,-93.034927],[44.716881,-93.034973],[44.7216,-93.034958],[44.722061,-93.034958],[44.72345,-93.034943],[44.725681,-93.034866],[44.729641,-93.034882],[44.731701,-93.034843],[44.73539,-93.034782],[44.735981,-93.034767],[44.738461,-93.034737],[44.73885,-93.034721],[44.739151,-93.034714],[44.741871,-93.034668],[44.742519,-93.03463],[44.74358,-93.034607],[44.74548,-93.034592],[44.745972,-93.034576],[44.746189,-93.034569],[44.747299,-93.034447],[44.748619,-93.034264],[44.749062,-93.034187],[44.749741,-93.034081],[44.749989,-93.034042],[44.751621,-93.03389],[44.752762,-93.033859],[44.75391,-93.033867],[44.755341,-93.033859],[44.757,-93.033836],[44.75845,-93.033813],[44.75983,-93.033798],[44.76157,-93.033768],[44.762508,-93.033669],[44.763248,-93.033592],[44.763981,-93.033546],[44.764622,-93.033569],[44.764889,-93.033592],[44.7658,-93.033783],[44.76709,-93.034058],[44.767769,-93.034264],[44.768372,-93.034393],[44.768719,-93.034431],[44.76923,-93.034523],[44.77338,-93.034599],[44.774792,-93.034637],[44.775188,-93.034653],[44.775452,-93.034653],[44.77565,-93.03466],[44.779202,-93.034683],[44.77977,-93.034668],[44.78228,-93.03463],[44.783951,-93.034599],[44.786362,-93.034554],[44.787159,-93.034607],[44.788059,-93.034729],[44.7892,-93.035019],[44.78986,-93.035187],[44.790409,-93.035393],[44.791988,-93.036163],[44.79351,-93.036903],[44.794491,-93.037292],[44.795368,-93.037537],[44.796501,-93.037827],[44.796841,-93.037903],[44.797569,-93.038048],[44.799759,-93.038559],[44.80212,-93.039162],[44.803551,-93.039513],[44.804569,-93.039589],[44.80526,-93.039627],[44.80595,-93.039597],[44.807652,-93.039597],[44.809078,-93.039757],[44.810009,-93.040001],[44.81105,-93.040337],[44.811211,-93.040413],[44.811642,-93.040604],[44.81218,-93.04084],[44.812222,-93.040863],[44.813049,-93.041412],[44.81369,-93.041924],[44.814091,-93.042259],[44.814152,-93.042313],[44.814301,-93.042442],[44.814819,-93.042992],[44.815361,-93.043617],[44.815762,-93.044159],[44.81617,-93.044777],[44.816509,-93.045303],[44.818298,-93.048508],[44.818748,-93.049263],[44.819099,-93.049881],[44.82037,-93.052139],[44.820839,-93.052948],[44.821381,-93.053741],[44.82209,-93.054649],[44.8228,-93.055557],[44.823009,-93.055862],[44.823212,-93.056183],[44.82333,-93.056396],[44.823471,-93.056679],[44.823631,-93.056999],[44.823792,-93.057381],[44.824211,-93.058563],[44.824612,-93.059593],[44.824711,-93.059837],[44.8251,-93.060623],[44.82597,-93.062111],[44.828049,-93.065689],[44.828209,-93.065941],[44.82859,-93.066689],[44.82938,-93.068176],[44.830078,-93.069733],[44.83075,-93.071373],[44.831329,-93.072983],[44.83189,-93.074837],[44.832298,-93.076447],[44.832649,-93.077972],[44.832691,-93.078247],[44.832981,-93.079857],[44.833038,-93.08017],[44.833191,-93.081306],[44.833351,-93.082657],[44.833542,-93.084106],[44.833698,-93.085213],[44.833752,-93.085602],[44.83387,-93.086433],[44.83403,-93.08725],[44.83429,-93.088432],[44.834549,-93.089394],[44.834801,-93.090233],[44.83522,-93.091438],[44.835659,-93.092743],[44.836159,-93.094162],[44.836639,-93.095581],[44.837021,-93.096519],[44.837299,-93.097061],[44.837891,-93.098022],[44.839359,-93.09996],[44.83987,-93.100563],[44.840092,-93.100853],[44.84071,-93.101723],[44.841309,-93.102608],[44.84174,-93.103447],[44.842129,-93.104309],[44.842319,-93.105019],[44.842571,-93.105957],[44.842609,-93.106117],[44.843449,-93.109482],[44.843899,-93.111237],[44.84436,-93.113052],[44.844528,-93.113838],[44.844749,-93.115044],[44.844921,-93.116096],[44.84523,-93.118507],[44.84573,-93.122459],[44.845871,-93.12307],[44.846069,-93.123703],[44.84642,-93.12442],[44.846809,-93.125031],[44.847012,-93.125237],[44.847271,-93.125542],[44.84787,-93.126007],[44.848011,-93.126129],[44.84901,-93.126953],[44.85104,-93.128593],[44.85125,-93.128754],[44.8517,-93.129181],[44.852219,-93.129753],[44.852341,-93.12989],[44.85265,-93.13031],[44.853031,-93.130867],[44.85342,-93.131577],[44.853611,-93.131912],[44.854111,-93.133232],[44.85516,-93.135986],[44.855419,-93.136581],[44.858212,-93.14386],[44.858269,-93.14402],[44.85865,-93.14502],[44.859211,-93.146477],[44.85947,-93.147141],[44.859699,-93.147537],[44.859921,-93.147942],[44.860229,-93.148407],[44.860279,-93.148483],[44.860352,-93.148582],[44.860378,-93.148621],[44.860859,-93.149239],[44.861259,-93.149658],[44.8615,-93.149918],[44.861698,-93.150078],[44.861889,-93.150238],[44.862141,-93.150436],[44.862228,-93.150513],[44.86245,-93.150703],[44.863651,-93.15168],[44.864658,-93.15255],[44.865879,-93.153732],[44.866001,-93.153877],[44.866322,-93.154297],[44.867481,-93.155739],[44.867741,-93.156067],[44.867809,-93.156143],[44.86787,-93.156227],[44.86813,-93.156563],[44.868198,-93.156647],[44.868328,-93.156807],[44.868389,-93.156891],[44.868519,-93.157059],[44.868649,-93.157227],[44.868778,-93.157387],[44.8689,-93.157562],[44.868969,-93.157654],[44.86916,-93.157913],[44.869289,-93.158073],[44.869671,-93.158592],[44.869701,-93.15863],[44.87011,-93.159187],[44.870232,-93.15937],[44.87035,-93.159554],[44.87048,-93.159714],[44.871639,-93.161346],[44.871689,-93.16143],[44.871799,-93.161583],[44.87191,-93.161713],[44.872021,-93.16185],[44.872089,-93.161911],[44.87215,-93.16198],[44.872269,-93.162102],[44.872391,-93.162216],[44.87252,-93.162323],[44.87265,-93.16243],[44.872719,-93.162483],[44.872921,-93.162613],[44.873058,-93.162697],[44.87323,-93.162788],[44.87381,-93.163078],[44.87397,-93.163162],[44.8741,-93.163231],[44.874378,-93.163368],[44.874519,-93.163437],[44.87466,-93.163513],[44.874741,-93.163528],[44.874882,-93.163582],[44.875031,-93.163628],[44.875179,-93.163658],[44.875332,-93.163689],[44.875481,-93.163712],[44.875629,-93.163727],[44.875778,-93.163727],[44.875851,-93.163727],[44.875999,-93.163727],[44.87616,-93.163719],[44.876228,-93.163712],[44.876381,-93.163689],[44.876541,-93.163658],[44.877861,-93.163361],[44.87925,-93.163033],[44.87933,-93.163017],[44.87941,-93.163002],[44.879509,-93.162987],[44.879631,-93.162979],[44.879719,-93.162979],[44.87986,-93.162987],[44.87999,-93.162987],[44.880119,-93.163017],[44.880249,-93.163048],[44.880329,-93.163071],[44.880421,-93.163094],[44.880589,-93.163147],[44.88076,-93.163239],[44.88092,-93.16333],[44.881039,-93.163406],[44.881161,-93.16349],[44.881191,-93.163521],[44.881229,-93.163551],[44.88134,-93.163643],[44.88142,-93.163712],[44.881519,-93.163818],[44.881561,-93.163857],[44.88163,-93.16394],[44.88166,-93.163979],[44.881691,-93.164017],[44.88179,-93.164139],[44.88192,-93.164307],[44.88192,-93.16433],[44.881969,-93.164391],[44.882038,-93.16449],[44.882099,-93.164619],[44.882141,-93.164703],[44.88216,-93.164749],[44.882221,-93.164848],[44.882309,-93.165047],[44.882332,-93.165108],[44.88237,-93.165207],[44.882389,-93.165283],[44.88242,-93.165329],[44.882431,-93.165382],[44.8825,-93.165611],[44.882519,-93.165657],[44.88253,-93.165733],[44.882591,-93.165947],[44.88261,-93.166077],[44.882629,-93.166138],[44.882641,-93.166199],[44.882702,-93.166634],[44.883041,-93.169052],[44.883049,-93.169128],[44.88306,-93.169197],[44.88308,-93.169296],[44.883091,-93.16935],[44.88311,-93.169434],[44.883121,-93.169502],[44.88319,-93.169792],[44.883209,-93.169868],[44.883251,-93.170013],[44.883282,-93.170067],[44.883301,-93.170151],[44.88332,-93.170212],[44.883461,-93.170547],[44.883591,-93.170807],[44.883652,-93.170937],[44.88385,-93.171303],[44.88414,-93.171761],[44.88427,-93.171982],[44.884411,-93.172234],[44.884949,-93.173172],[44.885201,-93.173622],[44.885448,-93.17408],[44.886589,-93.176109],[44.887699,-93.178093],[44.88797,-93.178574],[44.888401,-93.179337],[44.888741,-93.179932],[44.890079,-93.182327],[44.890598,-93.183289],[44.890869,-93.183777],[44.890942,-93.183899],[44.89106,-93.184113],[44.891571,-93.18499],[44.891788,-93.185448],[44.891918,-93.185806],[44.892029,-93.186272],[44.892231,-93.187447],[44.892361,-93.188179],[44.892509,-93.188797],[44.8927,-93.18927],[44.893169,-93.190109],[44.893421,-93.190521],[44.893459,-93.190567],[44.89381,-93.191116],[44.894051,-93.191528],[44.89476,-93.192909],[44.895191,-93.193802],[44.89566,-93.194733],[44.89632,-93.195847],[44.896702,-93.196274],[44.897148,-93.196869],[44.8974,-93.197182],[44.89772,-93.197563],[44.897999,-93.19783],[44.898239,-93.197968],[44.898441,-93.198059],[44.899281,-93.198318],[44.900101,-93.198593],[44.90052,-93.198723],[44.90097,-93.198776],[44.90134,-93.198807],[44.901951,-93.198807],[44.90271,-93.198807],[44.903198,-93.198799],[44.90374,-93.198837],[44.904469,-93.198921],[44.904961,-93.199013],[44.905251,-93.199097],[44.905319,-93.19912],[44.905392,-93.199142],[44.90543,-93.199158],[44.905781,-93.199348],[44.906059,-93.199516],[44.906281,-93.199707],[44.906559,-93.199966],[44.906799,-93.200287],[44.907009,-93.200577],[44.907169,-93.200859],[44.907318,-93.20121],[44.90749,-93.201668],[44.907589,-93.20195],[44.907841,-93.202629],[44.908051,-93.203178],[44.90831,-93.203857],[44.908611,-93.204521],[44.90892,-93.205116],[44.909229,-93.205658],[44.90926,-93.205727],[44.909679,-93.206383],[44.91003,-93.206871],[44.910461,-93.207428],[44.9109,-93.207939],[44.91151,-93.208633],[44.9123,-93.209503],[44.912628,-93.209908],[44.912941,-93.210274],[44.913658,-93.211151],[44.914291,-93.211937],[44.914612,-93.212357],[44.91507,-93.212952],[44.915211,-93.213173],[44.915379,-93.213448],[44.916382,-93.215073],[44.91647,-93.21524],[44.916901,-93.215759],[44.917332,-93.216232],[44.917831,-93.216797],[44.918282,-93.217247],[44.918652,-93.217644],[44.91885,-93.217812],[44.919361,-93.218277],[44.919609,-93.218498],[44.919708,-93.218567],[44.919991,-93.218773],[44.92028,-93.218987],[44.92057,-93.219193],[44.921028,-93.219528],[44.921322,-93.219727],[44.921539,-93.219879],[44.921661,-93.219971],[44.921982,-93.220192],[44.92292,-93.220863],[44.9231,-93.221001],[44.92329,-93.22113],[44.923439,-93.22123],[44.92366,-93.221367],[44.924431,-93.221863],[44.924969,-93.22226],[44.92511,-93.222359],[44.925301,-93.222488],[44.925529,-93.222633],[44.926338,-93.223213],[44.92659,-93.223389],[44.92691,-93.223602],[44.92807,-93.22438],[44.928299,-93.224541],[44.92849,-93.224663],[44.928699,-93.224823],[44.928841,-93.224907],[44.929352,-93.225273],[44.930328,-93.225937],[44.930511,-93.226067],[44.930679,-93.226181],[44.931332,-93.226631],[44.932831,-93.227654],[44.93383,-93.228317],[44.934139,-93.228554],[44.93573,-93.22963],[44.935928,-93.229767],[44.936031,-93.229843],[44.936081,-93.229874],[44.937981,-93.231163],[44.939541,-93.232224],[44.941799,-93.233772],[44.942719,-93.234413],[44.942959,-93.234573],[44.943039,-93.234627],[44.944389,-93.23558],[44.944771,-93.235863],[44.945389,-93.236259],[44.94648,-93.236977],[44.94812,-93.237968],[44.948589,-93.238312],[44.94944,-93.238907],[44.950191,-93.239487],[44.95097,-93.240143],[44.95253,-93.241257],[44.953159,-93.241676],[44.953789,-93.241997],[44.954048,-93.242126],[44.955551,-93.24295],[44.95644,-93.243477],[44.957249,-93.24411],[44.957939,-93.244637],[44.958839,-93.245399],[44.959789,-93.246323],[44.959949,-93.246513],[44.96022,-93.246803],[44.96069,-93.247299],[44.960831,-93.247452],[44.961319,-93.247978],[44.961651,-93.248337],[44.96236,-93.249062],[44.962429,-93.24913],[44.962811,-93.249474],[44.963131,-93.249763],[44.963341,-93.249947],[44.96365,-93.250237],[44.96394,-93.250481],[44.964249,-93.25071],[44.964828,-93.251091],[44.965549,-93.251671],[44.96637,-93.252327],[44.966511,-93.252441],[44.966621,-93.252533],[44.966702,-93.252602],[44.966801,-93.252678],[44.966911,-93.252739],[44.966999,-93.2528],[44.967079,-93.252853],[44.967331,-93.252983],[44.96743,-93.253052],[44.967892,-93.253326],[44.9687,-93.253807],[44.968761,-93.253853],[44.96883,-93.253906],[44.968899,-93.25396],[44.96896,-93.254013],[44.969051,-93.254097],[44.96912,-93.254189],[44.96928,-93.254387],[44.969379,-93.254539],[44.96949,-93.254799],[44.969971,-93.255898],[44.970539,-93.257263],[44.971119,-93.258629],[44.971691,-93.259987],[44.972271,-93.261353],[44.972839,-93.262688],[44.973438,-93.264091],[44.973728,-93.264793],[44.973999,-93.265427],[44.974579,-93.266792],[44.975159,-93.268143],[44.976109,-93.267326],[44.977051,-93.266563],[44.977089,-93.266533],[44.977119,-93.266502],[44.97805,-93.265717],[44.979031,-93.2649],[44.979939,-93.264122],[44.980049,-93.26403],[44.980999,-93.263237],[44.98196,-93.262444],[44.982101,-93.262337],[44.982182,-93.262169],[44.982399,-93.261749],[44.982521,-93.261459],[44.98259,-93.261307],[44.982761,-93.260857],[44.98291,-93.260391],[44.98304,-93.259987],[44.983589,-93.258247],[44.9837,-93.257896],[44.983841,-93.257568],[44.984009,-93.257263],[44.9842,-93.256973],[44.984409,-93.256706],[44.984489,-93.25663],[44.98497,-93.256264],[44.98579,-93.255592],[44.985901,-93.255524],[44.98616,-93.255333],[44.98679,-93.254852],[44.98687,-93.255028],[44.987339,-93.255608],[44.987659,-93.25602],[44.987961,-93.256432],[44.98843,-93.256729],[44.988602,-93.256844],[44.988991,-93.257088],[44.989922,-93.257713],[44.99015,-93.257881],[44.990898,-93.258369],[44.990971,-93.258423],[44.99144,-93.258743],[44.99229,-93.259331],[44.993599,-93.260231],[44.993118,-93.261673],[44.99263,-93.263023],[44.99263,-93.263184],[44.992271,-93.263443],[44.992691,-93.264618],[44.99271,-93.264664],[44.992779,-93.264839],[44.992882,-93.264992],[44.992889,-93.265007],[44.992989,-93.265121],[44.993118,-93.265221],[44.994209,-93.265968],[44.99519,-93.266632],[44.996151,-93.267311],[44.997131,-93.267967],[44.998112,-93.268661],[44.998699,-93.269112],[44.998699,-93.270813],[44.998699,-93.270828],[44.998791,-93.272163],[44.998901,-93.273804],[44.999069,-93.276932],[44.9991,-93.277458],[44.9991,-93.277641],[44.999119,-93.280197],[44.99913,-93.281723],[44.99913,-93.281914],[44.999142,-93.282043],[44.99913,-93.283539],[44.99913,-93.283951],[44.99897,-93.283951],[44.998878,-93.283951],[44.99881,-93.283943],[44.998741,-93.283913],[44.998661,-93.28389],[44.998581,-93.283859],[44.998489,-93.283813],[44.998402,-93.283752],[44.998138,-93.283623],[44.998001,-93.283569],[44.997849,-93.283508],[44.997768,-93.283493],[44.997681,-93.28347],[44.997601,-93.283463],[44.99749,-93.283447],[44.99741,-93.283447],[44.99728,-93.283447],[44.99543,-93.283524],[44.99506,-93.283531],[44.994942,-93.283531],[44.994839,-93.283539],[44.994659,-93.283546],[44.99456,-93.283569],[44.994419,-93.283592],[44.994049,-93.283669],[44.993912,-93.28373],[44.993771,-93.283813],[44.99366,-93.283867],[44.99353,-93.283943],[44.993408,-93.284012],[44.993271,-93.284111],[44.993149,-93.284187],[44.99305,-93.284279],[44.992939,-93.284363],[44.992851,-93.284439],[44.992748,-93.284523],[44.992619,-93.28466],[44.992489,-93.284782],[44.992329,-93.284973],[44.99176,-93.285698],[44.990871,-93.286926],[44.99073,-93.287086],[44.990608,-93.287239],[44.990509,-93.287361],[44.99041,-93.287468],[44.990311,-93.287567],[44.990219,-93.287643],[44.990089,-93.287758],[44.989948,-93.287857],[44.98967,-93.288063],[44.989571,-93.288132],[44.989441,-93.288223],[44.989311,-93.288307],[44.989182,-93.288383],[44.989059,-93.288452],[44.988949,-93.288498],[44.988819,-93.288551],[44.988689,-93.288597],[44.988548,-93.288651],[44.9884,-93.288696],[44.98827,-93.288727],[44.988159,-93.288757],[44.98801,-93.288788],[44.987881,-93.288803],[44.98777,-93.288818],[44.987659,-93.288818],[44.987572,-93.288834],[44.98748,-93.288834],[44.987411,-93.288818],[44.98735,-93.288818],[44.987259,-93.288818],[44.987148,-93.288803],[44.98597,-93.28862],[44.985809,-93.288589],[44.98568,-93.288567],[44.985062,-93.288467],[44.984879,-93.288437],[44.984638,-93.288383],[44.984131,-93.2883],[44.9828,-93.288017],[44.982349,-93.287949],[44.98214,-93.287933],[44.981972,-93.287903],[44.9818,-93.287872],[44.98167,-93.287857],[44.981529,-93.287849],[44.9814,-93.287827],[44.981239,-93.287827],[44.98101,-93.287811],[44.980709,-93.287804],[44.980469,-93.287804],[44.979279,-93.287857],[44.978401,-93.28788],[44.976742,-93.28788],[44.97641,-93.28788],[44.976318,-93.28788],[44.97625,-93.287903],[44.97617,-93.287918],[44.97612,-93.287949],[44.975941,-93.288094],[44.975891,-93.288162],[44.975849,-93.288223],[44.9758,-93.288292],[44.975761,-93.288383],[44.975719,-93.288483],[44.975689,-93.288589],[44.975639,-93.288742],[44.975571,-93.288979],[44.975479,-93.28949],[44.97546,-93.28968],[44.975441,-93.289917],[44.97543,-93.290062],[44.975422,-93.290199],[44.975399,-93.290321],[44.975368,-93.290451],[44.975349,-93.29052],[44.975239,-93.290779],[44.975189,-93.290939],[44.97514,-93.291092],[44.97506,-93.291298],[44.974991,-93.291458],[44.97493,-93.291557],[44.97485,-93.291679],[44.97419,-93.292618],[44.973942,-93.292908],[44.973431,-93.293503],[44.972488,-93.294868],[44.972359,-93.295059],[44.972221,-93.295273],[44.972069,-93.295502],[44.97197,-93.295677],[44.97187,-93.295853],[44.97176,-93.296028],[44.971661,-93.296219],[44.971561,-93.296402],[44.971439,-93.296661],[44.971279,-93.296989],[44.970821,-93.298073],[44.97028,-93.299431],[44.970112,-93.299843],[44.970039,-93.300034],[44.969971,-93.300217],[44.96991,-93.300423],[44.96986,-93.300598],[44.969818,-93.300751],[44.969761,-93.301033],[44.9697,-93.301292],[44.969669,-93.301529],[44.969639,-93.30175],[44.96962,-93.301949],[44.969608,-93.302116],[44.969601,-93.302307],[44.969601,-93.302513],[44.969608,-93.30278],[44.969631,-93.303047],[44.9697,-93.304131],[44.96983,-93.30558],[44.969921,-93.306602],[44.970009,-93.307564],[44.970051,-93.308029],[44.970131,-93.308891],[44.97015,-93.309196],[44.970169,-93.30954],[44.9702,-93.309967],[44.970211,-93.310257],[44.970219,-93.310654],[44.970242,-93.311043],[44.970242,-93.311348],[44.970249,-93.311638],[44.970249,-93.311981],[44.970261,-93.312393],[44.970268,-93.313377],[44.97028,-93.313591],[44.970329,-93.31646],[44.970379,-93.31871],[44.970379,-93.319008],[44.970379,-93.319328],[44.970379,-93.319649],[44.97039,-93.320091],[44.97039,-93.320427],[44.97039,-93.320717],[44.97039,-93.321243],[44.97039,-93.321617],[44.970379,-93.322166],[44.970379,-93.322433],[44.970371,-93.322891],[44.97036,-93.323387],[44.970341,-93.324097],[44.970329,-93.325081],[44.970268,-93.327347],[44.970249,-93.328117],[44.970249,-93.328529],[44.970249,-93.32901],[44.970249,-93.32975],[44.970329,-93.330788],[44.970379,-93.331398],[44.970428,-93.331879],[44.970459,-93.332283],[44.97052,-93.332787],[44.970581,-93.333473],[44.970612,-93.333801],[44.970638,-93.334244],[44.97065,-93.334427],[44.97068,-93.334793],[44.970749,-93.336121],[44.970798,-93.337181],[44.970829,-93.33831],[44.970852,-93.339523],[44.970871,-93.340424],[44.970879,-93.340813],[44.970959,-93.341553],[44.970989,-93.341797],[44.97102,-93.341988],[44.971039,-93.342087],[44.971069,-93.342194],[44.9711,-93.342262],[44.97113,-93.342331],[44.971169,-93.342392],[44.97121,-93.342422],[44.971249,-93.342484],[44.971279,-93.342506],[44.971352,-93.342537],[44.97142,-93.342567],[44.971489,-93.342583],[44.971561,-93.342567],[44.971611,-93.34256],[44.971661,-93.342552],[44.971722,-93.342529],[44.971771,-93.342491],[44.971809,-93.342438],[44.971859,-93.342392],[44.971889,-93.342346],[44.97192,-93.342293],[44.97197,-93.342201],[44.971989,-93.342117],[44.972012,-93.342056],[44.972019,-93.341949],[44.972019,-93.34182],[44.972019,-93.341743],[44.972012,-93.341667],[44.971989,-93.341591],[44.97197,-93.341522],[44.971939,-93.341454],[44.971889,-93.341377],[44.971859,-93.341316],[44.971809,-93.34127],[44.97176,-93.341232],[44.971699,-93.341187],[44.971642,-93.341164],[44.97155,-93.341148],[44.97139,-93.341133],[44.971161,-93.341118],[44.970772,-93.34108],[44.970749,-93.341087],[44.970581,-93.341103],[44.970509,-93.341118],[44.970459,-93.341133],[44.970299,-93.341164],[44.97015,-93.341187],[44.96978,-93.341316],[44.969398,-93.341499],[44.96888,-93.341782],[44.968651,-93.341927],[44.968498,-93.342033],[44.96814,-93.3423],[44.968029,-93.342392],[44.967838,-93.342529],[44.967701,-93.342628],[44.967529,-93.342743],[44.967381,-93.342842],[44.967251,-93.342918],[44.967041,-93.343033],[44.966869,-93.343109],[44.966549,-93.343246],[44.965931,-93.343498],[44.965408,-93.343681],[44.964699,-93.343933],[44.964458,-93.344002],[44.964249,-93.34407],[44.964069,-93.344116],[44.963451,-93.344299],[44.962261,-93.344543],[44.961491,-93.34478],[44.96093,-93.344971],[44.960419,-93.345154],[44.96019,-93.345238],[44.959949,-93.345337],[44.95966,-93.345467],[44.95937,-93.345612],[44.958912,-93.345863],[44.958599,-93.346031],[44.957371,-93.346764],[44.956959,-93.346992],[44.95657,-93.347183],[44.956402,-93.34726],[44.9562,-93.347343],[44.955971,-93.347427],[44.95575,-93.347504],[44.955479,-93.347572],[44.955158,-93.347656],[44.954861,-93.347733],[44.954571,-93.347794],[44.954269,-93.347847],[44.953999,-93.3479],[44.953388,-93.347954],[44.952438,-93.347954],[44.951771,-93.347954],[44.949081,-93.347954],[44.94717,-93.347977],[44.946442,-93.348],[44.946152,-93.348007],[44.945599,-93.348007],[44.944439,-93.348022],[44.944149,-93.348022],[44.943851,-93.34803],[44.943771,-93.34803],[44.94339,-93.348038],[44.94326,-93.348053],[44.942982,-93.348053],[44.942181,-93.348061],[44.94146,-93.348099],[44.941158,-93.348137],[44.940891,-93.348183],[44.940701,-93.348213],[44.940529,-93.348259],[44.94025,-93.348328],[44.939991,-93.348396],[44.939709,-93.34848],[44.939499,-93.348557],[44.93932,-93.348633],[44.939152,-93.348686],[44.93832,-93.349091],[44.937771,-93.349373],[44.937439,-93.349533],[44.937229,-93.349609],[44.937031,-93.349693],[44.936859,-93.349747],[44.93668,-93.349823],[44.936451,-93.349876],[44.936279,-93.349937],[44.936089,-93.349983],[44.935921,-93.350014],[44.935749,-93.350037],[44.93557,-93.350067],[44.93539,-93.35009],[44.935211,-93.350098],[44.935081,-93.350098],[44.934929,-93.350098],[44.934769,-93.350098],[44.933418,-93.35009],[44.93174,-93.35006],[44.929901,-93.350037],[44.92918,-93.350052],[44.92889,-93.350037],[44.928711,-93.350037],[44.92849,-93.350014],[44.928299,-93.349983],[44.92807,-93.34993],[44.92767,-93.349838],[44.927361,-93.349747],[44.92712,-93.349693],[44.926891,-93.349617],[44.926731,-93.349579],[44.926559,-93.349548],[44.926411,-93.349518],[44.926289,-93.349503],[44.92617,-93.349487],[44.926048,-93.349487],[44.925911,-93.34948],[44.925789,-93.34948],[44.924191,-93.349472],[44.922058,-93.34948],[44.9217,-93.349487],[44.921459,-93.349487],[44.921162,-93.349503],[44.92091,-93.349518],[44.920738,-93.349541],[44.92049,-93.349564],[44.920189,-93.349609],[44.919861,-93.349648],[44.919659,-93.349693],[44.919319,-93.349739],[44.91893,-93.349792],[44.91861,-93.349854],[44.91748,-93.350037],[44.91708,-93.350113],[44.916801,-93.350166],[44.916561,-93.350197],[44.916191,-93.350273],[44.915871,-93.350319],[44.91563,-93.350357],[44.915249,-93.350433],[44.914398,-93.350594],[44.91399,-93.350647],[44.913769,-93.3507],[44.91354,-93.350731],[44.91333,-93.350761],[44.91296,-93.3508],[44.912769,-93.350822],[44.912609,-93.350838],[44.912251,-93.350853],[44.911991,-93.350853],[44.911701,-93.350861],[44.91132,-93.350868],[44.911011,-93.350861],[44.910709,-93.350853],[44.910469,-93.350822],[44.91,-93.350769],[44.909389,-93.350693],[44.909149,-93.350662],[44.90881,-93.350601],[44.908169,-93.350479],[44.906841,-93.350258],[44.90633,-93.350166],[44.906029,-93.350128],[44.905842,-93.350113],[44.905659,-93.35009],[44.90546,-93.350067],[44.90522,-93.350052],[44.90501,-93.350029],[44.90485,-93.350021],[44.90464,-93.350014],[44.90427,-93.350014],[44.902828,-93.349998],[44.902161,-93.349998],[44.900661,-93.349983],[44.900181,-93.349983],[44.897289,-93.350029],[44.895512,-93.35009],[44.893829,-93.350128],[44.892368,-93.350143],[44.892071,-93.350143],[44.891472,-93.350143],[44.890121,-93.350197],[44.890072,-93.350189],[44.889969,-93.350189],[44.889431,-93.350197],[44.888908,-93.350197],[44.887718,-93.35022],[44.886429,-93.350243],[44.885429,-93.350273],[44.88409,-93.350372],[44.883709,-93.350418],[44.883549,-93.350433],[44.882729,-93.350479],[44.880058,-93.350548],[44.879211,-93.350563],[44.87645,-93.350594],[44.875851,-93.350594],[44.873161,-93.350571],[44.872589,-93.350517],[44.871441,-93.350449],[44.86924,-93.350357],[44.867668,-93.350304],[44.86647,-93.350227],[44.865608,-93.350166],[44.865028,-93.350166],[44.86433,-93.350166],[44.862,-93.350166],[44.861881,-93.350166],[44.861092,-93.350182],[44.860641,-93.350403],[44.860241,-93.350952],[44.85994,-93.351547],[44.859371,-93.35276],[44.85923,-93.353363],[44.859219,-93.354279],[44.85939,-93.357224],[44.859459,-93.358307],[44.859531,-93.35923],[44.85968,-93.361702],[44.85973,-93.362427],[44.859779,-93.363113],[44.859829,-93.364021],[44.860069,-93.368477],[44.860271,-93.371689],[44.860359,-93.373154],[44.860439,-93.3741],[44.860458,-93.375488],[44.860489,-93.378052],[44.860481,-93.379303],[44.860409,-93.381317],[44.860352,-93.381958],[44.860298,-93.382652],[44.860149,-93.384048],[44.860031,-93.384697],[44.85989,-93.385536],[44.859669,-93.387268],[44.859631,-93.388977],[44.859539,-93.391373],[44.85955,-93.394287],[44.859539,-93.394913],[44.859631,-93.395378],[44.859711,-93.395882],[44.859798,-93.396141],[44.860001,-93.39624],[44.860241,-93.39624],[44.860439,-93.396057],[44.860538,-93.395737],[44.8605,-93.39534],[44.860321,-93.395081],[44.859829,-93.394798],[44.859051,-93.394493],[44.85836,-93.394234],[44.858269,-93.394203],[44.857689,-93.393959],[44.85717,-93.393784],[44.856831,-93.393692],[44.856529,-93.393646],[44.856491,-93.393639],[44.856339,-93.393623],[44.855942,-93.393646],[44.85564,-93.393707],[44.855461,-93.393784],[44.85535,-93.393837],[44.854919,-93.39402],[44.8545,-93.394318],[44.854099,-93.394653],[44.853741,-93.395042],[44.853439,-93.395393],[44.85321,-93.395691],[44.852249,-93.396851],[44.851601,-93.397614],[44.851269,-93.397881],[44.850922,-93.398117],[44.850559,-93.398293],[44.849838,-93.398537],[44.849091,-93.398567],[44.84763,-93.398643],[44.84676,-93.398659],[44.84491,-93.398743],[44.843651,-93.398773],[44.841991,-93.398827],[44.840931,-93.398857],[44.840221,-93.398888],[44.837189,-93.398621],[44.837151,-93.398621],[44.835609,-93.398514],[44.834221,-93.39843],[44.833191,-93.39843],[44.831009,-93.398422],[44.8297,-93.39843],[44.826099,-93.398438],[44.823071,-93.39843],[44.82235,-93.39843],[44.81926,-93.398422],[44.817261,-93.398422],[44.815632,-93.398438],[44.814201,-93.398438],[44.812908,-93.398438],[44.81255,-93.398438],[44.810551,-93.398453],[44.808491,-93.398407],[44.80788,-93.39843],[44.8055,-93.398407],[44.80434,-93.398392],[44.803741,-93.398376],[44.801819,-93.398399],[44.800621,-93.39856],[44.800018,-93.398682],[44.79958,-93.398819],[44.799019,-93.398972],[44.798649,-93.399109],[44.797939,-93.399384],[44.796421,-93.4002],[44.7957,-93.400688],[44.794861,-93.401314],[44.79401,-93.402077],[44.792721,-93.403236],[44.7906,-93.405273],[44.79023,-93.405693],[44.789551,-93.406433],[44.7892,-93.406853],[44.788929,-93.407227],[44.788681,-93.407608],[44.788231,-93.408401],[44.787971,-93.408913],[44.78759,-93.409752],[44.787041,-93.411148],[44.786381,-93.412987],[44.78635,-93.413094],[44.78611,-93.413757],[44.785709,-93.414864],[44.78529,-93.416077],[44.78492,-93.417229],[44.784611,-93.418373],[44.784359,-93.419403],[44.784161,-93.420357],[44.784069,-93.420776],[44.78392,-93.421654],[44.783791,-93.422501],[44.783661,-93.423409],[44.783569,-93.424347],[44.783482,-93.42585],[44.783428,-93.427094],[44.783409,-93.432388],[44.783401,-93.438759],[44.783409,-93.449966],[44.783401,-93.455177],[44.78336,-93.457916],[44.783199,-93.460747],[44.783119,-93.461929],[44.783031,-93.462723],[44.782791,-93.464783],[44.782459,-93.467857],[44.782299,-93.469177],[44.782188,-93.4701],[44.781921,-93.472397],[44.78167,-93.474487],[44.78146,-93.47644],[44.78133,-93.477631],[44.781052,-93.480171],[44.779961,-93.48941],[44.778858,-93.499352],[44.77832,-93.503754],[44.77813,-93.505333],[44.777859,-93.507652],[44.777401,-93.5121],[44.777081,-93.514938],[44.776569,-93.519539],[44.77644,-93.521011],[44.776348,-93.522362],[44.77631,-93.523773],[44.776279,-93.529778],[44.776272,-93.531128],[44.776279,-93.533287],[44.776291,-93.535583],[44.776299,-93.540001],[44.776299,-93.540543],[44.77631,-93.541267],[44.776291,-93.542587],[44.776291,-93.545914],[44.776402,-93.547821],[44.77673,-93.549332],[44.777199,-93.551193],[44.77774,-93.553047],[44.77813,-93.554466],[44.778301,-93.555588],[44.77832,-93.556664],[44.77821,-93.55825],[44.778099,-93.559624],[44.778091,-93.559837],[44.777981,-93.561409],[44.77784,-93.562607],[44.777611,-93.563583],[44.77726,-93.564484],[44.776878,-93.565277],[44.776371,-93.566093],[44.775749,-93.566788],[44.77504,-93.567467],[44.772869,-93.569611],[44.77224,-93.57029],[44.772121,-93.570442],[44.771042,-93.571823],[44.770538,-93.572472],[44.767738,-93.576134],[44.766659,-93.57753],[44.765759,-93.578644],[44.764889,-93.57962],[44.763699,-93.580612],[44.76302,-93.581139],[44.76194,-93.581802],[44.760311,-93.582703],[44.75835,-93.583794],[44.756039,-93.585083],[44.754711,-93.58567],[44.754089,-93.585892],[44.753201,-93.586151],[44.75106,-93.586456],[44.74902,-93.586739],[44.746479,-93.58712],[44.743721,-93.587502],[44.740219,-93.588043],[44.735958,-93.588654],[44.73481,-93.588829],[44.733959,-93.58889],[44.732971,-93.588882],[44.732262,-93.588814],[44.73159,-93.588722],[44.72559,-93.587341],[44.722061,-93.586533],[44.721439,-93.586433],[44.72036,-93.586372],[44.719452,-93.586411],[44.71843,-93.586609],[44.71756,-93.586937],[44.716671,-93.587372],[44.714291,-93.588814],[44.709518,-93.591698],[44.705002,-93.594337],[44.704189,-93.594841],[44.702091,-93.5961],[44.700722,-93.596947],[44.699749,-93.597519],[44.6978,-93.598663],[44.696449,-93.599457],[44.69553,-93.600113],[44.694481,-93.601028],[44.693699,-93.60186],[44.692989,-93.602699],[44.692139,-93.603889],[44.6912,-93.605377],[44.691078,-93.605583],[44.690289,-93.606903],[44.689419,-93.608109],[44.687469,-93.610733],[44.684559,-93.614594],[44.681919,-93.618118],[44.681671,-93.618423],[44.680931,-93.619377],[44.680222,-93.620163],[44.679428,-93.620827],[44.678371,-93.62162],[44.67765,-93.622169],[44.676479,-93.623039],[44.675659,-93.623863],[44.675011,-93.624786],[44.674461,-93.625847],[44.674099,-93.626701],[44.67371,-93.627853],[44.67358,-93.628311],[44.67337,-93.629257],[44.67284,-93.631897],[44.672249,-93.63485],[44.672131,-93.6353],[44.67189,-93.636093],[44.671459,-93.637497],[44.670719,-93.639519],[44.67065,-93.639702],[44.670052,-93.641281],[44.667709,-93.647591],[44.66378,-93.657883],[44.661049,-93.66507],[44.659031,-93.670372],[44.657211,-93.67527],[44.655811,-93.678963],[44.65332,-93.685509],[44.652531,-93.687576],[44.651161,-93.691261],[44.649979,-93.694389],[44.64846,-93.698357],[44.64782,-93.700081],[44.647148,-93.701874],[44.64603,-93.704857],[44.645222,-93.706978],[44.644501,-93.708817],[44.643349,-93.711243],[44.64185,-93.714088],[44.640202,-93.717041],[44.6385,-93.7202],[44.635948,-93.724922],[44.634178,-93.728157],[44.63311,-93.730186],[44.631222,-93.733528],[44.629532,-93.736633],[44.627998,-93.739464],[44.62735,-93.740646],[44.62521,-93.74456],[44.624451,-93.745979],[44.623619,-93.747543],[44.622822,-93.749153],[44.622162,-93.75058],[44.621189,-93.752869],[44.620972,-93.753349],[44.620152,-93.755302],[44.619751,-93.756264],[44.618359,-93.759552],[44.616661,-93.763077],[44.61639,-93.763657],[44.61562,-93.764893],[44.613819,-93.768127],[44.610802,-93.773376],[44.609951,-93.774857],[44.60804,-93.778236],[44.607609,-93.778976],[44.605202,-93.783218],[44.604889,-93.783737],[44.603821,-93.785622],[44.602772,-93.787483],[44.602692,-93.787666],[44.602131,-93.788887],[44.601742,-93.789917],[44.60146,-93.790916],[44.601158,-93.792236],[44.60091,-93.793663],[44.60062,-93.795799],[44.600231,-93.798363],[44.599979,-93.800163],[44.59977,-93.801567],[44.599461,-93.803436],[44.599152,-93.804619],[44.598862,-93.805557],[44.59848,-93.806602],[44.59819,-93.807266],[44.597881,-93.807961],[44.597519,-93.808662],[44.596432,-93.810669],[44.594681,-93.813927],[44.593159,-93.816727],[44.592072,-93.818741],[44.590771,-93.821198],[44.58934,-93.82383],[44.587559,-93.827202],[44.58654,-93.829086],[44.58559,-93.830528],[44.585072,-93.831299],[44.584461,-93.832153],[44.583851,-93.832893],[44.583179,-93.833641],[44.58226,-93.834633],[44.58128,-93.835487],[44.58033,-93.836281],[44.5788,-93.837479],[44.576969,-93.838852],[44.574879,-93.840446],[44.572449,-93.842339],[44.570518,-93.843788],[44.569321,-93.844643],[44.5676,-93.845978],[44.565891,-93.84726],[44.563339,-93.849213],[44.562481,-93.849838],[44.561878,-93.850212],[44.561008,-93.850616],[44.56004,-93.850937],[44.559299,-93.851112],[44.558472,-93.851196],[44.557579,-93.851173],[44.556999,-93.851112],[44.55645,-93.851044],[44.554771,-93.850594],[44.553421,-93.850197],[44.551991,-93.8498],[44.550949,-93.849663],[44.550282,-93.849586],[44.549179,-93.849602],[44.547798,-93.849617],[44.544479,-93.849586],[44.542412,-93.849632],[44.541721,-93.849564],[44.54063,-93.849373],[44.539661,-93.849113],[44.536861,-93.848106],[44.536381,-93.847954],[44.535381,-93.847649],[44.534302,-93.847427],[44.53323,-93.847343],[44.528709,-93.847107],[44.526329,-93.847023],[44.522991,-93.846893],[44.520981,-93.84684],[44.51992,-93.847023],[44.518879,-93.847328],[44.517929,-93.847733],[44.517059,-93.848244],[44.516361,-93.848801],[44.515541,-93.849564],[44.51318,-93.852043],[44.511009,-93.854317],[44.50943,-93.855957],[44.507629,-93.857857],[44.506378,-93.859154],[44.503529,-93.86216],[44.502811,-93.862877],[44.501362,-93.864433],[44.499889,-93.865967],[44.495998,-93.87014],[44.493011,-93.873253],[44.491192,-93.875191],[44.489689,-93.876747],[44.488762,-93.877724],[44.487579,-93.879059],[44.486549,-93.880623],[44.485889,-93.881783],[44.485371,-93.882843],[44.484718,-93.884354],[44.48431,-93.885559],[44.483871,-93.887001],[44.483582,-93.888191],[44.483089,-93.890846],[44.482971,-93.891602],[44.4828,-93.892632],[44.4823,-93.895729],[44.48225,-93.896027],[44.481979,-93.897797],[44.481781,-93.898987],[44.4814,-93.901207],[44.480572,-93.906326],[44.48016,-93.908813],[44.48,-93.90976],[44.47974,-93.9114],[44.479469,-93.913109],[44.47934,-93.914001],[44.47905,-93.915413],[44.478809,-93.916496],[44.478352,-93.91806],[44.477779,-93.919579],[44.477249,-93.920624],[44.476799,-93.921448],[44.476421,-93.92205],[44.476021,-93.922653],[44.475269,-93.923622],[44.474651,-93.92424],[44.473881,-93.925003],[44.472889,-93.925903],[44.471611,-93.927017],[44.470558,-93.927971],[44.46962,-93.928711],[44.468498,-93.92955],[44.467449,-93.930229],[44.467079,-93.930473],[44.466808,-93.930634],[44.46616,-93.931053],[44.464531,-93.93206],[44.46262,-93.93322],[44.462132,-93.933533],[44.46109,-93.934158],[44.458771,-93.935593],[44.456902,-93.936707],[44.455761,-93.937424],[44.454632,-93.93811],[44.453609,-93.938744],[44.452221,-93.93959],[44.451031,-93.940277],[44.449619,-93.941116],[44.44907,-93.941383],[44.448059,-93.941788],[44.4468,-93.942131],[44.44593,-93.942368],[44.444538,-93.942741],[44.44363,-93.943047],[44.442951,-93.94339],[44.4417,-93.944077],[44.440159,-93.944962],[44.438229,-93.946037],[44.437012,-93.946739],[44.436039,-93.947304],[44.435181,-93.947662],[44.43399,-93.948143],[44.432621,-93.948692],[44.431469,-93.949112],[44.430729,-93.949402],[44.429272,-93.95002],[44.42794,-93.950783],[44.426998,-93.951424],[44.425869,-93.952187],[44.424889,-93.952843],[44.423889,-93.953506],[44.422939,-93.954147],[44.42194,-93.954788],[44.421181,-93.955223],[44.420071,-93.95575],[44.419281,-93.956139],[44.41803,-93.956734],[44.416901,-93.957237],[44.4156,-93.957817],[44.414799,-93.958214],[44.413559,-93.958633],[44.412701,-93.958969],[44.412048,-93.959152],[44.41127,-93.959396],[44.41045,-93.959679],[44.409809,-93.959877],[44.40892,-93.96006],[44.40789,-93.960091],[44.406841,-93.96003],[44.405769,-93.960007],[44.40443,-93.959953],[44.40295,-93.959869],[44.402222,-93.959846],[44.401619,-93.959877],[44.400768,-93.959961],[44.399891,-93.960274],[44.399281,-93.960564],[44.398609,-93.960991],[44.397659,-93.961746],[44.396542,-93.962677],[44.395088,-93.963867],[44.393021,-93.96563],[44.391811,-93.966614],[44.391289,-93.967049],[44.390419,-93.967537],[44.38966,-93.967873],[44.388771,-93.968147],[44.38747,-93.968422],[44.386269,-93.968643],[44.384979,-93.96888],[44.38356,-93.969162],[44.38253,-93.96933],[44.381512,-93.969429],[44.380348,-93.969307],[44.37933,-93.969162],[44.378109,-93.968933],[44.376789,-93.968681],[44.375832,-93.968391],[44.37447,-93.967888],[44.373291,-93.9673],[44.372509,-93.966949],[44.371479,-93.966454],[44.369881,-93.965698],[44.36937,-93.965508],[44.368351,-93.965134],[44.367378,-93.964813],[44.36681,-93.964531],[44.366081,-93.964104],[44.36512,-93.963364],[44.36414,-93.962624],[44.363289,-93.961906],[44.362572,-93.961212],[44.361858,-93.960472],[44.361221,-93.95977],[44.360561,-93.959099],[44.35984,-93.958557],[44.358891,-93.957893],[44.358021,-93.957283],[44.35738,-93.956841],[44.35606,-93.955978],[44.354961,-93.955223],[44.354019,-93.954597],[44.3526,-93.953644],[44.351261,-93.952766],[44.349991,-93.95211],[44.348961,-93.951714],[44.346081,-93.950699],[44.342979,-93.949638],[44.339882,-93.948593],[44.339642,-93.948486],[44.338669,-93.948181],[44.337959,-93.948067],[44.337029,-93.948029],[44.336189,-93.948143],[44.335381,-93.948318],[44.334549,-93.948662],[44.334,-93.948936],[44.333729,-93.949074],[44.33313,-93.949493],[44.33186,-93.950508],[44.331039,-93.951218],[44.330181,-93.951981],[44.32933,-93.952713],[44.32848,-93.953453],[44.327629,-93.954109],[44.32671,-93.954887],[44.325859,-93.955627],[44.32494,-93.956429],[44.324108,-93.957161],[44.323269,-93.957817],[44.32243,-93.958527],[44.321609,-93.959267],[44.320728,-93.960083],[44.319889,-93.960777],[44.319012,-93.961571],[44.31823,-93.962151],[44.317341,-93.962967],[44.316502,-93.963676],[44.315571,-93.964371],[44.314751,-93.965103],[44.31395,-93.965927],[44.313221,-93.966522],[44.312229,-93.967377],[44.3116,-93.967873],[44.309521,-93.969528],[44.307941,-93.970581],[44.30677,-93.971359],[44.30534,-93.972321],[44.304649,-93.97287],[44.303638,-93.973892],[44.302891,-93.974991],[44.302299,-93.976028],[44.301628,-93.977623],[44.300671,-93.980377],[44.29982,-93.982773],[44.299461,-93.983788],[44.298939,-93.985184],[44.298309,-93.986938],[44.29744,-93.989243],[44.296749,-93.990952],[44.29623,-93.991882],[44.29554,-93.99295],[44.294689,-93.994232],[44.293819,-93.995461],[44.29282,-93.996727],[44.29171,-93.998039],[44.290169,-93.999733],[44.288639,-94.001373],[44.28743,-94.00267],[44.28595,-94.004242],[44.284538,-94.00573],[44.283192,-94.007156],[44.282631,-94.007759],[44.28154,-94.008904],[44.279652,-94.01091],[44.27824,-94.012413],[44.276909,-94.013817],[44.275711,-94.015106],[44.274429,-94.016479],[44.27317,-94.017838],[44.272049,-94.019051],[44.271069,-94.020119],[44.27026,-94.02095],[44.269241,-94.021942],[44.268211,-94.022873],[44.266918,-94.023903],[44.265659,-94.024757],[44.264679,-94.025368],[44.263378,-94.026047],[44.262081,-94.026588],[44.26075,-94.027039],[44.259399,-94.027367],[44.25782,-94.027603],[44.256241,-94.02774],[44.253761,-94.027687],[44.251339,-94.027634],[44.24942,-94.027573],[44.24786,-94.027527],[44.24543,-94.027519],[44.243561,-94.027473],[44.240921,-94.027443],[44.23922,-94.027397],[44.235641,-94.027344],[44.234161,-94.027351],[44.230358,-94.027397],[44.226971,-94.027473],[44.224972,-94.027512],[44.223789,-94.027519],[44.221581,-94.027527],[44.219681,-94.027603],[44.218578,-94.027588],[44.217461,-94.027573],[44.216419,-94.027496],[44.215462,-94.027451],[44.214729,-94.027328],[44.213718,-94.027161],[44.21299,-94.026962],[44.211498,-94.02652],[44.210449,-94.026176],[44.209351,-94.025833],[44.208439,-94.025513],[44.206841,-94.024857],[44.202709,-94.023033],[44.199249,-94.021507],[44.19614,-94.020042],[44.19482,-94.019302],[44.194221,-94.018967],[44.19368,-94.0186],[44.193169,-94.01825],[44.19236,-94.017677],[44.19178,-94.017212],[44.190529,-94.016197],[44.18829,-94.014221],[44.18626,-94.012367],[44.181252,-94.007851],[44.178249,-94.005127],[44.17778,-94.004791],[44.176979,-94.004433],[44.17609,-94.004143],[44.17556,-94.004097],[44.1749,-94.004097],[44.173981,-94.00415],[44.17318,-94.004227],[44.172501,-94.004333],[44.172279,-94.004356],[44.17157,-94.004448],[44.17075,-94.004623],[44.170219,-94.004883],[44.16988,-94.005142],[44.169601,-94.005463],[44.169109,-94.006111],[44.168751,-94.006767],[44.168228,-94.007812],[44.167961,-94.008469],[44.167599,-94.009483],[44.167461,-94.010063],[44.167332,-94.010872],[44.167271,-94.012032],[44.167278,-94.013237],[44.167271,-94.013924],[44.167221,-94.014526],[44.167091,-94.015167],[44.166882,-94.0158],[44.166611,-94.016243],[44.166401,-94.016563],[44.16597,-94.01696],[44.16544,-94.017227],[44.16502,-94.017479],[44.164989,-94.017502],[44.1647,-94.017662],[44.164509,-94.017769],[44.163971,-94.018066],[44.161701,-94.019417],[44.160931,-94.019814],[44.16011,-94.020302],[44.159599,-94.020721],[44.15942,-94.02095],[44.159302,-94.021172],[44.15905,-94.021721],[44.158718,-94.022774],[44.15831,-94.024246],[44.15826,-94.024429],[44.15815,-94.024857],[44.158119,-94.025047],[44.157791,-94.026123],[44.15712,-94.027573],[44.15683,-94.028053],[44.15654,-94.028549],[44.155571,-94.030167],[44.15493,-94.031418],[44.154591,-94.032272],[44.15414,-94.033813],[44.154041,-94.034317],[44.153938,-94.035004],[44.153912,-94.035713],[44.153851,-94.037613],[44.153851,-94.039253],[44.153858,-94.040741],[44.1539,-94.041786],[44.153851,-94.042221],[44.15369,-94.043678],[44.153389,-94.045052],[44.153061,-94.046387],[44.15276,-94.04776],[44.152569,-94.049332],[44.152512,-94.051537],[44.152489,-94.052147],[44.152451,-94.053162],[44.15242,-94.055153],[44.15242,-94.056686],[44.152519,-94.061142],[44.152538,-94.063148],[44.15255,-94.064293],[44.15255,-94.065971],[44.152512,-94.067719],[44.152439,-94.069473],[44.15242,-94.069633],[44.152248,-94.071182],[44.15202,-94.072304],[44.151878,-94.0728],[44.15134,-94.074333],[44.15062,-94.075729],[44.14978,-94.077057],[44.148918,-94.078392],[44.147949,-94.079903],[44.146622,-94.081993],[44.146339,-94.082428],[44.145599,-94.083847],[44.145481,-94.084221],[44.145241,-94.084961],[44.145081,-94.085472],[44.144791,-94.087242],[44.144779,-94.087547],[44.144741,-94.088966],[44.14473,-94.089119],[44.14473,-94.089821],[44.14473,-94.089867],[44.144718,-94.090622],[44.144699,-94.09304],[44.144699,-94.09407],[44.14468,-94.095032],[44.144669,-94.097038],[44.144581,-94.107437],[44.14455,-94.110397],[44.144531,-94.112984],[44.144531,-94.11319],[44.144531,-94.113663],[44.144501,-94.116501],[44.144489,-94.118622],[44.14447,-94.119003],[44.144501,-94.120506],[44.144531,-94.122269],[44.144539,-94.122398],[44.1446,-94.124313],[44.144699,-94.126251],[44.14481,-94.128166],[44.144852,-94.129066],[44.14489,-94.130081],[44.14497,-94.133438],[44.14518,-94.141541],[44.14529,-94.145401],[44.145329,-94.147362],[44.145359,-94.149307],[44.14534,-94.151192],[44.145321,-94.153061],[44.14529,-94.154938],[44.145081,-94.156761],[44.144562,-94.158432],[44.144501,-94.158546],[44.143829,-94.159851],[44.14299,-94.161057],[44.142139,-94.162331],[44.14127,-94.163651],[44.140388,-94.165039],[44.13969,-94.166092],[44.135681,-94.172142],[44.135361,-94.172623],[44.134781,-94.173523],[44.133888,-94.17485],[44.132111,-94.177467],[44.13131,-94.178703],[44.131271,-94.178749],[44.130489,-94.180122],[44.129749,-94.181602],[44.128281,-94.184608],[44.12508,-94.191208],[44.123539,-94.194412],[44.123039,-94.19548],[44.122959,-94.195587],[44.122768,-94.19603],[44.121231,-94.199249],[44.119701,-94.202469],[44.118938,-94.204048],[44.11834,-94.205299],[44.11684,-94.208397],[44.116879,-94.208313],[44.116138,-94.209732],[44.115891,-94.210136],[44.115841,-94.210213],[44.115398,-94.210907],[44.114632,-94.212143],[44.113941,-94.213333],[44.11335,-94.214462],[44.11314,-94.214912],[44.112831,-94.215569],[44.11232,-94.216721],[44.1115,-94.21862],[44.110771,-94.220329],[44.110168,-94.221588],[44.10989,-94.222054],[44.109711,-94.222382],[44.10931,-94.222939],[44.108452,-94.224091],[44.107151,-94.2258],[44.106709,-94.226387],[44.10606,-94.227287],[44.105282,-94.228539],[44.105171,-94.228798],[44.10503,-94.229073],[44.104771,-94.229683],[44.104641,-94.229958],[44.10416,-94.231537],[44.103851,-94.233231],[44.10376,-94.233887],[44.103611,-94.234978],[44.10339,-94.236717],[44.102409,-94.244003],[44.10218,-94.245773],[44.10194,-94.247581],[44.10178,-94.248772],[44.101688,-94.249474],[44.100449,-94.258751],[44.099949,-94.262489],[44.09972,-94.264191],[44.099098,-94.26886],[44.098591,-94.272758],[44.098358,-94.274384],[44.09808,-94.276009],[44.097759,-94.277634],[44.09742,-94.279243],[44.09708,-94.280907],[44.096062,-94.285919],[44.095459,-94.28891],[44.095051,-94.290871],[44.094391,-94.294121],[44.094009,-94.295967],[44.093609,-94.297951],[44.093262,-94.299637],[44.092232,-94.304749],[44.091869,-94.306473],[44.090408,-94.31366],[44.090038,-94.315514],[44.088169,-94.324654],[44.087269,-94.329079],[44.087078,-94.330032],[44.086712,-94.331833],[44.08527,-94.338882],[44.08522,-94.339088],[44.084122,-94.344543],[44.083752,-94.346321],[44.083481,-94.347748],[44.083279,-94.348663],[44.083149,-94.349213],[44.083061,-94.349747],[44.082932,-94.350418],[44.082661,-94.351738],[44.08242,-94.35273],[44.08215,-94.353638],[44.081669,-94.354988],[44.081081,-94.356194],[44.08012,-94.358253],[44.07835,-94.361908],[44.078152,-94.362343],[44.077438,-94.363838],[44.077301,-94.364159],[44.074879,-94.369087],[44.07222,-94.374573],[44.070461,-94.378197],[44.06966,-94.379959],[44.068539,-94.382111],[44.066681,-94.385674],[44.06464,-94.389473],[44.062309,-94.394051],[44.061699,-94.395233],[44.061161,-94.396179],[44.060699,-94.396812],[44.060059,-94.397461],[44.059589,-94.397827],[44.059139,-94.398087],[44.05809,-94.398567],[44.053619,-94.400238],[44.052879,-94.400543],[44.0508,-94.401321],[44.050468,-94.401451],[44.049679,-94.401718],[44.048988,-94.402061],[44.04829,-94.40258],[44.047642,-94.403229],[44.046982,-94.404121],[44.04665,-94.404488],[44.04351,-94.408531],[44.042141,-94.410393],[44.040131,-94.41275],[44.0397,-94.413208],[44.03944,-94.413544],[44.039082,-94.413971],[44.037079,-94.416107],[44.03651,-94.416733],[44.03577,-94.417412],[44.0345,-94.418259],[44.03318,-94.41893],[44.032421,-94.419167],[44.031181,-94.419388],[44.0219,-94.419327],[44.01651,-94.419357],[44.01561,-94.419579],[44.014549,-94.420212],[44.01405,-94.420708],[44.013592,-94.421188],[44.010479,-94.425926],[44.009701,-94.427116],[44.00909,-94.427917],[44.008419,-94.428497],[44.00766,-94.428917],[44.007038,-94.429207],[44.00629,-94.429359],[43.999859,-94.429337],[43.997459,-94.429337],[43.99313,-94.429337],[43.986591,-94.429337],[43.985931,-94.429367],[43.984482,-94.429413],[43.98328,-94.429657],[43.982719,-94.429893],[43.98217,-94.430183],[43.98172,-94.430428],[43.98122,-94.430794],[43.98082,-94.431168],[43.980431,-94.431587],[43.97995,-94.432297],[43.979519,-94.433144],[43.979271,-94.433884],[43.97908,-94.434624],[43.978939,-94.435753],[43.978931,-94.44944],[43.978901,-94.469467],[43.978889,-94.479507],[43.978882,-94.488998],[43.97892,-94.50148],[43.978821,-94.50428],[43.978729,-94.505898],[43.978588,-94.507423],[43.978401,-94.509178],[43.97805,-94.51207],[43.97789,-94.514313],[43.977829,-94.516411],[43.977852,-94.518806],[43.977989,-94.5215],[43.978321,-94.525513],[43.978481,-94.52739],[43.97858,-94.529243],[43.9786,-94.531799],[43.978741,-94.5494],[43.978699,-94.562813],[43.978809,-94.579971],[43.97868,-94.582817],[43.978458,-94.584648],[43.978199,-94.586067],[43.977859,-94.58757],[43.97739,-94.589104],[43.976509,-94.592056],[43.97525,-94.596321],[43.972752,-94.604858],[43.96978,-94.614929],[43.96957,-94.615631],[43.968399,-94.619568],[43.967972,-94.621178],[43.967319,-94.623489],[43.966129,-94.627327],[43.962589,-94.639549],[43.95908,-94.651428],[43.958649,-94.652786],[43.958389,-94.653816],[43.95813,-94.655083],[43.958031,-94.656303],[43.958069,-94.657539],[43.95821,-94.658722],[43.958401,-94.65963],[43.958698,-94.66053],[43.958801,-94.660782],[43.959019,-94.661324],[43.95948,-94.662247],[43.959991,-94.662979],[43.96067,-94.663902],[43.96183,-94.665298],[43.96257,-94.666344],[43.96315,-94.667122],[43.96368,-94.667839],[43.964272,-94.668991],[43.9646,-94.669937],[43.96484,-94.670952],[43.964989,-94.671829],[43.965069,-94.672852],[43.965099,-94.6745],[43.965172,-94.679588],[43.964931,-94.689819],[43.96487,-94.691933],[43.964809,-94.694649],[43.964748,-94.6968],[43.96468,-94.699402],[43.96418,-94.709343],[43.963989,-94.719383],[43.96397,-94.72036],[43.963821,-94.728439],[43.963619,-94.738907],[43.963661,-94.749268],[43.962349,-94.759064],[43.95929,-94.777657],[43.958889,-94.778969],[43.95871,-94.779572],[43.95628,-94.784187],[43.956108,-94.784561],[43.954262,-94.788651],[43.954071,-94.789062],[43.953232,-94.790916],[43.952831,-94.791817],[43.952179,-94.793251],[43.951889,-94.793892],[43.95174,-94.794228],[43.951611,-94.79451],[43.951069,-94.795692],[43.949631,-94.798866],[43.949612,-94.799141],[43.948921,-94.806458],[43.948841,-94.819122],[43.949409,-94.839157],[43.94952,-94.845123],[43.947529,-94.859177],[43.946499,-94.865936],[43.946129,-94.867821],[43.945572,-94.870102],[43.944962,-94.872513],[43.94458,-94.874153],[43.944248,-94.876053],[43.943901,-94.879257],[43.943298,-94.885422],[43.94297,-94.888748],[43.942459,-94.893517],[43.942188,-94.895363],[43.941891,-94.89698],[43.941479,-94.898804],[43.94096,-94.90094],[43.939781,-94.904922],[43.938721,-94.908447],[43.93829,-94.9095],[43.937801,-94.910469],[43.937351,-94.911186],[43.936779,-94.911949],[43.935181,-94.91378],[43.934502,-94.914574],[43.93383,-94.915489],[43.933319,-94.916344],[43.932869,-94.91729],[43.932499,-94.918259],[43.932232,-94.919319],[43.932041,-94.920242],[43.93185,-94.921471],[43.93182,-94.922546],[43.93177,-94.92894],[43.931721,-94.93943],[43.931721,-94.943336],[43.931782,-94.944603],[43.931911,-94.945473],[43.932121,-94.946503],[43.9324,-94.947609],[43.932598,-94.948647],[43.932709,-94.949493],[43.932781,-94.950394],[43.932781,-94.951424],[43.93269,-94.952377],[43.932529,-94.953377],[43.93222,-94.954468],[43.931721,-94.955673],[43.930901,-94.957573],[43.929779,-94.960121],[43.929031,-94.961853],[43.928619,-94.962959],[43.92683,-94.968719],[43.923981,-94.979218],[43.921459,-94.988647],[43.918621,-94.999207],[43.913231,-95.019234],[43.910809,-95.028183],[43.910351,-95.030006],[43.910069,-95.031662],[43.909882,-95.033279],[43.909809,-95.035042],[43.90984,-95.03875],[43.909828,-95.043381],[43.909882,-95.048477],[43.909679,-95.050323],[43.909382,-95.051712],[43.90897,-95.053001],[43.90826,-95.054459],[43.907612,-95.055489],[43.906681,-95.056686],[43.904179,-95.059807],[43.902729,-95.061722],[43.901951,-95.062912],[43.901241,-95.064163],[43.90062,-95.065453],[43.89999,-95.067017],[43.895222,-95.079483],[43.89196,-95.08799],[43.89114,-95.090134],[43.890591,-95.091553],[43.89006,-95.092598],[43.889488,-95.093483],[43.886471,-95.097931],[43.885159,-95.099823],[43.884369,-95.100983],[43.883289,-95.102722],[43.881802,-95.105186],[43.88089,-95.10672],[43.880039,-95.108124],[43.879429,-95.109177],[43.879189,-95.10968],[43.878429,-95.111076],[43.877899,-95.111954],[43.877419,-95.112488],[43.876949,-95.112846],[43.876511,-95.113037],[43.875912,-95.113197],[43.87476,-95.113297],[43.873138,-95.113388],[43.872169,-95.113564],[43.871189,-95.113747],[43.870029,-95.11412],[43.869289,-95.114723],[43.868881,-95.114998],[43.867741,-95.114967],[43.866581,-95.11496],[43.865429,-95.11496],[43.864311,-95.11496],[43.86314,-95.11496],[43.862411,-95.114998],[43.860828,-95.11528],[43.858501,-95.115677],[43.85754,-95.115807],[43.856079,-95.115997],[43.85479,-95.116158],[43.853661,-95.116287],[43.852619,-95.116524],[43.85173,-95.116859],[43.851219,-95.117111],[43.85075,-95.117393],[43.849979,-95.117928],[43.849178,-95.118713],[43.848358,-95.119621],[43.847912,-95.120201],[43.84753,-95.120697],[43.84684,-95.122093],[43.84573,-95.125267],[43.844471,-95.129593],[43.84285,-95.135628],[43.83762,-95.155563],[43.835201,-95.164719],[43.834351,-95.168953],[43.834011,-95.169868],[43.833321,-95.171318],[43.832481,-95.172577],[43.832069,-95.173271],[43.83099,-95.175537],[43.830002,-95.177353],[43.828999,-95.179718],[43.826832,-95.18998],[43.82626,-95.193741],[43.825939,-95.195351],[43.825909,-95.195473],[43.82555,-95.197243],[43.82457,-95.201538],[43.82415,-95.204918],[43.823441,-95.215683],[43.82333,-95.21685],[43.820759,-95.231323],[43.81992,-95.235764],[43.8186,-95.243088],[43.81731,-95.250267],[43.816299,-95.255791],[43.815701,-95.259163],[43.814659,-95.264954],[43.81282,-95.27462],[43.81263,-95.27562],[43.80888,-95.29554],[43.808849,-95.295799],[43.808491,-95.298103],[43.808182,-95.300179],[43.807789,-95.30217],[43.807129,-95.304031],[43.806629,-95.305038],[43.806141,-95.30584],[43.801201,-95.314003],[43.800541,-95.315109],[43.800419,-95.315308],[43.800018,-95.318573],[43.79982,-95.319679],[43.799358,-95.321777],[43.79858,-95.323463],[43.7981,-95.324471],[43.797329,-95.3256],[43.796028,-95.327019],[43.794338,-95.327858],[43.792751,-95.328392],[43.791988,-95.328613],[43.790451,-95.330681],[43.789871,-95.331581],[43.78701,-95.335869],[43.781132,-95.344757],[43.776901,-95.351173],[43.77676,-95.351578],[43.77655,-95.351646],[43.776489,-95.351753],[43.775162,-95.353722],[43.77496,-95.353821],[43.774891,-95.354134],[43.766331,-95.367279],[43.766121,-95.36747],[43.76606,-95.367691],[43.76395,-95.370949],[43.76379,-95.371193],[43.76368,-95.371483],[43.763309,-95.371674],[43.763271,-95.371948],[43.761391,-95.374809],[43.761211,-95.375267],[43.76107,-95.37574],[43.76046,-95.376297],[43.758308,-95.379623],[43.749962,-95.392548],[43.747871,-95.395782],[43.746471,-95.397957],[43.734051,-95.417084],[43.731869,-95.420441],[43.72197,-95.435608],[43.721561,-95.436142],[43.717239,-95.443024],[43.712311,-95.450722],[43.710831,-95.453033],[43.71011,-95.454193],[43.709991,-95.454376],[43.709381,-95.455299],[43.708031,-95.457458],[43.707378,-95.458366],[43.706409,-95.459892],[43.704891,-95.462227],[43.70483,-95.462334],[43.704479,-95.462914],[43.7043,-95.463188],[43.70332,-95.46479],[43.70303,-95.465263],[43.702129,-95.466766],[43.700809,-95.468842],[43.700062,-95.469994],[43.69981,-95.47036],[43.698978,-95.471603],[43.69838,-95.472527],[43.69812,-95.472931],[43.69725,-95.474159],[43.69688,-95.474701],[43.696079,-95.475868],[43.695221,-95.477142],[43.694439,-95.478363],[43.693459,-95.479828],[43.692478,-95.481354],[43.691639,-95.482651],[43.689499,-95.485947],[43.688492,-95.487534],[43.688351,-95.487747],[43.687611,-95.488861],[43.68745,-95.489113],[43.685589,-95.491982],[43.684299,-95.493973],[43.683281,-95.495506],[43.681389,-95.498398],[43.680859,-95.499207],[43.68029,-95.500099],[43.679008,-95.502068],[43.676151,-95.506447],[43.673981,-95.509804],[43.673191,-95.511017],[43.672421,-95.512238],[43.671169,-95.514183],[43.670559,-95.515129],[43.669331,-95.516998],[43.66819,-95.5187],[43.667229,-95.520187],[43.66647,-95.521347],[43.665958,-95.522148],[43.664268,-95.524773],[43.664169,-95.52491],[43.66283,-95.52697],[43.661839,-95.528519],[43.660912,-95.529922],[43.660568,-95.530441],[43.659969,-95.531357],[43.657879,-95.534607],[43.655998,-95.537468],[43.653271,-95.541946],[43.65147,-95.544693],[43.649681,-95.547394],[43.647961,-95.549927],[43.6478,-95.550171],[43.647659,-95.550377],[43.647491,-95.550621],[43.646751,-95.551773],[43.64632,-95.552437],[43.644951,-95.554543],[43.644501,-95.555229],[43.644211,-95.555687],[43.6427,-95.557999],[43.641121,-95.560448],[43.640202,-95.561867],[43.638599,-95.564301],[43.63866,-95.564484],[43.63871,-95.564629],[43.638901,-95.565567],[43.638981,-95.566116],[43.63903,-95.566994],[43.639,-95.567528],[43.638962,-95.567734],[43.638889,-95.567963],[43.638721,-95.568382],[43.638432,-95.568916],[43.63826,-95.569237],[43.638069,-95.569733],[43.637981,-95.570061],[43.637932,-95.570381],[43.637871,-95.570808],[43.637779,-95.571457],[43.637791,-95.574043],[43.637791,-95.574829],[43.637989,-95.589272],[43.63802,-95.593109],[43.63802,-95.594048],[43.63802,-95.596657],[43.63802,-95.597351],[43.63802,-95.598511],[43.637951,-95.605927],[43.637909,-95.608337],[43.637901,-95.61058],[43.63789,-95.611794],[43.637878,-95.613113],[43.63789,-95.617432],[43.63789,-95.618782],[43.63789,-95.622948],[43.63789,-95.624184],[43.63789,-95.625008],[43.63792,-95.628693],[43.637939,-95.632927],[43.637939,-95.633087],[43.637932,-95.633453],[43.637829,-95.648323],[43.637791,-95.653557],[43.637791,-95.654457],[43.63781,-95.657509],[43.637859,-95.664597],[43.638008,-95.685417],[43.63802,-95.688004],[43.63805,-95.694382],[43.638149,-95.718941],[43.638241,-95.731743],[43.638222,-95.735123],[43.638161,-95.738724],[43.638111,-95.74231],[43.63792,-95.750328],[43.637859,-95.760986],[43.637798,-95.773949],[43.637779,-95.780899],[43.637741,-95.789207],[43.63773,-95.793007],[43.637661,-95.797783],[43.637589,-95.802933],[43.637508,-95.807602],[43.637451,-95.8125],[43.637421,-95.814003],[43.637428,-95.814301],[43.637562,-95.824753],[43.637691,-95.83532],[43.637569,-95.854469],[43.637661,-95.873734],[43.637669,-95.874657],[43.637669,-95.875],[43.637741,-95.877037],[43.63802,-95.888924],[43.6381,-95.892471],[43.6381,-95.896133],[43.637878,-95.908234],[43.63792,-95.909378],[43.637951,-95.909981],[43.638031,-95.910637],[43.63813,-95.911263],[43.638241,-95.911942],[43.638401,-95.912621],[43.638531,-95.913177],[43.638691,-95.913742],[43.638779,-95.914009],[43.63884,-95.914177],[43.63905,-95.914772],[43.642208,-95.922447],[43.6427,-95.923759],[43.64299,-95.924751],[43.64344,-95.926422],[43.643829,-95.928467],[43.64397,-95.929672],[43.644081,-95.930817],[43.644138,-95.932426],[43.644131,-95.932762],[43.644119,-95.933647],[43.644112,-95.933907],[43.644051,-95.934837],[43.64397,-95.935661],[43.643848,-95.936668],[43.643761,-95.937233],[43.64373,-95.9375],[43.643532,-95.938606],[43.643341,-95.939461],[43.643059,-95.940521],[43.642792,-95.941483],[43.64246,-95.942398],[43.64241,-95.942543],[43.641239,-95.945648],[43.64109,-95.946053],[43.6409,-95.946564],[43.638741,-95.952393],[43.638241,-95.953972],[43.638,-95.955017],[43.637859,-95.955803],[43.637741,-95.956673],[43.63768,-95.957314],[43.63763,-95.958633],[43.637642,-95.961113],[43.637642,-95.963577],[43.63765,-95.967056],[43.637661,-95.970337],[43.637661,-95.97393],[43.637661,-95.988281],[43.637661,-95.989014],[43.637718,-95.99836],[43.63773,-96],[43.637741,-96.002029],[43.637791,-96.009819],[43.637829,-96.013489],[43.637791,-96.027382],[43.63773,-96.052399],[43.637711,-96.058418],[43.637859,-96.072441],[43.63781,-96.077423],[43.63781,-96.08149],[43.637791,-96.08802],[43.637791,-96.089058],[43.63781,-96.092293],[43.637852,-96.095016],[43.63784,-96.097343],[43.63781,-96.100418],[43.637821,-96.117104],[43.63773,-96.13237],[43.63773,-96.137543],[43.637791,-96.149544],[43.63773,-96.171402],[43.637718,-96.1726],[43.637711,-96.173523],[43.637699,-96.175369],[43.637711,-96.190697],[43.637852,-96.194054],[43.639221,-96.207764],[43.639599,-96.212433],[43.639599,-96.21386],[43.639462,-96.2164],[43.6394,-96.217323],[43.63776,-96.234421],[43.63689,-96.243233],[43.63657,-96.245934],[43.63623,-96.247704],[43.635818,-96.249191],[43.63121,-96.263153],[43.62796,-96.272636],[43.62759,-96.27372],[43.627201,-96.274872],[43.62384,-96.284927],[43.619419,-96.298073],[43.618,-96.302063],[43.614368,-96.31385],[43.612289,-96.320717],[43.611141,-96.324738],[43.60923,-96.3312],[43.608978,-96.33252],[43.608879,-96.333641],[43.608799,-96.337601],[43.608742,-96.342903],[43.608669,-96.347366],[43.608662,-96.351311],[43.608662,-96.35405],[43.608639,-96.358078],[43.60865,-96.359001],[43.608639,-96.375221],[43.608662,-96.377037],[43.6087,-96.384354],[43.608971,-96.413002],[43.608971,-96.429291],[43.609051,-96.435593],[43.609138,-96.446678],[43.60915,-96.447273],[43.609131,-96.453392],[43.60915,-96.456444],[43.6091,-96.465027],[43.608891,-96.488747],[43.608849,-96.495659],[43.608631,-96.512917],[43.608501,-96.529083],[43.60841,-96.54248],[43.608639,-96.552742],[43.608662,-96.566788],[43.608669,-96.568047],[43.608669,-96.571404],[43.6087,-96.572304],[43.608791,-96.574341],[43.608799,-96.574562],[43.60886,-96.575546],[43.60886,-96.575951],[43.609001,-96.578957],[43.609249,-96.583969],[43.609409,-96.587547],[43.60944,-96.595871],[43.60944,-96.606354],[43.60955,-96.610497],[43.60968,-96.612129],[43.609741,-96.612793],[43.60994,-96.614777],[43.610069,-96.616203],[43.61026,-96.618263],[43.610321,-96.619041],[43.610401,-96.620483],[43.610439,-96.62191],[43.610451,-96.624496],[43.610458,-96.626068],[43.61047,-96.628082],[43.610481,-96.63163],[43.610489,-96.633003],[43.610519,-96.637077],[43.610489,-96.639763],[43.610371,-96.641327],[43.60994,-96.644279],[43.609402,-96.647629],[43.608669,-96.652153],[43.60833,-96.654266],[43.608181,-96.655327],[43.60815,-96.65567],[43.60812,-96.655991],[43.60804,-96.656883],[43.608021,-96.657242],[43.60799,-96.657822],[43.607979,-96.658592],[43.60796,-96.658897],[43.608009,-96.666557],[43.608021,-96.66777],[43.608028,-96.670624],[43.60804,-96.672302],[43.608051,-96.672699],[43.608051,-96.674294],[43.608028,-96.675491],[43.608002,-96.676247],[43.60796,-96.677177],[43.607891,-96.67823],[43.607792,-96.679428],[43.607479,-96.682892],[43.607021,-96.688148],[43.606941,-96.689056],[43.606899,-96.689743],[43.60685,-96.690323],[43.60677,-96.691177],[43.606701,-96.691902],[43.60675,-96.692291],[43.606831,-96.692619],[43.606899,-96.692802],[43.607059,-96.693039],[43.607239,-96.693161],[43.60746,-96.69323],[43.607609,-96.693207],[43.6077,-96.693161],[43.60788,-96.693024],[43.607948,-96.692932],[43.60804,-96.692757],[43.608109,-96.692413],[43.608089,-96.692001],[43.608002,-96.691673],[43.607941,-96.691513],[43.60778,-96.691277],[43.60767,-96.691147],[43.607571,-96.691071],[43.607231,-96.690887],[43.605999,-96.690903],[43.604752,-96.690903],[43.604481,-96.690903],[43.603119,-96.690903],[43.60302,-96.690903],[43.602638,-96.690933],[43.600609,-96.690903],[43.59848,-96.690903],[43.598381,-96.69091],[43.598042,-96.690903],[43.59729,-96.690903],[43.597179,-96.690903],[43.59687,-96.690903],[43.595749,-96.690903],[43.594891,-96.690918],[43.594582,-96.690933],[43.594551,-96.690933],[43.594421,-96.690941],[43.593868,-96.690979],[43.59346,-96.691017],[43.593071,-96.691063],[43.592239,-96.691177],[43.591591,-96.691277],[43.590931,-96.691406],[43.590519,-96.691513],[43.589191,-96.691833],[43.585758,-96.692673],[43.583031,-96.693298],[43.583012,-96.693314],[43.581638,-96.693466],[43.580181,-96.693573],[43.580051,-96.693581],[43.575451,-96.693581],[43.570412,-96.693611],[43.569099,-96.693619],[43.567829,-96.693626],[43.567348,-96.693626],[43.56699,-96.693672],[43.566872,-96.693703],[43.566669,-96.693764],[43.566471,-96.693848],[43.566319,-96.693916],[43.566189,-96.694008],[43.566051,-96.694107],[43.565731,-96.694382],[43.565269,-96.694801],[43.564999,-96.695023],[43.56488,-96.695099],[43.56469,-96.695168],[43.56456,-96.695198],[43.56443,-96.695213],[43.564289,-96.695213],[43.564159,-96.69516],[43.564079,-96.695122],[43.563721,-96.695068],[43.563141,-96.694923],[43.562592,-96.696426],[43.562321,-96.696426],[43.561741,-96.696426],[43.561562,-96.696426],[43.561119,-96.696426],[43.560341,-96.696426],[43.559849,-96.696442],[43.559731,-96.696487],[43.559639,-96.696571],[43.55954,-96.696678],[43.559471,-96.696808],[43.559101,-96.697952],[43.559052,-96.698051],[43.55901,-96.698112],[43.558949,-96.698181],[43.558842,-96.698303],[43.558781,-96.698341],[43.55864,-96.698402],[43.55846,-96.698433],[43.558449,-96.697197],[43.557072,-96.697189],[43.556259,-96.697166],[43.556271,-96.698936],[43.556271,-96.699303],[43.556271,-96.699478],[43.556259,-96.699654],[43.556179,-96.699783],[43.556011,-96.700027],[43.554451,-96.698334],[43.55217,-96.695801],[43.551811,-96.696281],[43.551701,-96.696426],[43.551201,-96.696426],[43.550301,-96.696442],[43.549389,-96.696426],[43.548489,-96.696426],[43.547569,-96.696426],[43.546761,-96.696426],[43.546631,-96.696426],[43.546631,-96.695183],[43.5467,-96.694801],[43.5466,-96.694679],[43.546551,-96.694633],[43.54652,-96.694603],[43.546341,-96.694527],[43.546261,-96.694511],[43.545879,-96.694473],[43.545528,-96.694412],[43.545158,-96.694344],[43.544861,-96.694267],[43.544411,-96.694153],[43.542969,-96.694107],[43.542149,-96.694107],[43.54031,-96.694107],[43.538342,-96.694008],[43.53828,-96.694],[43.537449,-96.694],[43.536301,-96.694],[43.536072,-96.694038],[43.53566,-96.694122],[43.535332,-96.694237],[43.53495,-96.694443],[43.534519,-96.694748],[43.534222,-96.695007],[43.534,-96.695236],[43.533611,-96.69574],[43.532959,-96.696564],[43.531681,-96.698189],[43.530941,-96.69912],[43.530258,-96.699921],[43.529888,-96.700302],[43.529591,-96.700684],[43.52903,-96.701202],[43.52877,-96.701431],[43.52747,-96.702187],[43.52655,-96.70266],[43.52198,-96.704727],[43.521709,-96.704857],[43.521049,-96.705162],[43.519951,-96.705627],[43.519909,-96.705643],[43.519279,-96.70594],[43.518742,-96.706207],[43.518059,-96.706551],[43.517872,-96.70668],[43.517609,-96.706902],[43.517319,-96.707176],[43.517139,-96.707397],[43.516911,-96.707626],[43.516682,-96.707947],[43.516411,-96.708321],[43.516258,-96.708557],[43.516109,-96.708847],[43.51585,-96.709427],[43.51577,-96.709702],[43.515659,-96.709961],[43.515591,-96.710152],[43.515541,-96.710373],[43.515419,-96.710999],[43.515362,-96.711243],[43.51519,-96.712067],[43.514549,-96.715157],[43.513409,-96.720207],[43.51255,-96.72419],[43.512051,-96.726227],[43.511921,-96.7267],[43.511688,-96.727463],[43.510429,-96.730743],[43.510109,-96.731598],[43.50909,-96.734291],[43.504662,-96.746033],[43.502411,-96.751907],[43.50198,-96.753052],[43.501301,-96.754837],[43.500481,-96.756989],[43.498699,-96.76178],[43.498268,-96.76284],[43.498058,-96.763382],[43.49791,-96.763786],[43.497471,-96.764954],[43.497082,-96.765953],[43.4967,-96.766983],[43.496422,-96.767731],[43.49609,-96.76857],[43.495689,-96.769623],[43.495312,-96.770699],[43.49509,-96.771431],[43.4949,-96.772118],[43.49474,-96.772774],[43.494579,-96.773514],[43.494419,-96.774323],[43.49424,-96.775368],[43.49411,-96.776337],[43.49398,-96.777367],[43.493919,-96.777809],[43.493839,-96.778328],[43.49371,-96.779167],[43.493679,-96.779404],[43.493591,-96.780006],[43.493488,-96.780724],[43.49334,-96.7817],[43.493099,-96.783363],[43.492851,-96.785004],[43.49258,-96.786583],[43.49229,-96.78801],[43.49226,-96.788162],[43.491951,-96.78952],[43.491638,-96.790817],[43.491249,-96.79229],[43.49118,-96.792549],[43.490662,-96.794441],[43.49052,-96.794861],[43.490379,-96.795227],[43.49025,-96.795509],[43.490181,-96.795662],[43.48962,-96.796654],[43.48933,-96.79702],[43.489059,-96.797333],[43.488659,-96.797729],[43.488289,-96.798027],[43.487911,-96.798279],[43.487541,-96.798477],[43.48716,-96.798637],[43.486771,-96.798759],[43.486401,-96.79882],[43.486012,-96.798866],[43.485649,-96.798859],[43.485352,-96.798828],[43.485039,-96.798767],[43.48473,-96.798683],[43.48436,-96.798553],[43.482761,-96.797867],[43.481461,-96.79731],[43.480881,-96.797081],[43.480419,-96.796944],[43.479679,-96.796806],[43.479351,-96.796791],[43.476318,-96.796783],[43.476051,-96.796783],[43.474281,-96.796799],[43.473221,-96.796829],[43.47221,-96.796883],[43.469261,-96.797096],[43.46349,-96.797493],[43.46167,-96.797623],[43.46003,-96.797729],[43.457458,-96.797882],[43.455261,-96.798058],[43.45282,-96.798233],[43.451832,-96.798271],[43.451401,-96.798264],[43.450951,-96.79821],[43.44939,-96.798058],[43.44754,-96.797836],[43.44677,-96.797768],[43.44548,-96.79763],[43.44186,-96.797249],[43.440491,-96.797096],[43.439289,-96.796967],[43.439018,-96.796944],[43.435711,-96.796562],[43.435631,-96.796547],[43.43399,-96.796387],[43.433399,-96.796387],[43.429489,-96.796356],[43.4291,-96.796387],[43.42635,-96.796516],[43.425381,-96.79657],[43.423519,-96.796669],[43.420551,-96.796806],[43.420109,-96.796829],[43.418621,-96.796829],[43.41774,-96.796806],[43.417339,-96.796799],[43.41637,-96.796783],[43.412441,-96.796677],[43.410992,-96.796654],[43.409691,-96.796631],[43.40686,-96.796593],[43.40337,-96.796516],[43.402809,-96.796516],[43.402458,-96.796509],[43.40078,-96.796494],[43.397671,-96.796494],[43.3955,-96.796501],[43.39518,-96.796501],[43.393349,-96.796509],[43.390751,-96.796509],[43.384621,-96.796471],[43.383171,-96.796471],[43.380951,-96.796471],[43.370701,-96.796501],[43.37019,-96.796509],[43.368591,-96.796516],[43.366611,-96.796509],[43.362839,-96.796501],[43.360661,-96.796516],[43.358799,-96.796501],[43.356991,-96.796516],[43.35532,-96.796532],[43.3507,-96.796547],[43.34906,-96.796547],[43.34782,-96.79657],[43.34613,-96.79657],[43.344391,-96.796593],[43.34306,-96.796593],[43.338539,-96.796608],[43.33802,-96.796623],[43.33289,-96.796623],[43.33123,-96.796623],[43.327591,-96.796654],[43.32663,-96.796654],[43.325241,-96.796669],[43.324039,-96.796677],[43.322361,-96.796669],[43.32103,-96.796654],[43.319328,-96.796623],[43.31443,-96.796562],[43.308189,-96.796471],[43.3046,-96.79641],[43.303951,-96.796402],[43.300678,-96.796379],[43.298561,-96.796402],[43.2967,-96.796417],[43.29467,-96.796417],[43.29229,-96.796417],[43.29063,-96.796417],[43.288841,-96.796432],[43.28717,-96.796417],[43.284382,-96.79641],[43.27993,-96.79641],[43.278839,-96.79641],[43.27652,-96.79641],[43.2738,-96.79641],[43.263592,-96.796387],[43.26326,-96.796387],[43.260639,-96.796387],[43.258839,-96.796356],[43.25507,-96.796356],[43.250999,-96.796349],[43.250011,-96.796356],[43.24754,-96.796371],[43.243401,-96.796341],[43.239399,-96.796318],[43.235409,-96.796272],[43.235191,-96.796272],[43.230961,-96.796249],[43.22879,-96.796219],[43.226379,-96.796204],[43.222809,-96.796173],[43.219379,-96.79615],[43.21907,-96.79615],[43.21743,-96.796127],[43.217079,-96.796127],[43.21051,-96.796097],[43.21006,-96.796097],[43.209,-96.796097],[43.205391,-96.796066],[43.202419,-96.796051],[43.198559,-96.796013],[43.194881,-96.795982],[43.191399,-96.795959],[43.185989,-96.795937],[43.185181,-96.795937],[43.18222,-96.795914],[43.17931,-96.795883],[43.175591,-96.795883],[43.173759,-96.795853],[43.167648,-96.795837],[43.16589,-96.795807],[43.16098,-96.795776],[43.157791,-96.795753],[43.156311,-96.795753],[43.15485,-96.795769],[43.1525,-96.795929],[43.149971,-96.79615],[43.147449,-96.796387],[43.147228,-96.79641],[43.14542,-96.796577],[43.144482,-96.796654],[43.143051,-96.796829],[43.14167,-96.79689],[43.140999,-96.796913],[43.140079,-96.796928],[43.13644,-96.796913],[43.129971,-96.796944],[43.123951,-96.796951],[43.122341,-96.796913],[43.121761,-96.796913],[43.121281,-96.796921],[43.120609,-96.796913],[43.12014,-96.796913],[43.119541,-96.79689],[43.118889,-96.796867],[43.118019,-96.796837],[43.116779,-96.796783],[43.11462,-96.7967],[43.113739,-96.796669],[43.112709,-96.796623],[43.11166,-96.796577],[43.11034,-96.796516],[43.106651,-96.796371],[43.105251,-96.796333],[43.104069,-96.796333],[43.10075,-96.796333],[43.099789,-96.796333],[43.09819,-96.796333],[43.096722,-96.796333],[43.092949,-96.796333],[43.0882,-96.796318],[43.080021,-96.796257],[43.075489,-96.79615],[43.064579,-96.795937],[43.054611,-96.795753],[43.041088,-96.795761],[43.03915,-96.795776],[43.014629,-96.795822],[43.011341,-96.795853],[43.011002,-96.795853],[43.007809,-96.795853],[43.000118,-96.795822],[42.99667,-96.795738],[42.993111,-96.795647],[42.992161,-96.795631],[42.986382,-96.795486],[42.982658,-96.795403],[42.98111,-96.795372],[42.973122,-96.795158],[42.96846,-96.795036],[42.960312,-96.795067],[42.959702,-96.795082],[42.95726,-96.795036],[42.949829,-96.795082],[42.939789,-96.795097],[42.93829,-96.79512],[42.93301,-96.795082],[42.92733,-96.79512],[42.92453,-96.79512],[42.917179,-96.79512],[42.910511,-96.795174],[42.909382,-96.795174],[42.89521,-96.795212],[42.887451,-96.795387],[42.880791,-96.795593],[42.87492,-96.795776],[42.865459,-96.796021],[42.860561,-96.796173],[42.855301,-96.796204],[42.848301,-96.796173],[42.84668,-96.796181],[42.84634,-96.796181],[42.837261,-96.796143],[42.83049,-96.796097],[42.822769,-96.796097],[42.815399,-96.796097],[42.808071,-96.796066],[42.80085,-96.796097],[42.795792,-96.796097],[42.794689,-96.795998],[42.793468,-96.795677],[42.79277,-96.795418],[42.791889,-96.794983],[42.789989,-96.793694],[42.789089,-96.793114],[42.78376,-96.789513],[42.780258,-96.787193],[42.779652,-96.786743],[42.77919,-96.786362],[42.778309,-96.785637],[42.777168,-96.78447],[42.770931,-96.776657],[42.764759,-96.767113],[42.763721,-96.765633],[42.749519,-96.747253],[42.735451,-96.727127],[42.720829,-96.707451],[42.715759,-96.700653],[42.714352,-96.699333],[42.713112,-96.698471],[42.71199,-96.697937],[42.711048,-96.697617],[42.709579,-96.697403],[42.694881,-96.697357],[42.69437,-96.697372],[42.692268,-96.697357],[42.691799,-96.697372],[42.691051,-96.697372],[42.688412,-96.69735],[42.687389,-96.697182],[42.686401,-96.696869],[42.685181,-96.696251],[42.684219,-96.695641],[42.683159,-96.69474],[42.682251,-96.693764],[42.67942,-96.690071],[42.6749,-96.683952],[42.674389,-96.683121],[42.673901,-96.682098],[42.66927,-96.669777],[42.668652,-96.668121],[42.6675,-96.665024],[42.666489,-96.662231],[42.664589,-96.65715],[42.663731,-96.655296],[42.66304,-96.654167],[42.662331,-96.653183],[42.657711,-96.646767],[42.65226,-96.639267],[42.649521,-96.635536],[42.64563,-96.630676],[42.64188,-96.626007],[42.637791,-96.620399],[42.63364,-96.614609],[42.62817,-96.60701],[42.623409,-96.600189],[42.619709,-96.594917],[42.618881,-96.593842],[42.61338,-96.587067],[42.607128,-96.579407],[42.60313,-96.574501],[42.598221,-96.568459],[42.597111,-96.566994],[42.595371,-96.564537],[42.587818,-96.55352],[42.582199,-96.54541],[42.579121,-96.54129],[42.57621,-96.537392],[42.5728,-96.533043],[42.568981,-96.528091],[42.56292,-96.520737],[42.560581,-96.51815],[42.55785,-96.515244],[42.55687,-96.514313],[42.552662,-96.510948],[42.552139,-96.510536],[42.548141,-96.507347],[42.54768,-96.506981],[42.543629,-96.503777],[42.541271,-96.501907],[42.54023,-96.501297],[42.538349,-96.500427],[42.536701,-96.499977],[42.53524,-96.499763],[42.53273,-96.499702],[42.52845,-96.499611],[42.527088,-96.49958],[42.52491,-96.49958],[42.524441,-96.499573],[42.521969,-96.499527],[42.520981,-96.499527],[42.51936,-96.49929],[42.517891,-96.498863],[42.516151,-96.498161],[42.514549,-96.497139],[42.511501,-96.494926],[42.509178,-96.493233],[42.507519,-96.492058],[42.50573,-96.490898],[42.502579,-96.488937],[42.499859,-96.487221],[42.498669,-96.486328],[42.497959,-96.48542],[42.497311,-96.484352],[42.496891,-96.483253],[42.495419,-96.47818],[42.495152,-96.477226],[42.494881,-96.476257],[42.493889,-96.472847],[42.493721,-96.472214],[42.493591,-96.471649],[42.493488,-96.471153],[42.493359,-96.47036],[42.493118,-96.468803],[42.493031,-96.467957],[42.492981,-96.467178],[42.492981,-96.466507],[42.493019,-96.465828],[42.493061,-96.46521],[42.493198,-96.463158],[42.493431,-96.460312],[42.4935,-96.459297],[42.493549,-96.458557],[42.493568,-96.457764],[42.493568,-96.45739],[42.493519,-96.456879],[42.493462,-96.456467],[42.493111,-96.454674],[42.492661,-96.452232],[42.492401,-96.450317],[42.491959,-96.447311],[42.49176,-96.445992],[42.491699,-96.445557],[42.49155,-96.444656],[42.49144,-96.443863],[42.49136,-96.443192],[42.49131,-96.442596],[42.49128,-96.442039],[42.49128,-96.44165],[42.491299,-96.440903],[42.491322,-96.4403],[42.491428,-96.4375],[42.491508,-96.435097],[42.491581,-96.433647],[42.491661,-96.431427],[42.491741,-96.430367],[42.491711,-96.429832],[42.491699,-96.428772],[42.491669,-96.42762],[42.49165,-96.426849],[42.49157,-96.425827],[42.491489,-96.424431],[42.491482,-96.424278],[42.491451,-96.423767],[42.491402,-96.423172],[42.491348,-96.42244],[42.49136,-96.422142],[42.49139,-96.421928],[42.491428,-96.4217],[42.49147,-96.421494],[42.491611,-96.420921],[42.49165,-96.420753],[42.49173,-96.420502],[42.491791,-96.420052],[42.491852,-96.419647],[42.491859,-96.419182],[42.491798,-96.418007],[42.491661,-96.416519],[42.491631,-96.416161],[42.4916,-96.41568],[42.491508,-96.414467],[42.49139,-96.414108],[42.491341,-96.413971],[42.491299,-96.413887],[42.491219,-96.413834],[42.491119,-96.41378],[42.490829,-96.413727],[42.490662,-96.413712],[42.490452,-96.413696],[42.490181,-96.413673],[42.48996,-96.413643],[42.489471,-96.413628],[42.488529,-96.413643],[42.488091,-96.413651],[42.487629,-96.413689],[42.487171,-96.413727],[42.486721,-96.413757],[42.48642,-96.413788],[42.485809,-96.413818],[42.485519,-96.413811],[42.485321,-96.413803],[42.485081,-96.413803],[42.484268,-96.413689],[42.48391,-96.413597],[42.483688,-96.413429],[42.483189,-96.413254],[42.48288,-96.413147],[42.482811,-96.413147],[42.48278,-96.413147],[42.482521,-96.413116],[42.48188,-96.413116],[42.481071,-96.413116],[42.480949,-96.413116],[42.48093,-96.413116],[42.48,-96.413116],[42.47908,-96.413116],[42.478191,-96.413139],[42.47728,-96.413147],[42.476379,-96.413147],[42.47588,-96.413147],[42.475471,-96.413162],[42.474529,-96.41317],[42.474461,-96.4132],[42.474411,-96.413239],[42.474232,-96.413399],[42.473759,-96.413818],[42.47364,-96.413933],[42.473461,-96.413948],[42.472729,-96.413948],[42.472691,-96.413948],[42.471771,-96.413963],[42.471741,-96.413963],[42.471249,-96.413963],[42.470779,-96.413963],[42.470299,-96.413979],[42.469849,-96.414001],[42.469139,-96.414009],[42.46888,-96.414017],[42.46888,-96.412483],[42.46888,-96.412453],[42.46888,-96.411926],[42.46888,-96.410896],[42.46983,-96.410912],[42.469841,-96.41243],[42.469841,-96.413147],[42.469849,-96.414001],[42.470299,-96.413979],[42.470779,-96.413963],[42.471249,-96.413963],[42.471741,-96.413963],[42.471771,-96.413963],[42.472691,-96.413948],[42.472729,-96.413948],[42.473461,-96.413948],[42.47364,-96.413933],[42.473759,-96.413818],[42.474232,-96.413399],[42.474411,-96.413239],[42.474461,-96.4132],[42.474529,-96.41317],[42.475471,-96.413162],[42.47588,-96.413147],[42.476379,-96.413147],[42.47728,-96.413147],[42.478191,-96.413139],[42.47908,-96.413116],[42.48,-96.413116],[42.48093,-96.413116],[42.480949,-96.413116],[42.481071,-96.413116],[42.48188,-96.413116],[42.482521,-96.413116],[42.48278,-96.413147],[42.482811,-96.413147],[42.48288,-96.413147],[42.483189,-96.413254],[42.483688,-96.413429],[42.483879,-96.413368],[42.484489,-96.413544],[42.48534,-96.413681],[42.485531,-96.413696],[42.485821,-96.413689],[42.486408,-96.413658],[42.486721,-96.413643],[42.487171,-96.413597],[42.487621,-96.413567],[42.48806,-96.413528],[42.488548,-96.413422],[42.488831,-96.413383],[42.489182,-96.413322],[42.489449,-96.413277],[42.489792,-96.413223],[42.49012,-96.413139],[42.490261,-96.413094],[42.490662,-96.412933],[42.490929,-96.412781],[42.491112,-96.412697],[42.49131,-96.412582],[42.49157,-96.412453],[42.491741,-96.412354],[42.491959,-96.413223],[42.492088,-96.413803],[42.492191,-96.414436],[42.492241,-96.414886],[42.49218,-96.416199],[42.492168,-96.416367],[42.492149,-96.416748],[42.492142,-96.416946],[42.49213,-96.417664],[42.492142,-96.418198],[42.492199,-96.41954],[42.49221,-96.419891],[42.49221,-96.420509],[42.492161,-96.421593],[42.492149,-96.42186],[42.492088,-96.423233],[42.492081,-96.424072],[42.492062,-96.424721],[42.49202,-96.425774],[42.49197,-96.426804],[42.49192,-96.427971],[42.491852,-96.430107],[42.491791,-96.431999],[42.491741,-96.43306],[42.491711,-96.434029],[42.491661,-96.435081],[42.49157,-96.437149],[42.491539,-96.43792],[42.49152,-96.438477],[42.491501,-96.439041],[42.491489,-96.439796],[42.49147,-96.4403],[42.491451,-96.44062],[42.491428,-96.441757],[42.491459,-96.442436],[42.491489,-96.443024],[42.491619,-96.444077],[42.49173,-96.444847],[42.491852,-96.445557],[42.49189,-96.445953],[42.492039,-96.447113],[42.492298,-96.448761],[42.492458,-96.450073],[42.492771,-96.452171],[42.492981,-96.453377],[42.49329,-96.454826],[42.493591,-96.45639],[42.493649,-96.456841],[42.49371,-96.457176],[42.493721,-96.457603],[42.493721,-96.458153],[42.493721,-96.458557],[42.49366,-96.459373],[42.493599,-96.460327],[42.493382,-96.463219],[42.49324,-96.465149],[42.493198,-96.465828],[42.493172,-96.466507],[42.493191,-96.467201],[42.49324,-96.467957],[42.49334,-96.468803],[42.493599,-96.47036],[42.49371,-96.471062],[42.49382,-96.471581],[42.49395,-96.47216],[42.494122,-96.472778],[42.49511,-96.476196],[42.495392,-96.477188],[42.495659,-96.478127],[42.49712,-96.48304],[42.497551,-96.48407],[42.49802,-96.48497],[42.498539,-96.485672],[42.499409,-96.486488],[42.500271,-96.487007],[42.502499,-96.48851],[42.50354,-96.489151],[42.504139,-96.489479],[42.50457,-96.489777],[42.50489,-96.489967],[42.50666,-96.491127],[42.50782,-96.491852],[42.509369,-96.492867],[42.509949,-96.493317],[42.510281,-96.493568],[42.511391,-96.49437],[42.514359,-96.496628],[42.515331,-96.497299],[42.516312,-96.497833],[42.51799,-96.498512],[42.518719,-96.498688],[42.519428,-96.498863],[42.520859,-96.499062],[42.521111,-96.499092],[42.521519,-96.499138],[42.521679,-96.499161],[42.522129,-96.499184],[42.524448,-96.49926],[42.524921,-96.499268],[42.528301,-96.499283],[42.535271,-96.499458],[42.53672,-96.499687],[42.53854,-96.500183],[42.54007,-96.500847],[42.5406,-96.501137],[42.541561,-96.501747],[42.543758,-96.503517],[42.548092,-96.506927],[42.552292,-96.510246],[42.553841,-96.511513],[42.556709,-96.513771],[42.557869,-96.514862],[42.561039,-96.518211],[42.563702,-96.521217],[42.568249,-96.526711],[42.573818,-96.533867],[42.57563,-96.536186],[42.57682,-96.537682],[42.578781,-96.540367],[42.58062,-96.542824],[42.58287,-96.545891],[42.586891,-96.551727],[42.590431,-96.556877],[42.596062,-96.565063],[42.597691,-96.56736],[42.603062,-96.574013],[42.603611,-96.574638],[42.607079,-96.578918],[42.618389,-96.592812],[42.619282,-96.593903],[42.61977,-96.594566],[42.620781,-96.595963],[42.625011,-96.601997],[42.6273,-96.605347],[42.628441,-96.606903],[42.634499,-96.615318],[42.638039,-96.620247],[42.64212,-96.625877],[42.64439,-96.6287],[42.64994,-96.635674],[42.652088,-96.638557],[42.65667,-96.644821],[42.658241,-96.647011],[42.66328,-96.653976],[42.664009,-96.655251],[42.664871,-96.657089],[42.666691,-96.662117],[42.667839,-96.665108],[42.668999,-96.668282],[42.67416,-96.68206],[42.675079,-96.683777],[42.67725,-96.686752],[42.67841,-96.688232],[42.682442,-96.693573],[42.68325,-96.694397],[42.684311,-96.695312],[42.685341,-96.696007],[42.68631,-96.696442],[42.687611,-96.696823],[42.688389,-96.696983],[42.68927,-96.697006],[42.6917,-96.697006],[42.69212,-96.697006],[42.69413,-96.697006],[42.694271,-96.697006],[42.694759,-96.697006],[42.706661,-96.697006],[42.709591,-96.697037],[42.711182,-96.697281],[42.712078,-96.697563],[42.713261,-96.698174],[42.71452,-96.699043],[42.715988,-96.700439],[42.720821,-96.70694],[42.72155,-96.707932],[42.735909,-96.727272],[42.745461,-96.740967],[42.749989,-96.747398],[42.752079,-96.750092],[42.75779,-96.757477],[42.763882,-96.765388],[42.764961,-96.766907],[42.77005,-96.774857],[42.77116,-96.776489],[42.777222,-96.784126],[42.778412,-96.785339],[42.77927,-96.78611],[42.77972,-96.78643],[42.78027,-96.786812],[42.78299,-96.788673],[42.783718,-96.789146],[42.78878,-96.792557],[42.791969,-96.794647],[42.792809,-96.795082],[42.793541,-96.795387],[42.794701,-96.79567],[42.795769,-96.795799],[42.800789,-96.795776],[42.808109,-96.795776],[42.815441,-96.795776],[42.83725,-96.795807],[42.846199,-96.795853],[42.84655,-96.795853],[42.848251,-96.795853],[42.85535,-96.795898],[42.860569,-96.795853],[42.865551,-96.795708],[42.87495,-96.795464],[42.88073,-96.795303],[42.88744,-96.795097],[42.895168,-96.794907],[42.90937,-96.794868],[42.910439,-96.794853],[42.917179,-96.794807],[42.9245,-96.79483],[42.927429,-96.794807],[42.932991,-96.794823],[42.938309,-96.794777],[42.939758,-96.794777],[42.94978,-96.794739],[42.957272,-96.794701],[42.959492,-96.794701],[42.960289,-96.794724],[42.968441,-96.794693],[42.973099,-96.794823],[42.975281,-96.794884],[42.98114,-96.795013],[42.982651,-96.795067],[42.986721,-96.795174],[42.992279,-96.795303],[42.996658,-96.795403],[43.000179,-96.795486],[43.005829,-96.795517],[43.007912,-96.795517],[43.010979,-96.795509],[43.011341,-96.795509],[43.014629,-96.795502],[43.022572,-96.795486],[43.024109,-96.795471],[43.039101,-96.795448],[43.041069,-96.795448],[43.054611,-96.795418],[43.06464,-96.795624],[43.0755,-96.79583],[43.079891,-96.795929],[43.08358,-96.796013],[43.08617,-96.796013],[43.088692,-96.796013],[43.092949,-96.796028],[43.10075,-96.796021],[43.10302,-96.796013],[43.105282,-96.796028],[43.106449,-96.796059],[43.107269,-96.796097],[43.108028,-96.79612],[43.10886,-96.796173],[43.111519,-96.796257],[43.112709,-96.79631],[43.11578,-96.79644],[43.116428,-96.796471],[43.116982,-96.796494],[43.117901,-96.796516],[43.118919,-96.79657],[43.119541,-96.796593],[43.120899,-96.796608],[43.12318,-96.796608],[43.12392,-96.796593],[43.12989,-96.796593],[43.13097,-96.796593],[43.134048,-96.7966],[43.13924,-96.7966],[43.141331,-96.796562],[43.141682,-96.796547],[43.14246,-96.796501],[43.143169,-96.796463],[43.144562,-96.796333],[43.14539,-96.79628],[43.14735,-96.796066],[43.148312,-96.795998],[43.149319,-96.795914],[43.150909,-96.795753],[43.151939,-96.795647],[43.153561,-96.795517],[43.15424,-96.795471],[43.15493,-96.795448],[43.155739,-96.795433],[43.15844,-96.795441],[43.160912,-96.795471],[43.163712,-96.795471],[43.166431,-96.795486],[43.167648,-96.795486],[43.173759,-96.795517],[43.17411,-96.795517],[43.17749,-96.79557],[43.181122,-96.795578],[43.182362,-96.795593],[43.184952,-96.795609],[43.187511,-96.795609],[43.188789,-96.795624],[43.19133,-96.795631],[43.19471,-96.795677],[43.197659,-96.795692],[43.200481,-96.795692],[43.207321,-96.795753],[43.209278,-96.795769],[43.20982,-96.795769],[43.210468,-96.795776],[43.217411,-96.795822],[43.219101,-96.79583],[43.21941,-96.79583],[43.222431,-96.795853],[43.226799,-96.795891],[43.233871,-96.795937],[43.235409,-96.795959],[43.237179,-96.795982],[43.24049,-96.796013],[43.243599,-96.796021],[43.246941,-96.796021],[43.247559,-96.796028],[43.250011,-96.796043],[43.253922,-96.796028],[43.25507,-96.796043],[43.260609,-96.796059],[43.263401,-96.796066],[43.263729,-96.796066],[43.27383,-96.796066],[43.278488,-96.796097],[43.279968,-96.796097],[43.282219,-96.796112],[43.28569,-96.796097],[43.28717,-96.796112],[43.289341,-96.796127],[43.29063,-96.79612],[43.29237,-96.796112],[43.29467,-96.796089],[43.298248,-96.796051],[43.29882,-96.796051],[43.300388,-96.796043],[43.3041,-96.796066],[43.304569,-96.796089],[43.30854,-96.796173],[43.3125,-96.796204],[43.320042,-96.796318],[43.322571,-96.796349],[43.324471,-96.796349],[43.326439,-96.796333],[43.327621,-96.796333],[43.332569,-96.796318],[43.333012,-96.796288],[43.337959,-96.796303],[43.338482,-96.796303],[43.343048,-96.796272],[43.34433,-96.796257],[43.346249,-96.796249],[43.350491,-96.796249],[43.354839,-96.796227],[43.357239,-96.796211],[43.358898,-96.796204],[43.361019,-96.796204],[43.368561,-96.796188],[43.37019,-96.796204],[43.370701,-96.796181],[43.383099,-96.796097],[43.38319,-96.796097],[43.384281,-96.796127],[43.38665,-96.796143],[43.389771,-96.796181],[43.392799,-96.796173],[43.393341,-96.79615],[43.39492,-96.796158],[43.3955,-96.796158],[43.3993,-96.796173],[43.402821,-96.796181],[43.405392,-96.796227],[43.40836,-96.796288],[43.411819,-96.796349],[43.416019,-96.796448],[43.417339,-96.796463],[43.419689,-96.796494],[43.420509,-96.796494],[43.420551,-96.796494],[43.42178,-96.796432],[43.423111,-96.796371],[43.42416,-96.796303],[43.42696,-96.796143],[43.428799,-96.796059],[43.42918,-96.796051],[43.4296,-96.796043],[43.431499,-96.796028],[43.4338,-96.796066],[43.43446,-96.796097],[43.4356,-96.796204],[43.435741,-96.796219],[43.43644,-96.796303],[43.437111,-96.796356],[43.437859,-96.796463],[43.440449,-96.796753],[43.441799,-96.79689],[43.44323,-96.79705],[43.44442,-96.797188],[43.44585,-96.797333],[43.446461,-96.797394],[43.44685,-96.797432],[43.44809,-96.797577],[43.450851,-96.797867],[43.451309,-96.797897],[43.45174,-96.797943],[43.45224,-96.797943],[43.452709,-96.797913],[43.453899,-96.797813],[43.457451,-96.797577],[43.46003,-96.797394],[43.461788,-96.797272],[43.463459,-96.79715],[43.46566,-96.796989],[43.46817,-96.796837],[43.47118,-96.796608],[43.472752,-96.796516],[43.474449,-96.796494],[43.47818,-96.796432],[43.480122,-96.796432],[43.480709,-96.796417],[43.481441,-96.796356],[43.482101,-96.796257],[43.482632,-96.796173],[43.483799,-96.79586],[43.484219,-96.795708],[43.485889,-96.795059],[43.48711,-96.794617],[43.489639,-96.793694],[43.490398,-96.793419],[43.491341,-96.793068],[43.49202,-96.792793],[43.49242,-96.792633],[43.49308,-96.792351],[43.493481,-96.792168],[43.493858,-96.791977],[43.494518,-96.79158],[43.49501,-96.791252],[43.50005,-96.788002],[43.505901,-96.784241],[43.510429,-96.781319],[43.5107,-96.781181],[43.511189,-96.780983],[43.511761,-96.780762],[43.512321,-96.780586],[43.51292,-96.780434],[43.513401,-96.780342],[43.513691,-96.780319],[43.513901,-96.780289],[43.518459,-96.780251],[43.523651,-96.780273],[43.529629,-96.780273],[43.530289,-96.780258],[43.531109,-96.780258],[43.53759,-96.780243],[43.543461,-96.780052],[43.544411,-96.780083],[43.548149,-96.780197],[43.549099,-96.780258],[43.549782,-96.780251],[43.550381,-96.78022],[43.550621,-96.78022],[43.55151,-96.780167],[43.55254,-96.780144],[43.555351,-96.779869],[43.55822,-96.779457],[43.559319,-96.779243],[43.566799,-96.778107],[43.567631,-96.778023],[43.568291,-96.777863],[43.569012,-96.777611],[43.56966,-96.777283],[43.570351,-96.776833],[43.571449,-96.775887],[43.572079,-96.775307],[43.572739,-96.774689],[43.57547,-96.77227],[43.575722,-96.772018],[43.576149,-96.771713],[43.576611,-96.771408],[43.577271,-96.771027],[43.577862,-96.770851],[43.578499,-96.770691],[43.578911,-96.770653],[43.57972,-96.770668],[43.58263,-96.770729],[43.583809,-96.770752],[43.584469,-96.770767],[43.58712,-96.770866],[43.587818,-96.770889],[43.588551,-96.770912],[43.589329,-96.77092],[43.590889,-96.770943],[43.594608,-96.771042],[43.59795,-96.77092],[43.598751,-96.770943],[43.601219,-96.770889],[43.60284,-96.770844],[43.60545,-96.770714],[43.606239,-96.770599],[43.608749,-96.770378],[43.61198,-96.770103],[43.612099,-96.770088],[43.61343,-96.769974],[43.61356,-96.769897],[43.613708,-96.769829],[43.613892,-96.76973],[43.61401,-96.769577],[43.614071,-96.76947],[43.61412,-96.769287],[43.614151,-96.769081],[43.614151,-96.76886],[43.614109,-96.768692],[43.614021,-96.768501],[43.613892,-96.768356],[43.61375,-96.768272],[43.613621,-96.768227],[43.613491,-96.768242],[43.613369,-96.768272],[43.61327,-96.768333],[43.613152,-96.768448],[43.61306,-96.768623],[43.612999,-96.768784],[43.612942,-96.769043],[43.612869,-96.769493],[43.612881,-96.769768],[43.612881,-96.771019],[43.612881,-96.771263],[43.612881,-96.771713],[43.61285,-96.776176],[43.612782,-96.777397],[43.612629,-96.780159],[43.612129,-96.784203],[43.611141,-96.789673],[43.610279,-96.793983],[43.609451,-96.798393],[43.6091,-96.801247],[43.60891,-96.804192],[43.608822,-96.809967],[43.608749,-96.830818],[43.6087,-96.850037],[43.6087,-96.85051],[43.6087,-96.851227],[43.608639,-96.86937],[43.608688,-96.873451],[43.608791,-96.877441],[43.60907,-96.883507],[43.609211,-96.889412],[43.6092,-96.894409],[43.6092,-96.895317],[43.609138,-96.925369],[43.609131,-96.94529],[43.609089,-96.955307],[43.609051,-96.985474],[43.609081,-97.000732],[43.609039,-97.017677],[43.60907,-97.022552],[43.6092,-97.025284],[43.60965,-97.027946],[43.610199,-97.030167],[43.610889,-97.032204],[43.611691,-97.033989],[43.616341,-97.042107],[43.630791,-97.06707],[43.64143,-97.085327],[43.643608,-97.088783],[43.64452,-97.090141],[43.647129,-97.093643],[43.649971,-97.097359],[43.66222,-97.113297],[43.66383,-97.115433],[43.664612,-97.116638],[43.66544,-97.118393],[43.66547,-97.118477],[43.666069,-97.120132],[43.666431,-97.121758],[43.666752,-97.123573],[43.666821,-97.125366],[43.66674,-97.148613],[43.666729,-97.149742],[43.666618,-97.170479],[43.666618,-97.171204],[43.66655,-97.183853],[43.66647,-97.193993],[43.666241,-97.231438],[43.666771,-97.302742],[43.666759,-97.313118],[43.666611,-97.330597],[43.666512,-97.347527],[43.6665,-97.348244],[43.666389,-97.368446],[43.66637,-97.382622],[43.6665,-97.396248],[43.666512,-97.401581],[43.666611,-97.410782],[43.666679,-97.41877],[43.666851,-97.439407],[43.666401,-97.450317],[43.666061,-97.458603],[43.665661,-97.468361],[43.665199,-97.478394],[43.664791,-97.488449],[43.66452,-97.495331],[43.664421,-97.499268],[43.664421,-97.502823],[43.664471,-97.514107],[43.664532,-97.528397],[43.664871,-97.548447],[43.6651,-97.561096],[43.665409,-97.582512],[43.665451,-97.594772],[43.665531,-97.60659],[43.665642,-97.637962],[43.665722,-97.660156],[43.66576,-97.672958],[43.665821,-97.689178],[43.66589,-97.7108],[43.66592,-97.724998],[43.665821,-97.730568],[43.665619,-97.737122],[43.664848,-97.761559],[43.664501,-97.773102],[43.664459,-97.777397],[43.6646,-97.781532],[43.665039,-97.791786],[43.665661,-97.805061],[43.66592,-97.810226],[43.66621,-97.813553],[43.666901,-97.817307],[43.66753,-97.819633],[43.668259,-97.821747],[43.670132,-97.826462],[43.670311,-97.826927],[43.676369,-97.842056],[43.678028,-97.846107],[43.680641,-97.851807],[43.682339,-97.85498],[43.685871,-97.861183],[43.687611,-97.864273],[43.69072,-97.869713],[43.691738,-97.871597],[43.69244,-97.873329],[43.69342,-97.876053],[43.693989,-97.878113],[43.69442,-97.880127],[43.69471,-97.881683],[43.694889,-97.883453],[43.695049,-97.885147],[43.69508,-97.889587],[43.69508,-97.903664],[43.69508,-97.91671],[43.69511,-97.924263],[43.69508,-97.935463],[43.695061,-97.94278],[43.694969,-97.946861],[43.69495,-97.947533],[43.69487,-97.951767],[43.69458,-97.955887],[43.69384,-97.964561],[43.6936,-97.967377],[43.69355,-97.968063],[43.693489,-97.968719],[43.693409,-97.969673],[43.693371,-97.970207],[43.693298,-97.970917],[43.693211,-97.972],[43.693119,-97.97316],[43.693039,-97.974373],[43.693001,-97.975143],[43.692959,-97.976021],[43.692921,-97.97686],[43.692848,-97.979012],[43.692749,-97.983093],[43.692719,-97.984222],[43.692699,-97.98513],[43.692471,-97.994324],[43.69241,-97.996758],[43.69236,-97.998627],[43.692188,-98.00531],[43.69215,-98.007072],[43.692139,-98.007637],[43.69215,-98.008537],[43.692181,-98.00885],[43.692211,-98.009071],[43.69228,-98.009438],[43.692329,-98.009651],[43.692699,-98.011078],[43.692768,-98.011436],[43.692791,-98.011589],[43.692799,-98.011742],[43.692799,-98.011971],[43.69278,-98.012543],[43.693771,-98.013474],[43.69482,-98.014442],[43.69495,-98.014557],[43.695889,-98.015427],[43.697979,-98.017273],[43.698059,-98.017326],[43.698269,-98.017464],[43.698372,-98.017517],[43.698639,-98.01767],[43.699188,-98.017906],[43.699322,-98.017967],[43.699558,-98.018059],[43.699951,-98.018181],[43.70023,-98.018242],[43.700611,-98.018333],[43.701199,-98.018372],[43.701511,-98.018379],[43.702019,-98.018372],[43.702221,-98.018433],[43.702221,-98.019821],[43.702209,-98.019981],[43.702209,-98.021263],[43.70219,-98.022598],[43.702179,-98.023949],[43.702179,-98.025414],[43.702148,-98.02684],[43.702129,-98.028214],[43.70211,-98.029556],[43.702549,-98.029549],[43.70314,-98.029572],[43.703579,-98.029587],[43.70459,-98.029602],[43.705589,-98.029617],[43.706711,-98.029648],[43.70739,-98.029694],[43.707741,-98.029716],[43.708111,-98.029716],[43.708691,-98.029709],[43.709412,-98.029671],[43.710388,-98.029678],[43.71143,-98.029709],[43.712448,-98.029739],[43.713421,-98.029762],[43.71442,-98.02977],[43.714539,-98.02977],[43.71545,-98.029778],[43.71542,-98.031113],[43.715382,-98.032478],[43.716171,-98.032501],[43.716579,-98.032509],[43.716629,-98.033867],[43.71664,-98.035278],[43.71661,-98.037102],[43.716591,-98.037842],[43.716579,-98.03878],[43.71653,-98.041199],[43.716499,-98.042931],[43.716282,-98.043007],[43.71587,-98.043167],[43.715519,-98.04332],[43.71526,-98.043488],[43.715012,-98.043648],[43.714722,-98.043877],[43.71434,-98.044189],[43.71394,-98.044548],[43.713379,-98.044983],[43.71291,-98.045357],[43.712582,-98.045631],[43.71199,-98.046143],[43.711739,-98.046371],[43.71159,-98.046494],[43.711418,-98.0466],[43.7113,-98.046669],[43.711079,-98.046783],[43.710899,-98.046867],[43.710789,-98.046913],[43.710678,-98.046928],[43.710339,-98.047012],[43.710159,-98.047043],[43.710018,-98.04705],[43.709389,-98.047043],[43.70858,-98.047012],[43.707531,-98.046989],[43.7048,-98.046913],[43.70332,-98.046883],[43.70187,-98.046837],[43.69838,-98.04673],[43.696449,-98.046692],[43.695679,-98.046677],[43.694611,-98.046677],[43.69323,-98.046669],[43.693199,-98.046669],[43.692909,-98.046677],[43.692902,-98.046951],[43.692829,-98.047318],[43.692291,-98.049461],[43.692169,-98.049957],[43.692059,-98.050552],[43.69199,-98.051147],[43.691959,-98.051598],[43.69194,-98.052048],[43.691971,-98.053017],[43.692039,-98.053902],[43.69215,-98.054962],[43.692249,-98.055817],[43.692421,-98.057243],[43.692551,-98.058113],[43.693111,-98.061943],[43.693199,-98.062576],[43.69342,-98.064392],[43.69352,-98.065269],[43.693539,-98.065498],[43.693649,-98.066681],[43.693691,-98.06723],[43.69379,-98.068626],[43.693851,-98.069511],[43.693909,-98.07093],[43.693939,-98.071823],[43.694069,-98.076607],[43.694241,-98.084084],[43.694309,-98.088577],[43.69434,-98.091713],[43.69437,-98.100899],[43.694401,-98.106499],[43.694439,-98.114288],[43.694481,-98.123169],[43.694519,-98.125298],[43.69453,-98.125832],[43.694561,-98.1269],[43.694672,-98.129562],[43.694962,-98.135231],[43.695011,-98.136124],[43.695019,-98.136238],[43.69521,-98.139809],[43.69537,-98.142899],[43.695431,-98.144409],[43.69553,-98.148804],[43.695511,-98.152267],[43.695511,-98.154373],[43.695469,-98.16629],[43.69545,-98.174156],[43.695438,-98.17662],[43.695419,-98.182442],[43.695591,-98.204208],[43.695591,-98.205452],[43.69558,-98.207222],[43.695541,-98.211838],[43.695492,-98.21608],[43.69545,-98.220367],[43.695461,-98.233093],[43.695461,-98.236961],[43.69548,-98.242783],[43.69548,-98.245293],[43.69548,-98.249252],[43.695499,-98.258797],[43.69553,-98.271683],[43.695549,-98.273773],[43.69558,-98.275093],[43.695621,-98.27607],[43.695709,-98.277931],[43.695938,-98.282204],[43.696011,-98.283943],[43.696072,-98.285698],[43.696091,-98.287231],[43.69611,-98.29261],[43.69614,-98.31366],[43.69614,-98.318916],[43.69611,-98.32254],[43.69606,-98.325882],[43.695938,-98.331444],[43.695839,-98.340714],[43.695881,-98.3414],[43.695839,-98.343193],[43.695808,-98.345543],[43.695751,-98.349991],[43.695671,-98.35569],[43.69561,-98.361267],[43.69558,-98.363319],[43.695549,-98.366669],[43.695499,-98.369568],[43.69529,-98.385338],[43.695171,-98.393883],[43.695049,-98.403473],[43.69503,-98.406822],[43.695011,-98.417542],[43.695011,-98.425339],[43.695,-98.428902],[43.695,-98.432899],[43.695,-98.437271],[43.694969,-98.450127],[43.694981,-98.45179],[43.694988,-98.452469],[43.695019,-98.453148],[43.695091,-98.454048],[43.69511,-98.454262],[43.695221,-98.455254],[43.695309,-98.455841],[43.695461,-98.456734],[43.695541,-98.457161],[43.69569,-98.457893],[43.695889,-98.458679],[43.69606,-98.459312],[43.696209,-98.459801],[43.696209,-98.459824],[43.696381,-98.460358],[43.69923,-98.468964],[43.700619,-98.473244],[43.701069,-98.474571],[43.702068,-98.477654],[43.702839,-98.479973],[43.704868,-98.486107],[43.705521,-98.488167],[43.705959,-98.489471],[43.706581,-98.491348],[43.707062,-98.492844],[43.707218,-98.49334],[43.707481,-98.49424],[43.707722,-98.495148],[43.70792,-98.496078],[43.708019,-98.496536],[43.708099,-98.497017],[43.708271,-98.498199],[43.708328,-98.498688],[43.708382,-98.499161],[43.70845,-98.500122],[43.708488,-98.500839],[43.708511,-98.501572],[43.70853,-98.506653],[43.70853,-98.508568],[43.70858,-98.530861],[43.70863,-98.54538],[43.708649,-98.556267],[43.70866,-98.558693],[43.708672,-98.564018],[43.708672,-98.566437],[43.708691,-98.573357],[43.708721,-98.588951],[43.708759,-98.606857],[43.708778,-98.611008],[43.708771,-98.613762],[43.70879,-98.620621],[43.708809,-98.631149],[43.708809,-98.63205],[43.70882,-98.640411],[43.708839,-98.644218],[43.70887,-98.662407],[43.708881,-98.667267],[43.708889,-98.668182],[43.7089,-98.668907],[43.708931,-98.669632],[43.709,-98.67054],[43.709049,-98.671257],[43.70911,-98.671799],[43.709351,-98.673767],[43.7094,-98.674133],[43.709419,-98.674301],[43.709621,-98.675362],[43.709728,-98.67588],[43.70993,-98.67675],[43.710018,-98.677094],[43.710579,-98.678932],[43.710789,-98.679604],[43.711712,-98.682213],[43.71344,-98.687103],[43.71394,-98.688583],[43.71413,-98.689171],[43.714359,-98.689919],[43.714741,-98.691269],[43.71505,-98.692467],[43.71534,-98.69368],[43.7155,-98.694443],[43.71566,-98.695251],[43.71579,-98.695953],[43.715981,-98.697006],[43.716061,-98.69754],[43.716209,-98.698624],[43.716358,-98.699867],[43.716431,-98.700577],[43.716599,-98.702393],[43.716721,-98.703918],[43.716919,-98.706177],[43.71706,-98.707771],[43.71748,-98.712646],[43.717628,-98.714149],[43.71772,-98.715286],[43.717991,-98.718513],[43.718102,-98.719742],[43.718491,-98.724327],[43.718559,-98.725021],[43.718658,-98.726273],[43.719219,-98.732674],[43.71941,-98.734871],[43.71944,-98.735313],[43.719521,-98.736137],[43.719601,-98.736832],[43.71965,-98.737244],[43.719761,-98.737923],[43.71994,-98.738876],[43.720081,-98.739548],[43.720242,-98.740211],[43.720379,-98.740738],[43.720612,-98.741524],[43.720779,-98.742027],[43.720989,-98.742661],[43.72118,-98.743156],[43.72142,-98.743767],[43.72168,-98.74437],[43.721951,-98.744957],[43.722118,-98.745308],[43.722359,-98.745773],[43.722599,-98.746223],[43.722919,-98.746773],[43.723179,-98.747177],[43.731091,-98.759407],[43.732639,-98.761818],[43.732971,-98.762352],[43.733349,-98.763],[43.733528,-98.763344],[43.734001,-98.764259],[43.734329,-98.764954],[43.734379,-98.765083],[43.734638,-98.765694],[43.734879,-98.766296],[43.735191,-98.767181],[43.735401,-98.767822],[43.735661,-98.76873],[43.735859,-98.769524],[43.735889,-98.769653],[43.736069,-98.770462],[43.736549,-98.772903],[43.736679,-98.773567],[43.73716,-98.776001],[43.737289,-98.77668],[43.737438,-98.777634],[43.737591,-98.778732],[43.73769,-98.779556],[43.737801,-98.780678],[43.73785,-98.781319],[43.7379,-98.782372],[43.73793,-98.783051],[43.737949,-98.784111],[43.737968,-98.78923],[43.737991,-98.794823],[43.73801,-98.795868],[43.73801,-98.796059],[43.73801,-98.796303],[43.738029,-98.803139],[43.738098,-98.814667],[43.738159,-98.82708],[43.738171,-98.828667],[43.73819,-98.833328],[43.738178,-98.834312],[43.738121,-98.841698],[43.73806,-98.846413],[43.738049,-98.847557],[43.738049,-98.847969],[43.737991,-98.852654],[43.737991,-98.853233],[43.73798,-98.853622],[43.737991,-98.854401],[43.73801,-98.855797],[43.738098,-98.860657],[43.738121,-98.861771],[43.738152,-98.863617],[43.738178,-98.864731],[43.73819,-98.865288],[43.738239,-98.868073],[43.738312,-98.872147],[43.738312,-98.87252],[43.7383,-98.874092],[43.7383,-98.874557],[43.738289,-98.875107],[43.738281,-98.875671],[43.73827,-98.876228],[43.738251,-98.876968],[43.738232,-98.877327],[43.73822,-98.877708],[43.738201,-98.878273],[43.73819,-98.878448],[43.73814,-98.879547],[43.73811,-98.880302],[43.738091,-98.880669],[43.737942,-98.883812],[43.737911,-98.884552],[43.737801,-98.886963],[43.737728,-98.888634],[43.73764,-98.890472],[43.737591,-98.891586],[43.737579,-98.891953],[43.73756,-98.892509],[43.737541,-98.892883],[43.737518,-98.89341],[43.737499,-98.894363],[43.737492,-98.894737],[43.73748,-98.895477],[43.737461,-98.896759],[43.737461,-98.897507],[43.737492,-98.899933],[43.73772,-98.912903],[43.73774,-98.91362],[43.737782,-98.916054],[43.7379,-98.922363],[43.73793,-98.924583],[43.737961,-98.925987],[43.738029,-98.929581],[43.738091,-98.933662],[43.738121,-98.934769],[43.738159,-98.936996],[43.738171,-98.938889],[43.738171,-98.940521],[43.738171,-98.947037],[43.738171,-98.948151],[43.738159,-98.94899],[43.738171,-98.94976],[43.738159,-98.95015],[43.738171,-98.952248],[43.738159,-98.957672],[43.738152,-98.958656],[43.738152,-98.963654],[43.738152,-98.963928],[43.738152,-98.964149],[43.73814,-98.965393],[43.738129,-98.973953],[43.738121,-98.983673],[43.738121,-98.985847],[43.73814,-98.986717],[43.738178,-98.987579],[43.738239,-98.988449],[43.738289,-98.988876],[43.7384,-98.989738],[43.738529,-98.990593],[43.738602,-98.991013],[43.73877,-98.991852],[43.738861,-98.992264],[43.739071,-98.993088],[43.74036,-98.997459],[43.74519,-99.014038],[43.745411,-99.014793],[43.746349,-99.018059],[43.74754,-99.022102],[43.748039,-99.023979],[43.748489,-99.02581],[43.748878,-99.027649],[43.74929,-99.029793],[43.74966,-99.03199],[43.749989,-99.034286],[43.75024,-99.036453],[43.75061,-99.040779],[43.7509,-99.043839],[43.75235,-99.060219],[43.752449,-99.061523],[43.752499,-99.062393],[43.752541,-99.063263],[43.752571,-99.064133],[43.752602,-99.06543],[43.75259,-99.067169],[43.752541,-99.072571],[43.752541,-99.07299],[43.752522,-99.077766],[43.752411,-99.092773],[43.752399,-99.095848],[43.752281,-99.115822],[43.751961,-99.152618],[43.75193,-99.15683],[43.75193,-99.158623],[43.751911,-99.160309],[43.751911,-99.161179],[43.75193,-99.162048],[43.751961,-99.162918],[43.752022,-99.164223],[43.752079,-99.165092],[43.752789,-99.173302],[43.753132,-99.177147],[43.75341,-99.180389],[43.753471,-99.181374],[43.75349,-99.181953],[43.75349,-99.182037],[43.75349,-99.183487],[43.75349,-99.18364],[43.753471,-99.184242],[43.75341,-99.185143],[43.75309,-99.188744],[43.752419,-99.196312],[43.752281,-99.198021],[43.75219,-99.199249],[43.75211,-99.200722],[43.752029,-99.202438],[43.75198,-99.203911],[43.751949,-99.205879],[43.751949,-99.206863],[43.751961,-99.208344],[43.75222,-99.228996],[43.752251,-99.231712],[43.75227,-99.233627],[43.752361,-99.240562],[43.75238,-99.242531],[43.75251,-99.252563],[43.75251,-99.252617],[43.752522,-99.253601],[43.752529,-99.254593],[43.752541,-99.255569],[43.752548,-99.25631],[43.75256,-99.256798],[43.752579,-99.257294],[43.752609,-99.257782],[43.75267,-99.258507],[43.75272,-99.259003],[43.752769,-99.259483],[43.752838,-99.259972],[43.75296,-99.260689],[43.75304,-99.261169],[43.753132,-99.261642],[43.753231,-99.262123],[43.75333,-99.262589],[43.753448,-99.263046],[43.753578,-99.263512],[43.753712,-99.263969],[43.753849,-99.264427],[43.75399,-99.264877],[43.754219,-99.265541],[43.754379,-99.265984],[43.754539,-99.266418],[43.75478,-99.267082],[43.755089,-99.267967],[43.75589,-99.270157],[43.75724,-99.273911],[43.757549,-99.274803],[43.757629,-99.275017],[43.75787,-99.275673],[43.75795,-99.275887],[43.75811,-99.276337],[43.75843,-99.277206],[43.75922,-99.279419],[43.75946,-99.280083],[43.75951,-99.280243],[43.759621,-99.280533],[43.759892,-99.281242],[43.76683,-99.300583],[43.768929,-99.30648],[43.769371,-99.307701],[43.769901,-99.309113],[43.770439,-99.310608],[43.770809,-99.311684],[43.771439,-99.313469],[43.771511,-99.313667],[43.77272,-99.31707],[43.77301,-99.317863],[43.77314,-99.318199],[43.77319,-99.318329],[43.773209,-99.318398],[43.773331,-99.318741],[43.773521,-99.319283],[43.774181,-99.321114],[43.774399,-99.321716],[43.774448,-99.321861],[43.774769,-99.322746],[43.774841,-99.322937],[43.774948,-99.323212],[43.775028,-99.32341],[43.775108,-99.323608],[43.775341,-99.324127],[43.775539,-99.324577],[43.775688,-99.32489],[43.775791,-99.325081],[43.775879,-99.325256],[43.776009,-99.325508],[43.776112,-99.325691],[43.776211,-99.325867],[43.776409,-99.326233],[43.7766,-99.326553],[43.776619,-99.326576],[43.776791,-99.326874],[43.776939,-99.327103],[43.777119,-99.327377],[43.777241,-99.327553],[43.777279,-99.327599],[43.77739,-99.327766],[43.77747,-99.327873],[43.777618,-99.328087],[43.777859,-99.3284],[43.777901,-99.328453],[43.777981,-99.328552],[43.778061,-99.328659],[43.778099,-99.328712],[43.778141,-99.328773],[43.778179,-99.328812],[43.778221,-99.328873],[43.778339,-99.329018],[43.778511,-99.329224],[43.778679,-99.329407],[43.778801,-99.329552],[43.778931,-99.329689],[43.77898,-99.329727],[43.779018,-99.329788],[43.77906,-99.329826],[43.779202,-99.329971],[43.779289,-99.330063],[43.779331,-99.330109],[43.779369,-99.330147],[43.779461,-99.330238],[43.77951,-99.330276],[43.779591,-99.330383],[43.779732,-99.330513],[43.779869,-99.330627],[43.779911,-99.330673],[43.780048,-99.330803],[43.780231,-99.330963],[43.78051,-99.331207],[43.780651,-99.331322],[43.780891,-99.331512],[43.781029,-99.331619],[43.781319,-99.331841],[43.78157,-99.332024],[43.78162,-99.332047],[43.781719,-99.332123],[43.781761,-99.332153],[43.78191,-99.332237],[43.78196,-99.332283],[43.782059,-99.332336],[43.782108,-99.332367],[43.782211,-99.332443],[43.782261,-99.332474],[43.782558,-99.332657],[43.782631,-99.332703],[43.783691,-99.333366],[43.78384,-99.333473],[43.783958,-99.333549],[43.784302,-99.333771],[43.785198,-99.334373],[43.786049,-99.3349],[43.78685,-99.335426],[43.789421,-99.33709],[43.78986,-99.337402],[43.79039,-99.337807],[43.790859,-99.338203],[43.7911,-99.338387],[43.79155,-99.338821],[43.792171,-99.339439],[43.792591,-99.339897],[43.792931,-99.340279],[43.7934,-99.340851],[43.793812,-99.341423],[43.794201,-99.341957],[43.794819,-99.342903],[43.795311,-99.343674],[43.79631,-99.345161],[43.797131,-99.346382],[43.800869,-99.352097],[43.803291,-99.355797],[43.804859,-99.358276],[43.805038,-99.358566],[43.805111,-99.358681],[43.805141,-99.358742],[43.80521,-99.358856],[43.805401,-99.359222],[43.80547,-99.359337],[43.805531,-99.359467],[43.805618,-99.359657],[43.80571,-99.359863],[43.80582,-99.360123],[43.805962,-99.360443],[43.805981,-99.360512],[43.806061,-99.36071],[43.80608,-99.360779],[43.806149,-99.360977],[43.806198,-99.36113],[43.806301,-99.361481],[43.806339,-99.361618],[43.806419,-99.3619],[43.80645,-99.362053],[43.806499,-99.362259],[43.806561,-99.362549],[43.806641,-99.362923],[43.80666,-99.363068],[43.80669,-99.363213],[43.806721,-99.363426],[43.80674,-99.36351],[43.806759,-99.363663],[43.806789,-99.36396],[43.806808,-99.364182],[43.806839,-99.364487],[43.80685,-99.364632],[43.806862,-99.364777],[43.80687,-99.365013],[43.80687,-99.365173],[43.806881,-99.365318],[43.806881,-99.365692],[43.80687,-99.365921],[43.80687,-99.36615],[43.806862,-99.366379],[43.806839,-99.366676],[43.806831,-99.366829],[43.80682,-99.366913],[43.806789,-99.367203],[43.806751,-99.3675],[43.806728,-99.367653],[43.806679,-99.367943],[43.80666,-99.368103],[43.806629,-99.36824],[43.806568,-99.36853],[43.806541,-99.368683],[43.80648,-99.368973],[43.806419,-99.369186],[43.80637,-99.3694],[43.806309,-99.369614],[43.806271,-99.369751],[43.806198,-99.369957],[43.806129,-99.370163],[43.80608,-99.3703],[43.806011,-99.370506],[43.805962,-99.370644],[43.805752,-99.37117],[43.805511,-99.371773],[43.805351,-99.372162],[43.805191,-99.372559],[43.80508,-99.372833],[43.80471,-99.373734],[43.804489,-99.374283],[43.804459,-99.374336],[43.804359,-99.374603],[43.804218,-99.374939],[43.804062,-99.375343],[43.804031,-99.375397],[43.804001,-99.375473],[43.803951,-99.375603],[43.803921,-99.375664],[43.803791,-99.375992],[43.803761,-99.37606],[43.803711,-99.37619],[43.8036,-99.376457],[43.80341,-99.376907],[43.803299,-99.377182],[43.802818,-99.378357],[43.802601,-99.378899],[43.80257,-99.37896],[43.802471,-99.379227],[43.80228,-99.379677],[43.801819,-99.380814],[43.80159,-99.381409],[43.801479,-99.381683],[43.801441,-99.381813],[43.801369,-99.382019],[43.801262,-99.38237],[43.801128,-99.38279],[43.80109,-99.382927],[43.801048,-99.383057],[43.800991,-99.383293],[43.800941,-99.383499],[43.800869,-99.383781],[43.800819,-99.384003],[43.80077,-99.384293],[43.80072,-99.384506],[43.80069,-99.384682],[43.800652,-99.384956],[43.800591,-99.38533],[43.800541,-99.385696],[43.80051,-99.386002],[43.800491,-99.386223],[43.800468,-99.386452],[43.800461,-99.386681],[43.80043,-99.387047],[43.800419,-99.387444],[43.800411,-99.387657],[43.800411,-99.38781],[43.800411,-99.388191],[43.800419,-99.388573],[43.800419,-99.388718],[43.80043,-99.388992],[43.800461,-99.389633],[43.801079,-99.394783],[43.801189,-99.395638],[43.801571,-99.398956],[43.801731,-99.400299],[43.801861,-99.401154],[43.802052,-99.401871],[43.802292,-99.402763],[43.802589,-99.403717],[43.802898,-99.404579],[43.803242,-99.405296],[43.803719,-99.406197],[43.804062,-99.406883],[43.806019,-99.410957],[43.806358,-99.411667],[43.80661,-99.412193],[43.806839,-99.412621],[43.808998,-99.416672],[43.811211,-99.420624],[43.8167,-99.43029],[43.81715,-99.431099],[43.818298,-99.433372],[43.819099,-99.435112],[43.820019,-99.437309],[43.820911,-99.439613],[43.82457,-99.449516],[43.825432,-99.451736],[43.826351,-99.453934],[43.82719,-99.455772],[43.8279,-99.457237],[43.828671,-99.458702],[43.841282,-99.481888],[43.841888,-99.48304],[43.84259,-99.484612],[43.843021,-99.485802],[43.843521,-99.487381],[43.843948,-99.48912],[43.84425,-99.490898],[43.846432,-99.508247],[43.846512,-99.508751],[43.846581,-99.509354],[43.846809,-99.511108],[43.84697,-99.51252],[43.847012,-99.512871],[43.84705,-99.513222],[43.84708,-99.51358],[43.847111,-99.513931],[43.84716,-99.514397],[43.84721,-99.514992],[43.84726,-99.515701],[43.84729,-99.516052],[43.84734,-99.516762],[43.847359,-99.51712],[43.84737,-99.517242],[43.847382,-99.517471],[43.847401,-99.51783],[43.84742,-99.518188],[43.847431,-99.518539],[43.84745,-99.519028],[43.847462,-99.519257],[43.847481,-99.519974],[43.847488,-99.520317],[43.847511,-99.521027],[43.847511,-99.521393],[43.847519,-99.522812],[43.847519,-99.52317],[43.847519,-99.525803],[43.847519,-99.526367],[43.84753,-99.527451],[43.84753,-99.528519],[43.84753,-99.530296],[43.84753,-99.532791],[43.84753,-99.537071],[43.84753,-99.537422],[43.84753,-99.539207],[43.84753,-99.539574],[43.84753,-99.541702],[43.84753,-99.54348],[43.847542,-99.54776],[43.847542,-99.54847],[43.847542,-99.549538],[43.847542,-99.549896],[43.847542,-99.550613],[43.847549,-99.551323],[43.847549,-99.552391],[43.847549,-99.55275],[43.847561,-99.553101],[43.847569,-99.553459],[43.847599,-99.553818],[43.847618,-99.554169],[43.847641,-99.554527],[43.847672,-99.554878],[43.84771,-99.555229],[43.84774,-99.55558],[43.847839,-99.556282],[43.847889,-99.556633],[43.847939,-99.556976],[43.848,-99.557327],[43.848068,-99.557671],[43.848141,-99.558006],[43.848209,-99.558357],[43.848289,-99.558723],[43.84856,-99.559792],[43.848808,-99.560631],[43.850071,-99.564293],[43.850239,-99.564789],[43.852009,-99.569939],[43.86272,-99.600922],[43.864361,-99.605743],[43.86454,-99.606277],[43.866032,-99.610573],[43.866192,-99.611031],[43.866341,-99.611504],[43.866508,-99.611961],[43.86684,-99.612892],[43.867069,-99.613586],[43.86731,-99.614288],[43.86739,-99.614517],[43.867458,-99.614761],[43.867531,-99.614998],[43.867611,-99.615227],[43.86768,-99.615479],[43.867809,-99.615959],[43.86787,-99.616203],[43.867931,-99.616447],[43.867989,-99.616692],[43.86805,-99.616943],[43.868099,-99.61718],[43.868172,-99.617493],[43.868259,-99.617928],[43.868301,-99.618179],[43.868351,-99.618423],[43.868389,-99.618683],[43.868431,-99.618927],[43.868469,-99.619179],[43.8685,-99.619438],[43.86853,-99.61969],[43.868561,-99.619942],[43.868591,-99.620201],[43.86861,-99.620453],[43.86869,-99.621223],[43.868721,-99.621727],[43.86874,-99.621986],[43.868752,-99.622253],[43.868759,-99.622513],[43.868771,-99.622757],[43.868771,-99.623016],[43.868771,-99.623543],[43.868771,-99.624817],[43.868778,-99.628441],[43.868771,-99.629211],[43.868801,-99.685402],[43.868809,-99.68589],[43.868801,-99.704773],[43.868801,-99.705017],[43.868801,-99.705544],[43.868801,-99.706306],[43.868801,-99.707603],[43.868801,-99.707863],[43.868809,-99.708122],[43.86882,-99.708633],[43.86882,-99.708893],[43.868832,-99.709152],[43.868839,-99.709412],[43.868851,-99.709663],[43.868858,-99.709923],[43.868889,-99.710426],[43.868931,-99.710953],[43.868969,-99.711456],[43.868992,-99.711723],[43.869019,-99.711983],[43.869049,-99.712227],[43.86911,-99.712738],[43.869171,-99.713242],[43.869209,-99.713493],[43.869289,-99.713997],[43.86937,-99.714508],[43.869411,-99.714752],[43.869461,-99.714996],[43.869511,-99.715263],[43.869659,-99.716003],[43.869709,-99.716248],[43.869759,-99.716492],[43.86982,-99.716743],[43.869881,-99.716988],[43.869999,-99.717468],[43.87006,-99.717712],[43.870579,-99.71965],[43.870781,-99.720383],[43.870911,-99.720863],[43.87162,-99.723518],[43.87175,-99.723999],[43.871948,-99.724716],[43.872211,-99.725693],[43.87241,-99.726418],[43.872471,-99.726646],[43.87254,-99.726898],[43.872669,-99.727379],[43.87286,-99.728104],[43.872929,-99.728348],[43.873192,-99.729317],[43.873322,-99.729797],[43.873779,-99.731491],[43.873909,-99.731972],[43.874039,-99.732452],[43.874111,-99.732697],[43.874298,-99.733421],[43.874439,-99.733902],[43.8745,-99.734154],[43.874569,-99.734383],[43.87476,-99.735123],[43.874889,-99.735603],[43.874901,-99.735626],[43.874981,-99.735909],[43.87582,-99.739037],[43.87606,-99.740044],[43.87616,-99.740532],[43.876301,-99.741203],[43.876381,-99.741653],[43.876591,-99.742989],[43.87672,-99.743958],[43.876831,-99.745079],[43.876881,-99.745552],[43.8769,-99.745789],[43.87693,-99.746262],[43.876942,-99.746513],[43.876949,-99.746742],[43.876961,-99.746979],[43.87698,-99.747459],[43.876991,-99.747932],[43.876991,-99.748177],[43.876999,-99.74913],[43.876999,-99.750557],[43.876999,-99.751518],[43.876999,-99.751762],[43.876999,-99.752472],[43.876999,-99.753189],[43.876999,-99.75367],[43.876999,-99.753906],[43.876999,-99.757973],[43.876999,-99.759644],[43.876999,-99.760117],[43.876999,-99.761307],[43.876999,-99.763474],[43.876999,-99.76442],[43.876999,-99.7649],[43.876999,-99.765556],[43.876999,-99.766327],[43.876999,-99.767288],[43.87698,-99.784492],[43.876991,-99.785393],[43.876991,-99.785896],[43.876991,-99.794243],[43.87698,-99.798477],[43.876991,-99.799217],[43.87701,-99.799988],[43.877041,-99.800529],[43.877079,-99.801079],[43.877159,-99.802116],[43.877232,-99.80278],[43.8773,-99.803291],[43.877361,-99.803757],[43.87743,-99.804283],[43.877548,-99.804939],[43.877689,-99.805679],[43.877781,-99.806221],[43.877911,-99.806793],[43.878029,-99.807297],[43.878159,-99.807854],[43.878288,-99.808311],[43.878399,-99.808731],[43.878799,-99.810043],[43.879131,-99.81115],[43.882061,-99.820938],[43.891361,-99.851852],[43.89212,-99.854401],[43.893761,-99.859894],[43.89397,-99.860573],[43.894112,-99.861061],[43.894291,-99.861649],[43.894421,-99.862122],[43.895321,-99.865128],[43.895538,-99.865837],[43.895981,-99.867287],[43.896358,-99.868713],[43.89669,-99.870163],[43.897129,-99.872704],[43.89724,-99.87352],[43.897301,-99.874046],[43.897369,-99.874786],[43.8974,-99.875313],[43.89743,-99.875877],[43.897461,-99.876266],[43.89748,-99.876648],[43.897511,-99.877823],[43.897511,-99.880966],[43.897511,-99.885757],[43.897511,-99.905609],[43.897511,-99.914803],[43.897511,-99.919327],[43.897499,-99.923798],[43.897511,-99.925499],[43.897511,-99.925888],[43.897499,-99.932381],[43.897499,-99.935509],[43.897499,-99.937607],[43.897499,-99.939857],[43.897499,-99.944283],[43.897499,-99.953796],[43.897499,-99.965508],[43.897491,-99.965927],[43.89748,-99.973427],[43.89748,-99.985771],[43.897461,-100.005653],[43.897461,-100.006027],[43.89743,-100.022774],[43.897461,-100.02549],[43.897499,-100.02784],[43.897511,-100.028679],[43.897591,-100.030869],[43.89764,-100.032097],[43.897671,-100.032967],[43.897751,-100.034554],[43.897812,-100.035744],[43.897839,-100.036278],[43.897919,-100.037842],[43.89798,-100.038834],[43.898121,-100.041901],[43.898312,-100.045441],[43.89835,-100.046249],[43.898472,-100.048653],[43.898571,-100.050568],[43.898609,-100.051376],[43.89867,-100.052643],[43.89875,-100.054832],[43.898788,-100.056107],[43.898788,-100.057381],[43.89883,-100.059776],[43.8988,-100.065567],[43.898781,-100.066254],[43.89872,-100.074242],[43.89851,-100.105698],[43.898521,-100.106323],[43.898331,-100.132561],[43.898281,-100.139717],[43.898239,-100.146088],[43.898239,-100.148048],[43.898331,-100.149384],[43.89854,-100.151299],[43.898918,-100.153236],[43.899361,-100.154953],[43.899719,-100.156067],[43.900139,-100.157227],[43.901821,-100.161163],[43.90192,-100.161369],[43.9034,-100.164864],[43.90377,-100.165718],[43.904099,-100.166481],[43.904629,-100.167709],[43.906349,-100.171722],[43.910332,-100.181],[43.910999,-100.182747],[43.911549,-100.184578],[43.911942,-100.186256],[43.912201,-100.187752],[43.912399,-100.189491],[43.912479,-100.191177],[43.912529,-100.192337],[43.912529,-100.196327],[43.912529,-100.205551],[43.912529,-100.241112],[43.912529,-100.241562],[43.91254,-100.279053],[43.91254,-100.279449],[43.91254,-100.286011],[43.91254,-100.286751],[43.91254,-100.292717],[43.912552,-100.30304],[43.912552,-100.303436],[43.912552,-100.305183],[43.912552,-100.309441],[43.912552,-100.314507],[43.912552,-100.317719],[43.912552,-100.319847],[43.912529,-100.328369],[43.912239,-100.338959],[43.91222,-100.339218],[43.912201,-100.339867],[43.912041,-100.344147],[43.91201,-100.345123],[43.911758,-100.351707],[43.911739,-100.352348],[43.911629,-100.355186],[43.911442,-100.360283],[43.91143,-100.360603],[43.911209,-100.366669],[43.911171,-100.367607],[43.911079,-100.369858],[43.911079,-100.370003],[43.911018,-100.371902],[43.9109,-100.375023],[43.9109,-100.375183],[43.910881,-100.375793],[43.910759,-100.37896],[43.91066,-100.381973],[43.910542,-100.385078],[43.910488,-100.386581],[43.910431,-100.388046],[43.91032,-100.39119],[43.910271,-100.392448],[43.910198,-100.394363],[43.91016,-100.395363],[43.91013,-100.3965],[43.91008,-100.397873],[43.91003,-100.399193],[43.909981,-100.401077],[43.909939,-100.401604],[43.909908,-100.402412],[43.909771,-100.406487],[43.90976,-100.406807],[43.90974,-100.407471],[43.909618,-100.410553],[43.909592,-100.411621],[43.909489,-100.414017],[43.909389,-100.416718],[43.909199,-100.422012],[43.909161,-100.422981],[43.909019,-100.426689],[43.908951,-100.428864],[43.908909,-100.431],[43.908852,-100.435204],[43.908852,-100.439697],[43.908859,-100.455063],[43.908859,-100.461182],[43.908871,-100.464249],[43.908871,-100.466927],[43.908871,-100.476013],[43.908871,-100.486542],[43.908871,-100.487152],[43.908871,-100.488693],[43.908871,-100.541122],[43.908859,-100.5467],[43.908859,-100.547363],[43.908859,-100.553284],[43.908859,-100.556831],[43.908852,-100.559921],[43.908852,-100.562683],[43.90884,-100.564583],[43.90884,-100.566467],[43.908829,-100.586243],[43.908829,-100.586792],[43.908821,-100.588921],[43.90881,-100.6082],[43.908791,-100.622353],[43.908791,-100.632179],[43.908791,-100.632759],[43.908779,-100.63327],[43.908779,-100.633438],[43.90876,-100.633957],[43.90873,-100.634499],[43.908691,-100.634987],[43.908611,-100.63588],[43.908539,-100.636398],[43.908482,-100.636848],[43.90839,-100.637466],[43.908291,-100.638008],[43.90818,-100.638557],[43.90815,-100.638733],[43.9081,-100.638977],[43.907982,-100.63945],[43.90778,-100.640259],[43.907619,-100.640808],[43.907459,-100.64135],[43.907291,-100.641861],[43.906971,-100.642738],[43.906811,-100.643173],[43.906429,-100.644058],[43.906212,-100.644539],[43.905979,-100.644997],[43.905769,-100.645416],[43.903511,-100.649567],[43.902611,-100.651192],[43.90242,-100.651543],[43.901562,-100.653122],[43.900791,-100.654556],[43.899151,-100.657547],[43.898529,-100.658669],[43.898361,-100.658981],[43.89793,-100.65976],[43.897449,-100.66066],[43.896648,-100.662109],[43.896358,-100.662643],[43.894661,-100.665756],[43.893951,-100.667084],[43.893742,-100.667473],[43.89352,-100.667847],[43.892929,-100.66893],[43.892529,-100.669647],[43.89225,-100.670158],[43.891911,-100.670792],[43.89135,-100.671852],[43.891071,-100.672348],[43.890652,-100.673119],[43.890289,-100.673752],[43.889912,-100.674454],[43.887829,-100.678253],[43.887661,-100.678581],[43.887451,-100.678963],[43.886742,-100.680252],[43.886292,-100.681068],[43.88604,-100.681557],[43.8857,-100.682251],[43.88554,-100.682602],[43.885349,-100.68306],[43.885139,-100.683563],[43.884911,-100.684158],[43.884781,-100.684532],[43.884621,-100.684982],[43.88448,-100.685417],[43.88435,-100.685867],[43.884171,-100.686523],[43.883999,-100.687241],[43.883869,-100.687813],[43.883751,-100.688347],[43.883652,-100.688927],[43.88356,-100.689453],[43.883492,-100.689972],[43.883419,-100.690498],[43.883369,-100.691002],[43.883331,-100.691383],[43.883289,-100.691917],[43.883259,-100.692513],[43.88324,-100.693001],[43.883221,-100.693382],[43.883221,-100.694023],[43.883221,-100.699837],[43.883259,-100.7127],[43.883289,-100.71389],[43.883331,-100.715263],[43.883369,-100.716217],[43.8834,-100.71666],[43.883461,-100.717407],[43.883572,-100.719002],[43.883739,-100.72094],[43.88401,-100.723984],[43.884109,-100.725151],[43.884251,-100.726677],[43.88459,-100.730797],[43.884762,-100.732597],[43.884861,-100.733772],[43.885181,-100.737503],[43.885342,-100.739403],[43.88549,-100.740952],[43.88567,-100.743073],[43.885738,-100.743797],[43.886009,-100.747032],[43.886261,-100.750107],[43.88644,-100.752037],[43.88649,-100.752747],[43.886581,-100.754227],[43.886631,-100.755386],[43.886711,-100.757111],[43.886761,-100.758751],[43.886799,-100.760468],[43.88681,-100.761871],[43.886822,-100.765266],[43.886822,-100.782013],[43.886799,-100.792549],[43.886711,-100.83638],[43.886711,-100.836983],[43.886742,-100.844879],[43.886742,-100.845543],[43.8867,-100.866653],[43.886681,-100.868523],[43.886681,-100.869713],[43.8867,-100.871361],[43.8867,-100.872581],[43.886681,-100.874184],[43.886681,-100.875214],[43.886681,-100.876701],[43.8867,-100.877457],[43.88678,-100.878891],[43.886791,-100.879097],[43.886829,-100.879494],[43.88689,-100.880142],[43.887001,-100.880966],[43.887131,-100.881897],[43.88728,-100.882713],[43.88739,-100.883324],[43.88765,-100.884537],[43.887852,-100.885384],[43.8881,-100.886299],[43.888309,-100.887009],[43.888649,-100.888077],[43.888771,-100.88842],[43.888939,-100.888924],[43.889301,-100.889847],[43.889759,-100.890999],[43.890419,-100.892647],[43.890808,-100.893578],[43.891449,-100.895271],[43.893181,-100.899643],[43.893631,-100.900787],[43.89465,-100.90332],[43.895569,-100.905663],[43.896042,-100.906853],[43.896832,-100.908859],[43.899181,-100.914749],[43.899448,-100.915466],[43.89967,-100.916092],[43.899849,-100.916649],[43.90004,-100.917282],[43.900211,-100.9179],[43.900391,-100.918617],[43.900509,-100.919197],[43.900639,-100.919853],[43.900749,-100.920471],[43.90086,-100.921181],[43.900951,-100.92189],[43.90102,-100.922638],[43.901081,-100.923363],[43.901119,-100.924026],[43.901138,-100.92469],[43.90115,-100.928062],[43.90115,-100.930199],[43.901138,-100.931557],[43.90115,-100.935081],[43.901161,-100.937576],[43.901161,-100.938873],[43.901161,-100.941193],[43.901161,-100.944489],[43.901161,-100.945023],[43.901169,-100.946854],[43.901169,-100.95578],[43.901169,-100.959213],[43.90118,-100.962677],[43.90118,-100.968262],[43.90118,-100.969688],[43.90118,-100.973068],[43.90118,-100.980888],[43.90118,-100.983307],[43.90118,-100.98674],[43.90118,-100.989937],[43.901192,-100.99575],[43.90118,-100.99733],[43.90118,-100.997566],[43.90118,-100.998444],[43.90118,-101.000221],[43.90118,-101.003609],[43.90118,-101.004143],[43.90118,-101.005219],[43.90118,-101.007004],[43.90118,-101.009048],[43.90118,-101.010422],[43.90118,-101.025574],[43.901199,-101.028839],[43.901169,-101.035187],[43.90118,-101.038368],[43.901169,-101.044746],[43.901169,-101.064262],[43.901192,-101.076683],[43.90115,-101.079987],[43.901009,-101.083191],[43.90081,-101.086243],[43.900478,-101.089752],[43.900051,-101.093018],[43.89962,-101.096031],[43.899158,-101.098534],[43.898621,-101.101181],[43.898029,-101.103958],[43.897942,-101.104446],[43.897499,-101.106491],[43.89716,-101.107986],[43.896778,-101.109413],[43.896221,-101.111191],[43.89571,-101.112556],[43.89492,-101.114388],[43.894089,-101.116074],[43.892349,-101.119461],[43.886459,-101.130943],[43.88348,-101.136772],[43.881351,-101.14093],[43.88113,-101.141403],[43.87859,-101.1464],[43.876808,-101.149933],[43.875259,-101.152969],[43.874279,-101.154861],[43.873489,-101.156441],[43.872231,-101.159142],[43.871109,-101.161919],[43.869961,-101.16497],[43.867668,-101.171516],[43.865509,-101.177483],[43.86422,-101.180588],[43.862949,-101.183228],[43.862679,-101.183777],[43.859959,-101.189377],[43.856991,-101.195419],[43.854931,-101.199623],[43.85088,-101.207909],[43.84576,-101.218323],[43.84507,-101.219788],[43.844521,-101.221123],[43.843971,-101.222748],[43.843632,-101.224007],[43.84322,-101.225929],[43.84293,-101.227966],[43.842819,-101.229538],[43.8428,-101.236237],[43.842838,-101.243294],[43.84285,-101.243729],[43.842861,-101.256264],[43.842892,-101.265213],[43.842911,-101.271042],[43.842899,-101.271568],[43.842941,-101.278519],[43.842979,-101.296272],[43.843021,-101.314034],[43.84306,-101.316147],[43.843151,-101.3181],[43.84333,-101.320091],[43.843552,-101.321991],[43.843842,-101.323883],[43.84491,-101.329803],[43.847301,-101.342796],[43.847408,-101.343384],[43.849621,-101.355553],[43.85001,-101.358147],[43.85033,-101.360977],[43.850559,-101.363663],[43.851051,-101.373207],[43.85199,-101.391632],[43.852119,-101.394821],[43.85218,-101.397957],[43.85218,-101.400459],[43.851879,-101.422432],[43.851879,-101.422943],[43.85181,-101.427872],[43.8517,-101.435593],[43.851341,-101.460022],[43.851299,-101.462967],[43.851109,-101.476257],[43.851028,-101.482338],[43.851021,-101.48275],[43.85091,-101.489182],[43.85078,-101.491028],[43.850639,-101.492172],[43.850281,-101.494583],[43.84985,-101.496536],[43.849361,-101.49836],[43.847118,-101.505333],[43.843559,-101.516388],[43.84304,-101.518028],[43.841419,-101.523079],[43.840771,-101.52507],[43.840561,-101.525658],[43.84053,-101.525787],[43.839069,-101.530487],[43.838009,-101.533707],[43.83749,-101.535362],[43.83728,-101.536087],[43.837101,-101.536797],[43.836849,-101.537987],[43.836731,-101.538719],[43.836609,-101.539413],[43.836491,-101.540176],[43.836418,-101.540916],[43.83638,-101.541542],[43.83633,-101.542236],[43.836311,-101.54287],[43.836269,-101.545357],[43.836269,-101.551941],[43.836269,-101.552437],[43.8363,-101.556534],[43.836281,-101.559013],[43.83625,-101.561523],[43.836288,-101.571388],[43.836281,-101.584938],[43.836269,-101.601608],[43.836269,-101.602188],[43.83625,-101.614853],[43.836239,-101.622887],[43.836269,-101.627197],[43.836269,-101.638443],[43.83625,-101.654358],[43.83625,-101.660927],[43.836239,-101.661591],[43.836239,-101.66922],[43.836201,-101.701347],[43.83617,-101.728188],[43.83617,-101.740929],[43.83617,-101.741402],[43.83614,-101.751373],[43.83614,-101.763657],[43.83617,-101.769417],[43.836281,-101.782494],[43.836319,-101.788857],[43.836411,-101.800056],[43.836411,-101.800499],[43.836411,-101.80545],[43.83633,-101.837387],[43.836349,-101.840202],[43.836319,-101.8452],[43.836288,-101.857239],[43.836262,-101.869881],[43.836269,-101.870377],[43.83622,-101.873947],[43.836128,-101.87709],[43.835739,-101.887016],[43.835812,-101.888184],[43.83596,-101.889351],[43.836231,-101.890343],[43.83643,-101.891129],[43.836941,-101.892342],[43.83709,-101.892616],[43.837681,-101.893829],[43.8437,-101.906029],[43.847839,-101.914436],[43.85305,-101.92514],[43.85593,-101.930779],[43.858871,-101.936852],[43.86013,-101.939743],[43.860489,-101.940598],[43.862751,-101.946159],[43.865311,-101.952782],[43.86784,-101.959396],[43.86808,-101.960007],[43.870369,-101.965897],[43.872509,-101.970917],[43.87513,-101.9767],[43.87812,-101.982979],[43.884579,-101.996727],[43.884998,-101.997627],[43.890079,-102.008743],[43.894341,-102.018951],[43.901112,-102.035294],[43.905941,-102.046913],[43.906738,-102.049217],[43.907261,-102.050987],[43.907791,-102.053001],[43.909229,-102.058998],[43.909382,-102.059631],[43.91103,-102.066528],[43.912201,-102.07148],[43.91563,-102.085831],[43.922539,-102.115059],[43.925018,-102.125473],[43.92804,-102.138443],[43.92873,-102.140991],[43.929451,-102.142723],[43.930359,-102.144333],[43.93129,-102.145561],[43.93259,-102.146988],[43.935509,-102.149963],[43.93634,-102.150948],[43.936859,-102.151443],[43.939041,-102.153809],[43.940498,-102.155273],[43.951401,-102.166687],[43.957279,-102.172928],[43.969299,-102.185707],[43.97015,-102.186623],[43.97123,-102.187897],[43.972061,-102.188957],[43.97319,-102.190598],[43.976238,-102.194794],[43.981499,-102.202103],[43.984718,-102.20652],[43.98542,-102.207489],[43.985981,-102.208504],[43.986462,-102.209572],[43.98679,-102.210487],[43.987049,-102.211594],[43.987251,-102.212791],[43.98737,-102.214142],[43.98735,-102.218163],[43.987381,-102.221008],[43.987309,-102.226044],[43.98719,-102.229301],[43.9869,-102.233719],[43.986568,-102.238831],[43.98653,-102.239517],[43.986462,-102.240601],[43.986462,-102.241577],[43.986561,-102.24276],[43.986679,-102.243629],[43.987061,-102.245193],[43.987339,-102.246002],[43.98764,-102.246696],[43.988029,-102.247551],[43.988281,-102.248154],[43.988708,-102.249191],[43.989208,-102.250298],[43.98967,-102.251244],[43.99025,-102.252289],[43.990822,-102.253212],[43.99231,-102.255402],[43.994431,-102.258362],[43.998161,-102.263634],[44.004551,-102.272636],[44.009029,-102.278961],[44.011768,-102.282867],[44.015221,-102.28772],[44.018951,-102.292976],[44.019489,-102.293694],[44.020451,-102.295189],[44.021149,-102.296501],[44.021702,-102.297859],[44.022251,-102.299767],[44.02256,-102.301392],[44.023178,-102.307159],[44.02367,-102.311073],[44.024151,-102.313377],[44.024799,-102.315567],[44.026192,-102.319344],[44.026932,-102.321114],[44.027481,-102.32222],[44.02943,-102.325462],[44.030361,-102.327217],[44.030869,-102.328583],[44.031311,-102.330017],[44.031601,-102.331306],[44.031811,-102.33284],[44.031979,-102.334824],[44.032082,-102.336166],[44.032219,-102.337097],[44.032429,-102.338142],[44.032749,-102.339188],[44.033321,-102.340607],[44.03384,-102.341743],[44.03447,-102.342728],[44.035351,-102.343842],[44.038929,-102.348106],[44.047661,-102.358627],[44.04855,-102.359627],[44.0495,-102.360527],[44.05051,-102.361343],[44.051498,-102.362007],[44.052719,-102.362663],[44.056099,-102.364357],[44.05827,-102.365471],[44.059471,-102.366257],[44.060539,-102.367119],[44.061371,-102.367882],[44.062199,-102.368797],[44.063019,-102.369743],[44.063438,-102.370247],[44.0644,-102.37133],[44.065159,-102.372307],[44.065762,-102.373367],[44.066238,-102.374413],[44.06665,-102.375526],[44.066952,-102.376823],[44.067108,-102.377861],[44.067211,-102.379173],[44.067341,-102.384117],[44.067348,-102.384827],[44.067459,-102.387833],[44.06765,-102.396141],[44.067699,-102.398087],[44.067822,-102.402763],[44.067959,-102.405548],[44.06842,-102.410637],[44.068851,-102.414749],[44.06892,-102.415573],[44.069,-102.416634],[44.06908,-102.417793],[44.069069,-102.419113],[44.069,-102.420273],[44.068821,-102.421753],[44.068539,-102.423248],[44.068138,-102.424843],[44.067619,-102.426407],[44.067051,-102.427856],[44.06638,-102.429283],[44.065121,-102.431633],[44.064659,-102.432732],[44.064331,-102.433762],[44.064072,-102.434898],[44.063919,-102.435837],[44.063831,-102.436852],[44.06382,-102.437859],[44.063881,-102.439011],[44.064018,-102.440247],[44.06422,-102.441467],[44.0648,-102.444878],[44.06525,-102.447319],[44.06543,-102.448318],[44.06551,-102.448776],[44.066448,-102.454033],[44.066952,-102.456772],[44.067268,-102.458008],[44.06768,-102.459312],[44.06815,-102.460533],[44.068821,-102.461861],[44.06958,-102.463112],[44.071049,-102.465042],[44.072151,-102.466614],[44.07859,-102.47541],[44.079449,-102.476707],[44.082722,-102.482147],[44.083809,-102.48378],[44.084808,-102.485153],[44.086651,-102.487534],[44.08762,-102.488876],[44.088428,-102.490021],[44.089088,-102.491119],[44.089909,-102.492691],[44.090839,-102.49453],[44.091759,-102.496071],[44.092541,-102.497147],[44.093369,-102.498199],[44.094181,-102.499077],[44.095501,-102.500397],[44.096298,-102.501244],[44.09697,-102.502159],[44.097672,-102.503273],[44.09827,-102.504463],[44.09877,-102.50573],[44.09911,-102.506729],[44.10112,-102.513786],[44.10247,-102.51857],[44.10281,-102.520103],[44.103039,-102.521469],[44.103222,-102.522873],[44.103352,-102.524368],[44.10339,-102.525726],[44.103378,-102.532509],[44.103439,-102.548019],[44.103439,-102.548523],[44.103439,-102.556168],[44.103481,-102.579033],[44.103489,-102.582542],[44.103489,-102.588127],[44.1035,-102.588829],[44.103512,-102.595032],[44.103519,-102.602997],[44.103539,-102.604507],[44.1036,-102.605949],[44.10371,-102.607361],[44.10384,-102.608917],[44.104038,-102.610573],[44.10429,-102.612251],[44.10458,-102.613876],[44.10638,-102.623367],[44.106548,-102.624428],[44.106651,-102.625397],[44.106739,-102.626503],[44.106789,-102.627708],[44.106789,-102.628777],[44.10675,-102.629997],[44.10667,-102.631126],[44.10651,-102.632378],[44.106339,-102.633583],[44.106091,-102.634972],[44.104549,-102.642838],[44.104149,-102.645432],[44.103809,-102.64843],[44.103611,-102.65139],[44.103588,-102.653137],[44.1036,-102.66761],[44.103588,-102.668152],[44.103611,-102.66893],[44.103611,-102.680458],[44.103619,-102.701683],[44.103611,-102.702789],[44.103649,-102.714821],[44.103619,-102.717247],[44.103642,-102.738167],[44.103661,-102.76532],[44.103649,-102.79319],[44.103661,-102.822937],[44.103649,-102.83519],[44.103649,-102.835762],[44.10368,-102.840103],[44.104038,-102.855553],[44.104149,-102.860046],[44.104191,-102.865433],[44.104221,-102.883163],[44.104271,-102.889313],[44.104259,-102.889862],[44.10429,-102.892281],[44.104401,-102.89418],[44.104599,-102.895638],[44.104912,-102.897339],[44.105301,-102.898956],[44.105782,-102.900497],[44.1063,-102.901871],[44.107681,-102.905197],[44.110081,-102.910858],[44.11095,-102.912987],[44.111439,-102.914307],[44.111881,-102.915588],[44.11422,-102.923302],[44.11692,-102.932297],[44.117661,-102.934853],[44.118011,-102.9366],[44.118198,-102.938187],[44.118252,-102.939827],[44.118309,-102.941673],[44.11834,-102.954613],[44.118351,-102.970123],[44.118359,-102.986122],[44.11837,-102.991913],[44.11821,-102.998611],[44.118031,-103.011139],[44.118019,-103.020798],[44.117989,-103.029213],[44.117981,-103.030006],[44.118,-103.030762],[44.118019,-103.041237],[44.118031,-103.05069],[44.118019,-103.058777],[44.118019,-103.062241],[44.117989,-103.070236],[44.118,-103.070923],[44.11797,-103.074852],[44.117901,-103.07711],[44.117821,-103.078979],[44.117802,-103.079659],[44.117779,-103.080254],[44.117741,-103.081337],[44.117592,-103.086189],[44.117561,-103.08931],[44.117561,-103.100594],[44.11755,-103.109734],[44.1175,-103.110626],[44.117439,-103.111282],[44.117329,-103.112061],[44.117149,-103.112907],[44.116951,-103.113617],[44.116669,-103.114479],[44.116428,-103.115089],[44.116241,-103.115501],[44.116009,-103.115936],[44.114559,-103.118553],[44.112289,-103.122597],[44.11198,-103.12323],[44.111759,-103.123611],[44.11132,-103.124397],[44.106689,-103.132729],[44.104389,-103.136902],[44.103779,-103.138206],[44.103378,-103.139191],[44.10302,-103.14019],[44.102669,-103.141289],[44.102379,-103.142357],[44.102161,-103.143311],[44.101711,-103.145683],[44.101582,-103.146622],[44.101601,-103.147774],[44.101841,-103.150841],[44.10183,-103.151047],[44.10181,-103.151169],[44.101711,-103.151291],[44.101528,-103.151291],[44.100861,-103.151291],[44.100109,-103.151299],[44.09951,-103.151299],[44.09935,-103.151299],[44.09901,-103.151299],[44.098419,-103.151291],[44.097382,-103.151314],[44.09708,-103.151314],[44.096249,-103.151299],[44.09177,-103.151192],[44.088501,-103.151161],[44.085541,-103.151138],[44.082569,-103.151131],[44.080601,-103.151154],[44.076359,-103.151176],[44.07563,-103.15126],[44.074989,-103.151329],[44.07365,-103.151802],[44.07283,-103.152382],[44.071819,-103.153374],[44.071178,-103.154297],[44.070862,-103.15509],[44.070011,-103.157028],[44.06921,-103.158508],[44.068588,-103.159111],[44.065338,-103.161682],[44.064522,-103.162369],[44.063049,-103.163513],[44.061729,-103.164513],[44.06094,-103.164841],[44.06028,-103.164993],[44.059139,-103.165092],[44.05624,-103.165123],[44.05217,-103.166229],[44.04871,-103.16713],[44.046551,-103.167908],[44.045349,-103.168701],[44.044621,-103.169456],[44.042061,-103.172112],[44.04071,-103.173607],[44.039719,-103.175346],[44.038731,-103.178207],[44.03846,-103.180161],[44.03846,-103.184608],[44.038502,-103.186684],[44.038509,-103.187134],[44.038521,-103.190643],[44.038521,-103.191437],[44.038521,-103.191544],[44.038521,-103.19165],[44.038521,-103.191872],[44.038509,-103.192039],[44.038509,-103.192169],[44.038521,-103.192947],[44.038521,-103.194107],[44.038528,-103.194679],[44.03849,-103.195351],[44.038368,-103.19632],[44.038231,-103.197144],[44.038071,-103.197823],[44.038021,-103.198067],[44.037769,-103.198868],[44.037361,-103.199806],[44.037128,-103.200233],[44.036839,-103.200821],[44.035721,-103.202492],[44.03252,-103.205544],[44.03215,-103.206047],[44.031811,-103.206642],[44.031601,-103.207123],[44.031429,-103.20768],[44.031319,-103.208168],[44.031219,-103.2089],[44.031219,-103.209618],[44.031269,-103.211853],[44.031281,-103.223427],[44.031158,-103.224564],[44.030842,-103.225822],[44.026081,-103.234879],[44.022949,-103.240601],[44.02253,-103.241203],[44.02203,-103.24173],[44.021389,-103.242363],[44.020538,-103.242958],[44.019619,-103.243492],[44.01923,-103.243767],[44.018841,-103.244217],[44.01857,-103.24469],[44.018372,-103.245247],[44.018269,-103.245773],[44.018219,-103.246269],[44.018261,-103.24707],[44.01841,-103.248367],[44.018539,-103.249733],[44.018581,-103.250107],[44.014252,-103.250923],[44.011261,-103.251411],[44.00943,-103.251747],[44.007549,-103.252083],[44.004551,-103.252663],[44.00396,-103.252739],[44.0033,-103.25293],[44.00293,-103.253036],[44.00259,-103.25322],[44.002239,-103.253433],[44.001919,-103.253647],[44.001431,-103.254066],[44.000969,-103.254509],[44.000599,-103.255013],[44.000198,-103.255608],[43.999378,-103.257057],[43.998199,-103.259193],[43.99762,-103.260246],[43.99704,-103.261261],[43.996559,-103.262192],[43.996071,-103.263069],[43.99556,-103.264],[43.99514,-103.264648],[43.99469,-103.265312],[43.994301,-103.265846],[43.993809,-103.266434],[43.993229,-103.267067],[43.992619,-103.267738],[43.991798,-103.2686],[43.990871,-103.269608],[43.9897,-103.270844],[43.988831,-103.271767],[43.988281,-103.272324],[43.988022,-103.272614],[43.98782,-103.27282],[43.98748,-103.27317],[43.986889,-103.273697],[43.986351,-103.274094],[43.98587,-103.274307],[43.985119,-103.274719],[43.984558,-103.274979],[43.983601,-103.275436],[43.982559,-103.275963],[43.981739,-103.276367],[43.981201,-103.276604],[43.980721,-103.276756],[43.98019,-103.276894],[43.979671,-103.27697],[43.979179,-103.277008],[43.97802,-103.277107],[43.97731,-103.277153],[43.976509,-103.277122],[43.97617,-103.277122],[43.975731,-103.277168],[43.975449,-103.277252],[43.975109,-103.277367],[43.97472,-103.277573],[43.974388,-103.277809],[43.974049,-103.278107],[43.973728,-103.278503],[43.973419,-103.278923],[43.973148,-103.279373],[43.972988,-103.279732],[43.972809,-103.28019],[43.972691,-103.280609],[43.97261,-103.280983],[43.972519,-103.28141],[43.972469,-103.281776],[43.97245,-103.282211],[43.97245,-103.282761],[43.972481,-103.283218],[43.97253,-103.283607],[43.972599,-103.283981],[43.973011,-103.285881],[43.973331,-103.287407],[43.973621,-103.288757],[43.973942,-103.290222],[43.974159,-103.291267],[43.97438,-103.292343],[43.974579,-103.293503],[43.97477,-103.294563],[43.974899,-103.295319],[43.974991,-103.295853],[43.97506,-103.296318],[43.975121,-103.296883],[43.975159,-103.297272],[43.975189,-103.297913],[43.975201,-103.298553],[43.975201,-103.299072],[43.97517,-103.299606],[43.975121,-103.300163],[43.97506,-103.300621],[43.974949,-103.301323],[43.97477,-103.302032],[43.97464,-103.302513],[43.97448,-103.303062],[43.974331,-103.303543],[43.97403,-103.304367],[43.973789,-103.305206],[43.97377,-103.305267],[43.973541,-103.306442],[43.97345,-103.307068],[43.973431,-103.307213],[43.973331,-103.308243],[43.973339,-103.308891],[43.973339,-103.308937],[43.973358,-103.30999],[43.97337,-103.310898],[43.973389,-103.311607],[43.973381,-103.311943],[43.973351,-103.312469],[43.97327,-103.313316],[43.973148,-103.314217],[43.97298,-103.315247],[43.97295,-103.315422],[43.972309,-103.319107],[43.971001,-103.326508],[43.97049,-103.329468],[43.970322,-103.330276],[43.97007,-103.331879],[43.969959,-103.332764],[43.969891,-103.333504],[43.969879,-103.333618],[43.96986,-103.333923],[43.969799,-103.335403],[43.96978,-103.336617],[43.969669,-103.337807],[43.969631,-103.33844],[43.969551,-103.339088],[43.969398,-103.340134],[43.9692,-103.341179],[43.968948,-103.342209],[43.967911,-103.345909],[43.967651,-103.346764],[43.967201,-103.348251],[43.966789,-103.349579],[43.96648,-103.350327],[43.966141,-103.350891],[43.965771,-103.351463],[43.965031,-103.352226],[43.963001,-103.353577],[43.962261,-103.354263],[43.961788,-103.354797],[43.961121,-103.355637],[43.960609,-103.356407],[43.958931,-103.360527],[43.958778,-103.360909],[43.958481,-103.361633],[43.957939,-103.362633],[43.957378,-103.363457],[43.956539,-103.364273],[43.956089,-103.364594],[43.955429,-103.364952],[43.9538,-103.36573],[43.952789,-103.36628],[43.950329,-103.36805],[43.94944,-103.368874],[43.946999,-103.371681],[43.9445,-103.374512],[43.943722,-103.375473],[43.943439,-103.375832],[43.9431,-103.376312],[43.942768,-103.376938],[43.942379,-103.377983],[43.942211,-103.378937],[43.942081,-103.381393],[43.942001,-103.383293],[43.941952,-103.385429],[43.942039,-103.386337],[43.94212,-103.386993],[43.942379,-103.388046],[43.942711,-103.389153],[43.943218,-103.391113],[43.943359,-103.391891],[43.94347,-103.393089],[43.943451,-103.394577],[43.94323,-103.396149],[43.94286,-103.397537],[43.942501,-103.398361],[43.942188,-103.399017],[43.940521,-103.401421],[43.93988,-103.402718],[43.93951,-103.404213],[43.93948,-103.405907],[43.939739,-103.408142],[43.939892,-103.40966],[43.939781,-103.410812],[43.939491,-103.411957],[43.938911,-103.414146],[43.93858,-103.415359],[43.93811,-103.416222],[43.93792,-103.416489],[43.937481,-103.416977],[43.93644,-103.417732],[43.93557,-103.418159],[43.934818,-103.418587],[43.934471,-103.418831],[43.93401,-103.419319],[43.93375,-103.419617],[43.93338,-103.420326],[43.933041,-103.421188],[43.932789,-103.42215],[43.93219,-103.424271],[43.931721,-103.425507],[43.931141,-103.426613],[43.930069,-103.428253],[43.929798,-103.428658],[43.929272,-103.429489],[43.925461,-103.435623],[43.924839,-103.436737],[43.924541,-103.437599],[43.9244,-103.438377],[43.924358,-103.43869],[43.924358,-103.439194],[43.924358,-103.439407],[43.924389,-103.439697],[43.924492,-103.44014],[43.924599,-103.440491],[43.924839,-103.441063],[43.924931,-103.441299],[43.924969,-103.441528],[43.924992,-103.441833],[43.92498,-103.442093],[43.924938,-103.442284],[43.924881,-103.442467],[43.924809,-103.442657],[43.924721,-103.442802],[43.924591,-103.442963],[43.924461,-103.443077],[43.924358,-103.443153],[43.924191,-103.443222],[43.92403,-103.443283],[43.923851,-103.443268],[43.92374,-103.443237],[43.923561,-103.443176],[43.923248,-103.442963],[43.923092,-103.442848],[43.922932,-103.442787],[43.922691,-103.442688],[43.922428,-103.44265],[43.922169,-103.442627],[43.921421,-103.442543],[43.920979,-103.442497],[43.920811,-103.442467],[43.920681,-103.44239],[43.920361,-103.442223],[43.920071,-103.442017],[43.91951,-103.441803],[43.919102,-103.44175],[43.91888,-103.441757],[43.918701,-103.441811],[43.918091,-103.441872],[43.917858,-103.441841],[43.917599,-103.441788],[43.917469,-103.441727],[43.917191,-103.441551],[43.916821,-103.441292],[43.916382,-103.441017],[43.915661,-103.440567],[43.91497,-103.440079],[43.9146,-103.439774],[43.914249,-103.439346],[43.913849,-103.438828],[43.913288,-103.438347],[43.912571,-103.438087],[43.911449,-103.43792],[43.910759,-103.43763],[43.909981,-103.437202],[43.909119,-103.437088],[43.908421,-103.437149],[43.907921,-103.43705],[43.907101,-103.436256],[43.906631,-103.435097],[43.90641,-103.433807],[43.9062,-103.432747],[43.905769,-103.431847],[43.90522,-103.431267],[43.904221,-103.430473],[43.904041,-103.430367],[43.90387,-103.430298],[43.903702,-103.430237],[43.903561,-103.430229],[43.903381,-103.430206],[43.903179,-103.430237],[43.90287,-103.430313],[43.902431,-103.430428],[43.902222,-103.43045],[43.902069,-103.430443],[43.90192,-103.430397],[43.901741,-103.430328],[43.90163,-103.430283],[43.901428,-103.430153],[43.901249,-103.430023],[43.901081,-103.429893],[43.900871,-103.429733],[43.9006,-103.429497],[43.900249,-103.429283],[43.90007,-103.429207],[43.89991,-103.429138],[43.899639,-103.429047],[43.899349,-103.429024],[43.899139,-103.428993],[43.898918,-103.42894],[43.898659,-103.428848],[43.898479,-103.428741],[43.898281,-103.428619],[43.898071,-103.428413],[43.8979,-103.428207],[43.897751,-103.428009],[43.897598,-103.427727],[43.897469,-103.427399],[43.897362,-103.427109],[43.89724,-103.426804],[43.897091,-103.426559],[43.8969,-103.426323],[43.896759,-103.426163],[43.89661,-103.426041],[43.896439,-103.425919],[43.896259,-103.425827],[43.895969,-103.42569],[43.895248,-103.425438],[43.894779,-103.425262],[43.894642,-103.425217],[43.89444,-103.425209],[43.894249,-103.425209],[43.894051,-103.425232],[43.89381,-103.425293],[43.893589,-103.4254],[43.893379,-103.425484],[43.893261,-103.42556],[43.893051,-103.425667],[43.892841,-103.425797],[43.892281,-103.426109],[43.89201,-103.426353],[43.891739,-103.426773],[43.891689,-103.426903],[43.891472,-103.427429],[43.891289,-103.427673],[43.891041,-103.427818],[43.890419,-103.427811],[43.890099,-103.427673],[43.889881,-103.427368],[43.889778,-103.427094],[43.88974,-103.426811],[43.889702,-103.426117],[43.889591,-103.425568],[43.8894,-103.425209],[43.88921,-103.425034],[43.888851,-103.425003],[43.888439,-103.42527],[43.887939,-103.425697],[43.88773,-103.426071],[43.887611,-103.426491],[43.88752,-103.429848],[43.88736,-103.430656],[43.887218,-103.431587],[43.887249,-103.432693],[43.887199,-103.433502],[43.887402,-103.434433],[43.887341,-103.434891],[43.887218,-103.43512],[43.886742,-103.435677],[43.88633,-103.436058],[43.885941,-103.436623],[43.88586,-103.436783],[43.885761,-103.437103],[43.885712,-103.437477],[43.88567,-103.43811],[43.885719,-103.438538],[43.88596,-103.439018],[43.886681,-103.440399],[43.887131,-103.441544],[43.887211,-103.442146],[43.887089,-103.442627],[43.886589,-103.443443],[43.886379,-103.444351],[43.88633,-103.444847],[43.886211,-103.445351],[43.88604,-103.445717],[43.885738,-103.446136],[43.885311,-103.446541],[43.88472,-103.446991],[43.8843,-103.447128],[43.883751,-103.447212],[43.883259,-103.447166],[43.882881,-103.447083],[43.882549,-103.446877],[43.882191,-103.446663],[43.881672,-103.446358],[43.881081,-103.446083],[43.88063,-103.445877],[43.88007,-103.445877],[43.879749,-103.445992],[43.879211,-103.446381],[43.878899,-103.446953],[43.87883,-103.447403],[43.87883,-103.447533],[43.878849,-103.447662],[43.878868,-103.447807],[43.878941,-103.44812],[43.879101,-103.448753],[43.879131,-103.448936],[43.879169,-103.449242],[43.879169,-103.449516],[43.87915,-103.449791],[43.87912,-103.449989],[43.879051,-103.450249],[43.878948,-103.450493],[43.87888,-103.450653],[43.878761,-103.450859],[43.878551,-103.451118],[43.878288,-103.451408],[43.878101,-103.451607],[43.877892,-103.451889],[43.877708,-103.452057],[43.87756,-103.452171],[43.877468,-103.452202],[43.877338,-103.452248],[43.877171,-103.452271],[43.877048,-103.452263],[43.876919,-103.452217],[43.876831,-103.452187],[43.876701,-103.452133],[43.876579,-103.452026],[43.876438,-103.451889],[43.87632,-103.451767],[43.876171,-103.45166],[43.876049,-103.451591],[43.875889,-103.451523],[43.87571,-103.451492],[43.875542,-103.451477],[43.87534,-103.4515],[43.875179,-103.451553],[43.874882,-103.451729],[43.87476,-103.45182],[43.874668,-103.451912],[43.874599,-103.452003],[43.874519,-103.45211],[43.87421,-103.452583],[43.8741,-103.452812],[43.87402,-103.453018],[43.873951,-103.453209],[43.87392,-103.453392],[43.87392,-103.453613],[43.873951,-103.453911],[43.87402,-103.454231],[43.87405,-103.454353],[43.874149,-103.45462],[43.87426,-103.454803],[43.87434,-103.454903],[43.87447,-103.455032],[43.87458,-103.455116],[43.87471,-103.4552],[43.874851,-103.455254],[43.875069,-103.455292],[43.875172,-103.455307],[43.875278,-103.45533],[43.875359,-103.45536],[43.875431,-103.455406],[43.87553,-103.455513],[43.87558,-103.455597],[43.875629,-103.455742],[43.875641,-103.455856],[43.875641,-103.455978],[43.875629,-103.456093],[43.875599,-103.456207],[43.875511,-103.456573],[43.875408,-103.456902],[43.875351,-103.457024],[43.87529,-103.457108],[43.87513,-103.457329],[43.875038,-103.457458],[43.874981,-103.457558],[43.874908,-103.457703],[43.87479,-103.45797],[43.874569,-103.458504],[43.87429,-103.459122],[43.874249,-103.459244],[43.874199,-103.459396],[43.874161,-103.459587],[43.87413,-103.45977],[43.87413,-103.459961],[43.87413,-103.460098],[43.874161,-103.460251],[43.874222,-103.460442],[43.874271,-103.460564],[43.874321,-103.460663],[43.874401,-103.460762],[43.87447,-103.460861],[43.874569,-103.46096],[43.874641,-103.461029],[43.874729,-103.461082],[43.87479,-103.461113],[43.87487,-103.461143],[43.87495,-103.461143],[43.875092,-103.461128],[43.875172,-103.461098],[43.875271,-103.461067],[43.875359,-103.461021],[43.875481,-103.46096],[43.87569,-103.460823],[43.875771,-103.460747],[43.87579,-103.460732],[43.876171,-103.460358],[43.876289,-103.460312],[43.87632,-103.460297],[43.876362,-103.460289],[43.87645,-103.460274],[43.876659,-103.460289],[43.877022,-103.46035],[43.877312,-103.460388],[43.877529,-103.460411],[43.877689,-103.460449],[43.877819,-103.460487],[43.877899,-103.460533],[43.877979,-103.460579],[43.878441,-103.460854],[43.878712,-103.460991],[43.878868,-103.46109],[43.87904,-103.461212],[43.87915,-103.461327],[43.87928,-103.461487],[43.879639,-103.461967],[43.87978,-103.462143],[43.879921,-103.462257],[43.88002,-103.462334],[43.880199,-103.462418],[43.880402,-103.462463],[43.88052,-103.462486],[43.88068,-103.462479],[43.880932,-103.462471],[43.881149,-103.462479],[43.881229,-103.462486],[43.88131,-103.462509],[43.88131,-103.462509],[43.881409,-103.462547],[43.881561,-103.462631],[43.881672,-103.462723],[43.881821,-103.462868],[43.88232,-103.463341],[43.88253,-103.463478],[43.882629,-103.463531],[43.88274,-103.463577],[43.883179,-103.463783],[43.883308,-103.463852],[43.8834,-103.463913],[43.883511,-103.463989],[43.883591,-103.464073],[43.883659,-103.464172],[43.88372,-103.464272],[43.883789,-103.464394],[43.883831,-103.464493],[43.883862,-103.464592],[43.8839,-103.464729],[43.883919,-103.464828],[43.883961,-103.46505],[43.88398,-103.465233],[43.884022,-103.465782],[43.884041,-103.465973],[43.884071,-103.466103],[43.884102,-103.466209],[43.88414,-103.466331],[43.88422,-103.466499],[43.884281,-103.466614],[43.88435,-103.466713],[43.884411,-103.466789],[43.884602,-103.466957],[43.885181,-103.46743],[43.884602,-103.466957],[43.884411,-103.466789],[43.88435,-103.466713],[43.884281,-103.466614],[43.88422,-103.466499],[43.88414,-103.466331],[43.884102,-103.466209],[43.884071,-103.466103],[43.884041,-103.465973],[43.884022,-103.465782],[43.88398,-103.465233],[43.883961,-103.46505],[43.883919,-103.464828],[43.8839,-103.464729],[43.883862,-103.464592],[43.883831,-103.464493],[43.883789,-103.464394],[43.88372,-103.464272],[43.883659,-103.464172],[43.883591,-103.464073],[43.883511,-103.463989],[43.8834,-103.463913],[43.883308,-103.463852],[43.883179,-103.463783],[43.88274,-103.463577],[43.882629,-103.463531],[43.88253,-103.463478],[43.88232,-103.463341],[43.881821,-103.462868],[43.881672,-103.462723],[43.881561,-103.462631],[43.881409,-103.462547],[43.88131,-103.462509],[43.881229,-103.462486],[43.881149,-103.462479],[43.880932,-103.462471],[43.88068,-103.462479],[43.88052,-103.462486],[43.880402,-103.462463],[43.880199,-103.462418],[43.88002,-103.462334],[43.879921,-103.462257],[43.87978,-103.462143],[43.879639,-103.461967],[43.87928,-103.461487],[43.87915,-103.461327],[43.87904,-103.461212],[43.878868,-103.46109],[43.878712,-103.460991],[43.878441,-103.460854],[43.877979,-103.460579],[43.877899,-103.460533],[43.877819,-103.460487],[43.877689,-103.460449],[43.877529,-103.460411],[43.877312,-103.460388],[43.877022,-103.46035],[43.876659,-103.460289],[43.87645,-103.460274],[43.876362,-103.460289],[43.87632,-103.460297],[43.876289,-103.460312],[43.876171,-103.460358],[43.87579,-103.460732],[43.875771,-103.460747],[43.87569,-103.460823],[43.875481,-103.46096],[43.875359,-103.461021],[43.875271,-103.461067],[43.875172,-103.461098],[43.875092,-103.461128],[43.87495,-103.461143],[43.87487,-103.461143],[43.87479,-103.461113],[43.874729,-103.461082],[43.874641,-103.461029],[43.874569,-103.46096],[43.87447,-103.460861],[43.874401,-103.460762],[43.874321,-103.460663],[43.874271,-103.460564],[43.874222,-103.460442],[43.874161,-103.460251],[43.87413,-103.460098],[43.87413,-103.459961],[43.87413,-103.45977],[43.874161,-103.459587],[43.874199,-103.459396],[43.874249,-103.459244],[43.87429,-103.459122],[43.874569,-103.458504],[43.87479,-103.45797],[43.874908,-103.457703],[43.874981,-103.457558],[43.875038,-103.457458],[43.87513,-103.457329],[43.87529,-103.457108],[43.875351,-103.457024],[43.875408,-103.456902],[43.875511,-103.456573],[43.875599,-103.456207],[43.875629,-103.456093],[43.875641,-103.455978],[43.875641,-103.455856],[43.875629,-103.455742],[43.87558,-103.455597],[43.87553,-103.455513],[43.875431,-103.455406],[43.875359,-103.45536],[43.875278,-103.45533],[43.875172,-103.455307],[43.875069,-103.455292],[43.874851,-103.455254],[43.87471,-103.4552],[43.87458,-103.455116],[43.87447,-103.455032],[43.87434,-103.454903],[43.87426,-103.454803],[43.874149,-103.45462],[43.87405,-103.454353],[43.87402,-103.454231],[43.873951,-103.453911],[43.87392,-103.453613],[43.87392,-103.453392],[43.873951,-103.453209],[43.87402,-103.453018],[43.8741,-103.452812],[43.87421,-103.452583],[43.874519,-103.45211],[43.874599,-103.452003],[43.874668,-103.451912],[43.87476,-103.45182],[43.874882,-103.451729],[43.875179,-103.451553],[43.87534,-103.4515],[43.875542,-103.451477],[43.87571,-103.451492],[43.875889,-103.451523],[43.876049,-103.451591],[43.876171,-103.45166],[43.87632,-103.451767],[43.876438,-103.451889],[43.876579,-103.452026],[43.876701,-103.452133],[43.876831,-103.452187],[43.876919,-103.452217],[43.877048,-103.452263],[43.877171,-103.452271],[43.877338,-103.452248],[43.877468,-103.452202],[43.87756,-103.452171],[43.877708,-103.452057],[43.877892,-103.451889],[43.878101,-103.451607],[43.878288,-103.451408],[43.878551,-103.451118],[43.878761,-103.450859],[43.87888,-103.450653],[43.878948,-103.450493],[43.879051,-103.450249],[43.87912,-103.449989],[43.87915,-103.449791],[43.879169,-103.449516],[43.879169,-103.449242],[43.879131,-103.448936],[43.879101,-103.448753],[43.878941,-103.44812],[43.878868,-103.447807],[43.878849,-103.447662],[43.87883,-103.447533],[43.87883,-103.447403],[43.878899,-103.446953],[43.879211,-103.446381],[43.879749,-103.445992],[43.88007,-103.445877],[43.88063,-103.445877],[43.881081,-103.446083],[43.881672,-103.446358],[43.882191,-103.446663],[43.882549,-103.446877],[43.882881,-103.447083],[43.883259,-103.447166],[43.883751,-103.447212],[43.8843,-103.447128],[43.88472,-103.446991],[43.885311,-103.446541],[43.885738,-103.446136],[43.88604,-103.445717],[43.886211,-103.445351],[43.88633,-103.444847],[43.886379,-103.444351],[43.886589,-103.443443],[43.887089,-103.442627],[43.887211,-103.442146],[43.887131,-103.441544],[43.886681,-103.440399],[43.88596,-103.439018],[43.885719,-103.438538],[43.88567,-103.43811],[43.885712,-103.437477],[43.885761,-103.437103],[43.88586,-103.436783],[43.885941,-103.436623],[43.88567,-103.43647],[43.88546,-103.436394],[43.885159,-103.436417],[43.884521,-103.436577],[43.883701,-103.436737],[43.88343,-103.436943],[43.88335,-103.437286],[43.883339,-103.437622],[43.883171,-103.43782],[43.88295,-103.437767],[43.882832,-103.437561],[43.88271,-103.437286],[43.88261,-103.436913],[43.88242,-103.436577],[43.882252,-103.436432],[43.881908,-103.436432],[43.88171,-103.436562],[43.881302,-103.437073],[43.880989,-103.43737],[43.88097,-103.437683],[43.880989,-103.438026],[43.880852,-103.438164],[43.880692,-103.438202],[43.88047,-103.437958],[43.88031,-103.437523],[43.88023,-103.436943],[43.8801,-103.436684],[43.880001,-103.436523],[43.879879,-103.436432],[43.87965,-103.436478],[43.87944,-103.436577],[43.87888,-103.436928],[43.878571,-103.437187],[43.878281,-103.437553],[43.87817,-103.437737],[43.877819,-103.438232],[43.87711,-103.438927],[43.876209,-103.439613],[43.876122,-103.439651],[43.876019,-103.439697],[43.875919,-103.439728],[43.87582,-103.439743],[43.875721,-103.439743],[43.87558,-103.43972],[43.875408,-103.439667],[43.875092,-103.439568],[43.874969,-103.439537],[43.874901,-103.439522],[43.874828,-103.439499],[43.874771,-103.439461],[43.874729,-103.43943],[43.87471,-103.439392],[43.87468,-103.439339],[43.87466,-103.439247],[43.874668,-103.439194],[43.874699,-103.439133],[43.874748,-103.439087],[43.874802,-103.439087],[43.874859,-103.43911],[43.87492,-103.439163],[43.874962,-103.439201],[43.875,-103.439262],[43.875011,-103.439323],[43.875031,-103.439392],[43.875031,-103.439461],[43.875019,-103.439529],[43.875,-103.43959],[43.874981,-103.439651],[43.874939,-103.439697],[43.874889,-103.439751],[43.87487,-103.439774],[43.874828,-103.439789],[43.874802,-103.439796],[43.874748,-103.439796],[43.874699,-103.439796],[43.874649,-103.439774],[43.874611,-103.439743],[43.874561,-103.439667],[43.874458,-103.439491],[43.87434,-103.439217],[43.87418,-103.438828],[43.874008,-103.4384],[43.873901,-103.438103],[43.873779,-103.437843],[43.873741,-103.437767],[43.873699,-103.437721],[43.87365,-103.437668],[43.873569,-103.437622],[43.873482,-103.437592],[43.87336,-103.437592],[43.873291,-103.437607],[43.873211,-103.437637],[43.873089,-103.437721],[43.872898,-103.437866],[43.872711,-103.438019],[43.872559,-103.438103],[43.872372,-103.438179],[43.8722,-103.438248],[43.87191,-103.438377],[43.87167,-103.438469],[43.871521,-103.438507],[43.871368,-103.438553],[43.871109,-103.43856],[43.870899,-103.438553],[43.87077,-103.438538],[43.87067,-103.438499],[43.87056,-103.438423],[43.870441,-103.438301],[43.870338,-103.438202],[43.87022,-103.438103],[43.870022,-103.437973],[43.869862,-103.437859],[43.869781,-103.437813],[43.86969,-103.437714],[43.869621,-103.437622],[43.869579,-103.437523],[43.86953,-103.437401],[43.869499,-103.437286],[43.869381,-103.436836],[43.86935,-103.436661],[43.869339,-103.436569],[43.869331,-103.43644],[43.869339,-103.43631],[43.86937,-103.436172],[43.869438,-103.435921],[43.86945,-103.435837],[43.869431,-103.435768],[43.869411,-103.435669],[43.869362,-103.435577],[43.869308,-103.435471],[43.869259,-103.435379],[43.869228,-103.435341],[43.869202,-103.435318],[43.869141,-103.435303],[43.86908,-103.43531],[43.869041,-103.435364],[43.869011,-103.435402],[43.868992,-103.435471],[43.868992,-103.435547],[43.869011,-103.435623],[43.86903,-103.435677],[43.869061,-103.435707],[43.869099,-103.435753],[43.869129,-103.43576],[43.869179,-103.435768],[43.869221,-103.43576],[43.86927,-103.435753],[43.869308,-103.435707],[43.86935,-103.435677],[43.869381,-103.435638],[43.869411,-103.43557],[43.869419,-103.435516],[43.869438,-103.43544],[43.86945,-103.435371],[43.86945,-103.43528],[43.86945,-103.435188],[43.869431,-103.435089],[43.869411,-103.434998],[43.869362,-103.434883],[43.869331,-103.434837],[43.869289,-103.434776],[43.86924,-103.434753],[43.869171,-103.434708],[43.86908,-103.434677],[43.869049,-103.434677],[43.869011,-103.434677],[43.868969,-103.434677],[43.868919,-103.434708],[43.868851,-103.434761],[43.868801,-103.434837],[43.868771,-103.434952],[43.868721,-103.435173],[43.868629,-103.435638],[43.868599,-103.435768],[43.868591,-103.435867],[43.868591,-103.435959],[43.868599,-103.436081],[43.868629,-103.436234],[43.86869,-103.436493],[43.868721,-103.4366],[43.86874,-103.436707],[43.868759,-103.437012],[43.868771,-103.437134],[43.868771,-103.437233],[43.868752,-103.437332],[43.868721,-103.437408],[43.86869,-103.437477],[43.868542,-103.437729],[43.868408,-103.437943],[43.868359,-103.438019],[43.868309,-103.438049],[43.868259,-103.438057],[43.868229,-103.438057],[43.868179,-103.438049],[43.86797,-103.438713],[43.867901,-103.438927],[43.86742,-103.439201],[43.867088,-103.439079],[43.866711,-103.439217],[43.86631,-103.439552],[43.866051,-103.439934],[43.865849,-103.440292],[43.865299,-103.440247],[43.864639,-103.439987],[43.864269,-103.440277],[43.863998,-103.440521],[43.863491,-103.440598],[43.863079,-103.440559],[43.862919,-103.440933],[43.862282,-103.441612],[43.861431,-103.441887],[43.861012,-103.441879],[43.86087,-103.441643],[43.860771,-103.441223],[43.860661,-103.440247],[43.860611,-103.440033],[43.860489,-103.439827],[43.860298,-103.439743],[43.85965,-103.439308],[43.859241,-103.438622],[43.85907,-103.438278],[43.858799,-103.437897],[43.858421,-103.437767],[43.857941,-103.437737],[43.857182,-103.437653],[43.856621,-103.437233],[43.856258,-103.437309],[43.85577,-103.437477],[43.855381,-103.43737],[43.85498,-103.436913],[43.854649,-103.436829],[43.854359,-103.43663],[43.853722,-103.436028],[43.853569,-103.435867],[43.85347,-103.43573],[43.853378,-103.435577],[43.853291,-103.435333],[43.85321,-103.435127],[43.85318,-103.434982],[43.853119,-103.434624],[43.853088,-103.434441],[43.853069,-103.434303],[43.853062,-103.434151],[43.8531,-103.433937],[43.853191,-103.4338],[43.853291,-103.433678],[43.85342,-103.433594],[43.853569,-103.433487],[43.85368,-103.433434],[43.853981,-103.433319],[43.854092,-103.433289],[43.854271,-103.433273],[43.854408,-103.433258],[43.854549,-103.433243],[43.854778,-103.433197],[43.85495,-103.433197],[43.85503,-103.43322],[43.85516,-103.433289],[43.855339,-103.433449],[43.855541,-103.433548],[43.855671,-103.433571],[43.855801,-103.43354],[43.855961,-103.433517],[43.856121,-103.433456],[43.85622,-103.433403],[43.85638,-103.433327],[43.856541,-103.433296],[43.856739,-103.433228],[43.85688,-103.433144],[43.856918,-103.432922],[43.85675,-103.432373],[43.856659,-103.432083],[43.856781,-103.43174],[43.856918,-103.431709],[43.857101,-103.43177],[43.857182,-103.431999],[43.857319,-103.432343],[43.857719,-103.432693],[43.85796,-103.432961],[43.85817,-103.433311],[43.8582,-103.433372],[43.858391,-103.433487],[43.858551,-103.433517],[43.85862,-103.433434],[43.85862,-103.433311],[43.858551,-103.433212],[43.85833,-103.433029],[43.858158,-103.432793],[43.85778,-103.432404],[43.857738,-103.432266],[43.857811,-103.432129],[43.857979,-103.432198],[43.858219,-103.43248],[43.85857,-103.432777],[43.858719,-103.432823],[43.85886,-103.432899],[43.85894,-103.433022],[43.85899,-103.433197],[43.85902,-103.433403],[43.858978,-103.433563],[43.858921,-103.433647],[43.85878,-103.433891],[43.858761,-103.434013],[43.858749,-103.434174],[43.85881,-103.434273],[43.858929,-103.434273],[43.859001,-103.434227],[43.859089,-103.434113],[43.85918,-103.433746],[43.85923,-103.433548],[43.859219,-103.433357],[43.8592,-103.433121],[43.859138,-103.432938],[43.859032,-103.432693],[43.858761,-103.432327],[43.858318,-103.431847],[43.858059,-103.431641],[43.858021,-103.431557],[43.858051,-103.43145],[43.858131,-103.431374],[43.858219,-103.431396],[43.858372,-103.431587],[43.858608,-103.431793],[43.858829,-103.431862],[43.859051,-103.431992],[43.859261,-103.432114],[43.85947,-103.432243],[43.859638,-103.432442],[43.859798,-103.432701],[43.859909,-103.43293],[43.860001,-103.433128],[43.860069,-103.433311],[43.860168,-103.433472],[43.860229,-103.433701],[43.860291,-103.433907],[43.860321,-103.434097],[43.860371,-103.434227],[43.860439,-103.434334],[43.860569,-103.434357],[43.860641,-103.434242],[43.860661,-103.434151],[43.860538,-103.433937],[43.86047,-103.433746],[43.860409,-103.433434],[43.86039,-103.433029],[43.860371,-103.432739],[43.860432,-103.432327],[43.86042,-103.432152],[43.860378,-103.432007],[43.86013,-103.431633],[43.85984,-103.431236],[43.859661,-103.430878],[43.85955,-103.430443],[43.859379,-103.430054],[43.859161,-103.429848],[43.858459,-103.429626],[43.857491,-103.429207],[43.856411,-103.428818],[43.855499,-103.428307],[43.854359,-103.427879],[43.854172,-103.427711],[43.853989,-103.427429],[43.85387,-103.427193],[43.853809,-103.426811],[43.853821,-103.426643],[43.85397,-103.4263],[43.854481,-103.425468],[43.856491,-103.423447],[43.85656,-103.423187],[43.85656,-103.423042],[43.85638,-103.422684],[43.85601,-103.422379],[43.85585,-103.422081],[43.8559,-103.421219],[43.855831,-103.420448],[43.855919,-103.419807],[43.856289,-103.418953],[43.856331,-103.418694],[43.85635,-103.417587],[43.856251,-103.417229],[43.85585,-103.416458],[43.85577,-103.416077],[43.855751,-103.415573],[43.855911,-103.414726],[43.855919,-103.414421],[43.85582,-103.413857],[43.855629,-103.413307],[43.85527,-103.412773],[43.855179,-103.412537],[43.855171,-103.412361],[43.855301,-103.41185],[43.855331,-103.41153],[43.85519,-103.410309],[43.855019,-103.409866],[43.854801,-103.409576],[43.854622,-103.409416],[43.854389,-103.409332],[43.85342,-103.409462],[43.85313,-103.409416],[43.852699,-103.409264],[43.85181,-103.409317],[43.851139,-103.409462],[43.850929,-103.40937],[43.850319,-103.408897],[43.85001,-103.408539],[43.849609,-103.407883],[43.849281,-103.40757],[43.848789,-103.407127],[43.84848,-103.406754],[43.848122,-103.406067],[43.847752,-103.404457],[43.847271,-103.40358],[43.846748,-103.402321],[43.84647,-103.40197],[43.845982,-103.402779],[43.845348,-103.402512],[43.844921,-103.402718],[43.844379,-103.402397],[43.84375,-103.402298],[43.843342,-103.402473],[43.843208,-103.40271],[43.843102,-103.402863],[43.842899,-103.403458],[43.842861,-103.40451],[43.842991,-103.4058],[43.842999,-103.406357],[43.8428,-103.407188],[43.842232,-103.408943],[43.842159,-103.409714],[43.84227,-103.410042],[43.84259,-103.410316],[43.843361,-103.410454],[43.843651,-103.410477],[43.844051,-103.410454],[43.84436,-103.410606],[43.844452,-103.410896],[43.844452,-103.411522],[43.84425,-103.412048],[43.843922,-103.412392],[43.8437,-103.412514],[43.843369,-103.412407],[43.84306,-103.412369],[43.842579,-103.412323],[43.842251,-103.412323],[43.84177,-103.41217],[43.84124,-103.412117],[43.840488,-103.412453],[43.839981,-103.413147],[43.83979,-103.413612],[43.83979,-103.413612],[43.839828,-103.414864],[43.83987,-103.414932],[43.84008,-103.415459],[43.840229,-103.415977],[43.840439,-103.416527],[43.840981,-103.417313],[43.84108,-103.417427],[43.84137,-103.417763],[43.842152,-103.417809],[43.843048,-103.418404],[43.843491,-103.418457],[43.84409,-103.417923],[43.844269,-103.417923],[43.844669,-103.417633],[43.844849,-103.417282],[43.844879,-103.416832],[43.84478,-103.41655],[43.84483,-103.416138],[43.845161,-103.415657],[43.84528,-103.414421],[43.8456,-103.413208],[43.845459,-103.411461],[43.845509,-103.410263],[43.84576,-103.409813],[43.845921,-103.409683],[43.84618,-103.409714],[43.846432,-103.41021],[43.846642,-103.410767],[43.847031,-103.410896],[43.847221,-103.411118],[43.847599,-103.412277],[43.847729,-103.412468],[43.847889,-103.412399],[43.84803,-103.412148],[43.848209,-103.410179],[43.84853,-103.40976],[43.849152,-103.40947],[43.849312,-103.409027],[43.849319,-103.407883],[43.849281,-103.40757],[43.849609,-103.407883],[43.85001,-103.408539],[43.850319,-103.408897],[43.850929,-103.40937],[43.851139,-103.409462],[43.85181,-103.409317],[43.852699,-103.409264],[43.85313,-103.409416],[43.85342,-103.409462],[43.854389,-103.409332],[43.854622,-103.409416],[43.854801,-103.409576],[43.855019,-103.409866],[43.85519,-103.410309],[43.855331,-103.41153],[43.855301,-103.41185],[43.855171,-103.412361],[43.855179,-103.412537],[43.85527,-103.412773],[43.855629,-103.413307],[43.85582,-103.413857],[43.855919,-103.414421],[43.855911,-103.414726],[43.855751,-103.415573],[43.85577,-103.416077],[43.85585,-103.416458],[43.856251,-103.417229],[43.85635,-103.417587],[43.856331,-103.418694],[43.856289,-103.418953],[43.855919,-103.419807],[43.855831,-103.420448],[43.8559,-103.421219],[43.85585,-103.422081],[43.85601,-103.422379],[43.85638,-103.422684],[43.85656,-103.423042],[43.85656,-103.423187],[43.856491,-103.423447],[43.854481,-103.425468],[43.85397,-103.4263],[43.853821,-103.426643],[43.853809,-103.426811],[43.85387,-103.427193],[43.853989,-103.427429],[43.854172,-103.427711],[43.854359,-103.427879],[43.855499,-103.428307],[43.856411,-103.428818],[43.857491,-103.429207],[43.858459,-103.429626],[43.859161,-103.429848],[43.859379,-103.430054],[43.85955,-103.430443],[43.859661,-103.430878],[43.85984,-103.431236],[43.86013,-103.431633],[43.860378,-103.432007],[43.86042,-103.432152],[43.860432,-103.432327],[43.860371,-103.432739],[43.86039,-103.433029],[43.860409,-103.433434],[43.86047,-103.433746],[43.860538,-103.433937],[43.860661,-103.434151],[43.860641,-103.434242],[43.860569,-103.434357],[43.860439,-103.434334],[43.860371,-103.434227],[43.860321,-103.434097],[43.860291,-103.433907],[43.860229,-103.433701],[43.860168,-103.433472],[43.860069,-103.433311],[43.860001,-103.433128],[43.859909,-103.43293],[43.859798,-103.432701],[43.859638,-103.432442],[43.85947,-103.432243],[43.859261,-103.432114],[43.859051,-103.431992],[43.858829,-103.431862],[43.858608,-103.431793],[43.858372,-103.431587],[43.858219,-103.431396],[43.858131,-103.431374],[43.858051,-103.43145],[43.858021,-103.431557],[43.858059,-103.431641],[43.858318,-103.431847],[43.858761,-103.432327],[43.859032,-103.432693],[43.859138,-103.432938],[43.8592,-103.433121],[43.859219,-103.433357],[43.85923,-103.433548],[43.85918,-103.433746],[43.859089,-103.434113],[43.859001,-103.434227],[43.858929,-103.434273],[43.85881,-103.434273],[43.858749,-103.434174],[43.858761,-103.434013],[43.85878,-103.433891],[43.858921,-103.433647],[43.858978,-103.433563],[43.85902,-103.433403],[43.85899,-103.433197],[43.85894,-103.433022],[43.85886,-103.432899],[43.858719,-103.432823],[43.85857,-103.432777],[43.858219,-103.43248],[43.857979,-103.432198],[43.857811,-103.432129],[43.857738,-103.432266],[43.85778,-103.432404],[43.858158,-103.432793],[43.85833,-103.433029],[43.858551,-103.433212],[43.85862,-103.433311],[43.85862,-103.433434],[43.858551,-103.433517],[43.858391,-103.433487],[43.8582,-103.433372],[43.85817,-103.433311],[43.85796,-103.432961],[43.857719,-103.432693],[43.857319,-103.432343],[43.857182,-103.431999],[43.857101,-103.43177],[43.856918,-103.431709],[43.856781,-103.43174],[43.856659,-103.432083],[43.85675,-103.432373],[43.856918,-103.432922],[43.85688,-103.433144],[43.856739,-103.433228],[43.856541,-103.433296],[43.85638,-103.433327],[43.85622,-103.433403],[43.856121,-103.433456],[43.855961,-103.433517],[43.855801,-103.43354],[43.855671,-103.433571],[43.855541,-103.433548],[43.855339,-103.433449],[43.85516,-103.433289],[43.85503,-103.43322],[43.85495,-103.433197],[43.854778,-103.433197],[43.854549,-103.433243],[43.854408,-103.433258],[43.854271,-103.433273],[43.854092,-103.433289],[43.853981,-103.433319],[43.85368,-103.433434],[43.853569,-103.433487],[43.85342,-103.433594],[43.853291,-103.433678],[43.853191,-103.4338],[43.8531,-103.433937],[43.853062,-103.434151],[43.853069,-103.434303],[43.853088,-103.434441],[43.853119,-103.434624],[43.85318,-103.434982],[43.85321,-103.435127],[43.853291,-103.435333],[43.853378,-103.435577],[43.85347,-103.43573],[43.853569,-103.435867],[43.853722,-103.436028],[43.854359,-103.43663],[43.854649,-103.436829],[43.85498,-103.436913],[43.855381,-103.43737],[43.85577,-103.437477],[43.856258,-103.437309],[43.856621,-103.437233],[43.857182,-103.437653],[43.857941,-103.437737],[43.858421,-103.437767],[43.858799,-103.437897],[43.85907,-103.438278],[43.859241,-103.438622],[43.85965,-103.439308],[43.860298,-103.439743],[43.860489,-103.439827],[43.860611,-103.440033],[43.860661,-103.440247],[43.860771,-103.441223],[43.86087,-103.441643],[43.861012,-103.441879],[43.861431,-103.441887],[43.862282,-103.441612],[43.862919,-103.440933],[43.863079,-103.440559],[43.863491,-103.440598],[43.863998,-103.440521],[43.864269,-103.440277],[43.864639,-103.439987],[43.865299,-103.440247],[43.865849,-103.440292],[43.866051,-103.439934],[43.86631,-103.439552],[43.866711,-103.439217],[43.867088,-103.439079],[43.86742,-103.439201],[43.867901,-103.438927],[43.86797,-103.438713],[43.868179,-103.438049],[43.868229,-103.438057],[43.868259,-103.438057],[43.868309,-103.438049],[43.868359,-103.438019],[43.868408,-103.437943],[43.868542,-103.437729],[43.86869,-103.437477],[43.868721,-103.437408],[43.868752,-103.437332],[43.868771,-103.437233],[43.868771,-103.437134],[43.868759,-103.437012],[43.86874,-103.436707],[43.868721,-103.4366],[43.86869,-103.436493],[43.868629,-103.436234],[43.868599,-103.436081],[43.868591,-103.435959],[43.868591,-103.435867],[43.868599,-103.435768],[43.868629,-103.435638],[43.868721,-103.435173],[43.868771,-103.434952],[43.868801,-103.434837],[43.868851,-103.434761],[43.868919,-103.434708],[43.868969,-103.434677],[43.869011,-103.434677],[43.869049,-103.434677],[43.86908,-103.434677],[43.869171,-103.434708],[43.86924,-103.434753],[43.869289,-103.434776],[43.869331,-103.434837],[43.869362,-103.434883],[43.869411,-103.434998],[43.869431,-103.435089],[43.86945,-103.435188],[43.86945,-103.43528],[43.86945,-103.435371],[43.869438,-103.43544],[43.869419,-103.435516],[43.869411,-103.43557],[43.869381,-103.435638],[43.86935,-103.435677],[43.869308,-103.435707],[43.86927,-103.435753],[43.869221,-103.43576],[43.869179,-103.435768],[43.869129,-103.43576],[43.869099,-103.435753],[43.869061,-103.435707],[43.86903,-103.435677],[43.869011,-103.435623],[43.868992,-103.435547],[43.868992,-103.435471],[43.869011,-103.435402],[43.869041,-103.435364],[43.86908,-103.43531],[43.869141,-103.435303],[43.869202,-103.435318],[43.869228,-103.435341],[43.869259,-103.435379],[43.869308,-103.435471],[43.869362,-103.435577],[43.869411,-103.435669],[43.869431,-103.435768],[43.86945,-103.435837],[43.869438,-103.435921],[43.86937,-103.436172],[43.869339,-103.43631],[43.869331,-103.43644],[43.869339,-103.436569],[43.86935,-103.436661],[43.869381,-103.436836],[43.869499,-103.437286],[43.86953,-103.437401],[43.869579,-103.437523],[43.869621,-103.437622],[43.86969,-103.437714],[43.869781,-103.437813],[43.869862,-103.437859],[43.870022,-103.437973],[43.87022,-103.438103],[43.870338,-103.438202],[43.870441,-103.438301],[43.87056,-103.438423],[43.87067,-103.438499],[43.87077,-103.438538],[43.870899,-103.438553],[43.871109,-103.43856],[43.871368,-103.438553],[43.871521,-103.438507],[43.87167,-103.438469],[43.87191,-103.438377],[43.8722,-103.438248],[43.872372,-103.438179],[43.872559,-103.438103],[43.872711,-103.438019],[43.872898,-103.437866],[43.873089,-103.437721],[43.873211,-103.437637],[43.873291,-103.437607],[43.87336,-103.437592],[43.873482,-103.437592],[43.873569,-103.437622],[43.87365,-103.437668],[43.873699,-103.437721],[43.873741,-103.437767],[43.873779,-103.437843],[43.873901,-103.438103],[43.874008,-103.4384],[43.87418,-103.438828],[43.87434,-103.439217],[43.874458,-103.439491],[43.874561,-103.439667],[43.874611,-103.439743],[43.874649,-103.439774],[43.874699,-103.439796],[43.874748,-103.439796],[43.874802,-103.439796],[43.874828,-103.439789],[43.87487,-103.439774],[43.874889,-103.439751],[43.874939,-103.439697],[43.874981,-103.439651],[43.875,-103.43959],[43.875019,-103.439529],[43.875031,-103.439461],[43.875031,-103.439392],[43.875011,-103.439323],[43.875,-103.439262],[43.874962,-103.439201],[43.87492,-103.439163],[43.874859,-103.43911],[43.874802,-103.439087],[43.874748,-103.439087],[43.874699,-103.439133],[43.874668,-103.439194],[43.87466,-103.439247],[43.87468,-103.439339],[43.87471,-103.439392],[43.874729,-103.43943],[43.874771,-103.439461],[43.874828,-103.439499],[43.874901,-103.439522],[43.874969,-103.439537],[43.875092,-103.439568],[43.875408,-103.439667],[43.87558,-103.43972],[43.875721,-103.439743],[43.87582,-103.439743],[43.875919,-103.439728],[43.876019,-103.439697],[43.876122,-103.439651],[43.876209,-103.439613],[43.87711,-103.438927],[43.877819,-103.438232],[43.87817,-103.437737],[43.878281,-103.437553],[43.878571,-103.437187],[43.87888,-103.436928],[43.87944,-103.436577],[43.87965,-103.436478],[43.879879,-103.436432],[43.880001,-103.436523],[43.8801,-103.436684],[43.88023,-103.436943],[43.88031,-103.437523],[43.88047,-103.437958],[43.880692,-103.438202],[43.880852,-103.438164],[43.880989,-103.438026],[43.88097,-103.437683],[43.880989,-103.43737],[43.881302,-103.437073],[43.88171,-103.436562],[43.881908,-103.436432],[43.882252,-103.436432],[43.88242,-103.436577],[43.88261,-103.436913],[43.88271,-103.437286],[43.882832,-103.437561],[43.88295,-103.437767],[43.883171,-103.43782],[43.883339,-103.437622],[43.88335,-103.437286],[43.88343,-103.436943],[43.883701,-103.436737],[43.884521,-103.436577],[43.885159,-103.436417],[43.88546,-103.436394],[43.88567,-103.43647],[43.885941,-103.436623],[43.88633,-103.436058],[43.886742,-103.435677],[43.887218,-103.43512],[43.887341,-103.434891],[43.887402,-103.434433],[43.887199,-103.433502],[43.887249,-103.432693],[43.887218,-103.431587],[43.88736,-103.430656],[43.88752,-103.429848],[43.887611,-103.426491],[43.88773,-103.426071],[43.887939,-103.425697],[43.888439,-103.42527],[43.888851,-103.425003],[43.88921,-103.425034],[43.8894,-103.425209],[43.889591,-103.425568],[43.889702,-103.426117],[43.88974,-103.426811],[43.889778,-103.427094],[43.889881,-103.427368],[43.890099,-103.427673],[43.890419,-103.427811],[43.891041,-103.427818],[43.891289,-103.427673],[43.891472,-103.427429],[43.891689,-103.426903],[43.891739,-103.426773],[43.89201,-103.426353],[43.892281,-103.426109],[43.892841,-103.425797],[43.893051,-103.425667],[43.893261,-103.42556],[43.893379,-103.425484],[43.893589,-103.4254],[43.89381,-103.425293],[43.894051,-103.425232],[43.894249,-103.425209],[43.89444,-103.425209],[43.894642,-103.425217],[43.894779,-103.425262],[43.895248,-103.425438],[43.895969,-103.42569],[43.896259,-103.425827],[43.896439,-103.425919],[43.89661,-103.426041],[43.896759,-103.426163],[43.8969,-103.426323],[43.897091,-103.426559],[43.89724,-103.426804],[43.897362,-103.427109],[43.897469,-103.427399],[43.897598,-103.427727],[43.897751,-103.428009],[43.8979,-103.428207],[43.898071,-103.428413],[43.898281,-103.428619],[43.898479,-103.428741],[43.898659,-103.428848],[43.898918,-103.42894],[43.899139,-103.428993],[43.899349,-103.429024],[43.899639,-103.429047],[43.89991,-103.429138],[43.90007,-103.429207],[43.900249,-103.429283],[43.9006,-103.429497],[43.900871,-103.429733],[43.901081,-103.429893],[43.901249,-103.430023],[43.901428,-103.430153],[43.90163,-103.430283],[43.901741,-103.430328],[43.90192,-103.430397],[43.902069,-103.430443],[43.902222,-103.43045],[43.902431,-103.430428],[43.90287,-103.430313],[43.903179,-103.430237],[43.903381,-103.430206],[43.903561,-103.430229],[43.903702,-103.430237],[43.90387,-103.430298],[43.904041,-103.430367],[43.904221,-103.430473],[43.90522,-103.431267],[43.905769,-103.431847],[43.9062,-103.432747],[43.90641,-103.433807],[43.906631,-103.435097],[43.907101,-103.436256],[43.907921,-103.43705],[43.908421,-103.437149],[43.909119,-103.437088],[43.909981,-103.437202],[43.910759,-103.43763],[43.911449,-103.43792],[43.912571,-103.438087],[43.913288,-103.438347],[43.913849,-103.438828],[43.914249,-103.439346],[43.9146,-103.439774],[43.91497,-103.440079],[43.915661,-103.440567],[43.916382,-103.441017],[43.916821,-103.441292],[43.917191,-103.441551],[43.917469,-103.441727],[43.917599,-103.441788],[43.917858,-103.441841],[43.918091,-103.441872],[43.918701,-103.441811],[43.91888,-103.441757],[43.919102,-103.44175],[43.91951,-103.441803],[43.920071,-103.442017],[43.920361,-103.442223],[43.920681,-103.44239],[43.921478,-103.442413],[43.921902,-103.442429],[43.922112,-103.442429],[43.922291,-103.442337],[43.922428,-103.442238],[43.92255,-103.442101],[43.922699,-103.44191],[43.922821,-103.441681],[43.92358,-103.439484],[43.924042,-103.438217],[43.924339,-103.437469],[43.924839,-103.436737],[43.925461,-103.435623],[43.929272,-103.429489],[43.929798,-103.428658],[43.930069,-103.428253],[43.931141,-103.426613],[43.931721,-103.425507],[43.93219,-103.424271],[43.932789,-103.42215],[43.933041,-103.421188],[43.93338,-103.420326],[43.93375,-103.419617],[43.93401,-103.419319],[43.934471,-103.418831],[43.934818,-103.418587],[43.93557,-103.418159],[43.93644,-103.417732],[43.937481,-103.416977],[43.93792,-103.416489],[43.93811,-103.416222],[43.93858,-103.415359],[43.938911,-103.414146],[43.939491,-103.411957],[43.939781,-103.410812],[43.939892,-103.40966],[43.939739,-103.408142],[43.93948,-103.405907],[43.93951,-103.404213],[43.93988,-103.402718],[43.940521,-103.401421],[43.942188,-103.399017],[43.942501,-103.398361],[43.94286,-103.397537],[43.94323,-103.396149],[43.943451,-103.394577],[43.94347,-103.393089],[43.943359,-103.391891],[43.943218,-103.391113],[43.942532,-103.389343],[43.94215,-103.38855],[43.941769,-103.387939],[43.941441,-103.387367],[43.940739,-103.386353],[43.94009,-103.385353],[43.93972,-103.384537],[43.93943,-103.383499],[43.939308,-103.382629],[43.939308,-103.38163],[43.939381,-103.380836],[43.939621,-103.379837],[43.939869,-103.379128],[43.94017,-103.37854],[43.940361,-103.378273],[43.940701,-103.377831],[43.940941,-103.377533],[43.941921,-103.376602],[43.94276,-103.375763],[43.943459,-103.375023],[43.944431,-103.374069],[43.946621,-103.371277],[43.94838,-103.368973],[43.952709,-103.363243],[43.953049,-103.362762],[43.95686,-103.357773],[43.95776,-103.35656],[43.95863,-103.355637],[43.95911,-103.355148],[43.960361,-103.354134],[43.961189,-103.353569],[43.961979,-103.353073],[43.96471,-103.351547],[43.965649,-103.350754],[43.965851,-103.350502],[43.966339,-103.349731],[43.96656,-103.349274],[43.966789,-103.348747],[43.96764,-103.345879],[43.96833,-103.343559],[43.968639,-103.342453],[43.96888,-103.341331],[43.96917,-103.339928],[43.969398,-103.338387],[43.969509,-103.336617],[43.96957,-103.334641],[43.969631,-103.333588],[43.969742,-103.332542],[43.970081,-103.330177],[43.970741,-103.326439],[43.972019,-103.319077],[43.972721,-103.315323],[43.972851,-103.31459],[43.973,-103.313652],[43.97311,-103.312714],[43.973179,-103.311951],[43.973228,-103.310204],[43.973209,-103.308434],[43.973289,-103.307007],[43.973572,-103.305527],[43.973671,-103.30513],[43.973789,-103.304672],[43.97406,-103.303848],[43.974331,-103.303062],[43.97456,-103.302307],[43.974689,-103.301804],[43.974819,-103.301247],[43.974918,-103.300713],[43.975029,-103.299957],[43.975071,-103.299103],[43.975071,-103.298447],[43.97504,-103.29763],[43.974991,-103.296913],[43.97488,-103.296097],[43.974041,-103.291313],[43.973259,-103.287773],[43.9729,-103.285988],[43.9725,-103.28418],[43.97237,-103.283508],[43.972328,-103.283157],[43.972309,-103.282639],[43.972309,-103.282257],[43.972328,-103.28186],[43.972359,-103.281517],[43.972431,-103.281113],[43.972549,-103.28064],[43.973049,-103.279243],[43.973381,-103.278679],[43.97403,-103.277901],[43.97456,-103.277451],[43.974892,-103.277267],[43.97522,-103.277122],[43.975479,-103.277031],[43.975731,-103.276978],[43.976151,-103.276917],[43.976601,-103.276917],[43.97747,-103.276962],[43.97834,-103.276901],[43.979149,-103.276817],[43.979641,-103.276787],[43.980179,-103.276718],[43.98069,-103.276588],[43.981159,-103.276443],[43.984268,-103.274933],[43.985222,-103.274452],[43.985729,-103.274193],[43.98621,-103.273949],[43.986549,-103.273727],[43.986969,-103.273407],[43.98748,-103.272957],[43.98793,-103.272461],[43.98819,-103.272186],[43.989578,-103.270721],[43.99081,-103.269447],[43.991741,-103.268463],[43.993832,-103.26609],[43.995411,-103.26384],[43.99942,-103.256882],[43.99979,-103.256187],[44.000111,-103.255608],[44.000519,-103.254913],[44.00106,-103.254211],[44.001492,-103.253777],[44.001942,-103.253357],[44.00219,-103.253159],[44.002861,-103.252769],[44.003281,-103.252602],[44.0037,-103.252487],[44.004539,-103.252327],[44.00893,-103.251488],[44.009392,-103.251427],[44.01421,-103.250542],[44.015171,-103.250351],[44.016701,-103.250053],[44.017632,-103.249893],[44.018539,-103.249733],[44.018871,-103.249657],[44.02235,-103.249092],[44.026749,-103.248306],[44.028931,-103.247932],[44.03022,-103.247688],[44.030788,-103.247581],[44.03389,-103.247017],[44.03392,-103.247009],[44.034962,-103.246819],[44.0396,-103.246063],[44.039989,-103.245979],[44.04023,-103.245903],[44.04039,-103.245857],[44.041321,-103.245598],[44.042461,-103.245087],[44.043541,-103.244507],[44.045551,-103.243607],[44.046539,-103.243103],[44.04752,-103.24247],[44.048698,-103.241783],[44.04916,-103.241287],[44.049519,-103.240646],[44.049721,-103.240189],[44.049881,-103.2397],[44.050289,-103.236313],[44.050541,-103.235161],[44.050781,-103.234413],[44.050999,-103.233994],[44.05127,-103.233551],[44.05159,-103.233162],[44.051929,-103.232857],[44.052261,-103.232643],[44.05283,-103.232368],[44.053371,-103.232292],[44.05592,-103.232201],[44.058651,-103.232246],[44.059029,-103.232307],[44.06115,-103.232231],[44.061489,-103.232239],[44.062611,-103.232384],[44.063469,-103.232391],[44.0644,-103.232391],[44.06451,-103.232391],[44.065498,-103.232399],[44.066582,-103.23243],[44.067558,-103.232452],[44.068508,-103.232399],[44.069538,-103.232407],[44.070591,-103.232384],[44.071602,-103.232361],[44.072689,-103.232338],[44.073689,-103.232338],[44.07468,-103.232422],[44.076,-103.232437],[44.076439,-103.232353],[44.077419,-103.232002],[44.07848,-103.231743],[44.079571,-103.231369],[44.08065,-103.231033],[44.08165,-103.230659],[44.082458,-103.230408],[44.08271,-103.230347],[44.082958,-103.23027],[44.08326,-103.230202],[44.084068,-103.22995],[44.084171,-103.231667],[44.084389,-103.233971],[44.08448,-103.233841],[44.085388,-103.233521],[44.08604,-103.233307],[44.08765,-103.232788],[44.089272,-103.23233],[44.08952,-103.232262],[44.089859,-103.232231],[44.09042,-103.232246],[44.092911,-103.232246],[44.09687,-103.232262],[44.09856,-103.232246],[44.09893,-103.232224],[44.101471,-103.232224],[44.102329,-103.232224],[44.102749,-103.232246],[44.10479,-103.232193],[44.105629,-103.232193],[44.105961,-103.232201],[44.106178,-103.232246],[44.106419,-103.232368],[44.106609,-103.232536],[44.106789,-103.232727],[44.10696,-103.233017],[44.107071,-103.233337],[44.10714,-103.233711],[44.10714,-103.234047],[44.107109,-103.23436],[44.10672,-103.237091],[44.106201,-103.240646],[44.10611,-103.241631],[44.106079,-103.242233],[44.106289,-103.248466],[44.106361,-103.24955],[44.106449,-103.250481],[44.10659,-103.251556],[44.10844,-103.262444],[44.108608,-103.263283],[44.10886,-103.264099],[44.109119,-103.26474],[44.109402,-103.265343],[44.109718,-103.265907],[44.110069,-103.266457],[44.110409,-103.266876],[44.111961,-103.268623],[44.112202,-103.268944],[44.113392,-103.270302],[44.114738,-103.271843],[44.115459,-103.272682],[44.116009,-103.273262],[44.116421,-103.273643],[44.116798,-103.273872],[44.117401,-103.274269],[44.11805,-103.274529],[44.118561,-103.274673],[44.11998,-103.274933],[44.123039,-103.27549],[44.124809,-103.275803],[44.125431,-103.27594],[44.126049,-103.276138],[44.128109,-103.276863],[44.129002,-103.277168],[44.129509,-103.27742],[44.129978,-103.277702],[44.130409,-103.278023],[44.130829,-103.278389],[44.131222,-103.278793],[44.13163,-103.279289],[44.131962,-103.279762],[44.132309,-103.280327],[44.13472,-103.285217],[44.135269,-103.286339],[44.13826,-103.292427],[44.13858,-103.293007],[44.138882,-103.293488],[44.13921,-103.29393],[44.139629,-103.294418],[44.140129,-103.294891],[44.140499,-103.295181],[44.140911,-103.295464],[44.153061,-103.30217],[44.153198,-103.302254],[44.157089,-103.304367],[44.157822,-103.304817],[44.158421,-103.305267],[44.159031,-103.305817],[44.15963,-103.306519],[44.16011,-103.307137],[44.161049,-103.308693],[44.162708,-103.311508],[44.16317,-103.312286],[44.164131,-103.313911],[44.165249,-103.315811],[44.166031,-103.317146],[44.166328,-103.317558],[44.16663,-103.317886],[44.167,-103.318222],[44.167309,-103.318459],[44.167629,-103.318642],[44.168041,-103.31881],[44.1684,-103.318909],[44.168789,-103.318962],[44.16914,-103.318947],[44.169601,-103.318878],[44.169991,-103.318764],[44.170448,-103.31868],[44.171082,-103.318703],[44.171551,-103.318832],[44.172771,-103.319389],[44.173691,-103.319862],[44.178291,-103.322243],[44.178959,-103.322632],[44.179531,-103.323067],[44.18,-103.323463],[44.18042,-103.323883],[44.180859,-103.324409],[44.181179,-103.324837],[44.18153,-103.32534],[44.19046,-103.337997],[44.194729,-103.344048],[44.194908,-103.344307],[44.196629,-103.346748],[44.197369,-103.347748],[44.19796,-103.348442],[44.19862,-103.349129],[44.202049,-103.352501],[44.216259,-103.366463],[44.216808,-103.367027],[44.217369,-103.367691],[44.217892,-103.368347],[44.21851,-103.369202],[44.22094,-103.37291],[44.22546,-103.379883],[44.22678,-103.381844],[44.227501,-103.38282],[44.228149,-103.383591],[44.22897,-103.384422],[44.235519,-103.39035],[44.236172,-103.390984],[44.236561,-103.391373],[44.237091,-103.391907],[44.238609,-103.393318],[44.24194,-103.396309],[44.24234,-103.396683],[44.242931,-103.397217],[44.243549,-103.397743],[44.24419,-103.398247],[44.244911,-103.398743],[44.246712,-103.399918],[44.24913,-103.401497],[44.249451,-103.401703],[44.265388,-103.412239],[44.265751,-103.412453],[44.27343,-103.417526],[44.274921,-103.418503],[44.278271,-103.420593],[44.27985,-103.421593],[44.281071,-103.42234],[44.282219,-103.423073],[44.286011,-103.425529],[44.28812,-103.426949],[44.29472,-103.43129],[44.29586,-103.432037],[44.296669,-103.432503],[44.29781,-103.433006],[44.298409,-103.433197],[44.299252,-103.433449],[44.29985,-103.433578],[44.304981,-103.434433],[44.31411,-103.435951],[44.316021,-103.436272],[44.317242,-103.436432],[44.318039,-103.43647],[44.31884,-103.436447],[44.31958,-103.436363],[44.32045,-103.436241],[44.323299,-103.435509],[44.324299,-103.435249],[44.32505,-103.435204],[44.32568,-103.435219],[44.326439,-103.435387],[44.32719,-103.435669],[44.327961,-103.436119],[44.332851,-103.439232],[44.337959,-103.442482],[44.33939,-103.443466],[44.340229,-103.444077],[44.340889,-103.444603],[44.341431,-103.445068],[44.347382,-103.450317],[44.348751,-103.451523],[44.35733,-103.459023],[44.36557,-103.466293],[44.366241,-103.466888],[44.36689,-103.467567],[44.368919,-103.470016],[44.371151,-103.47271],[44.371391,-103.472992],[44.374111,-103.476341],[44.375031,-103.477463],[44.37574,-103.478333],[44.378571,-103.4813],[44.379349,-103.482063],[44.380081,-103.482727],[44.381302,-103.483673],[44.38208,-103.484177],[44.382931,-103.484627],[44.384869,-103.485489],[44.385391,-103.485786],[44.385921,-103.486137],[44.38652,-103.486603],[44.387009,-103.487099],[44.387501,-103.48761],[44.388,-103.488251],[44.388458,-103.488991],[44.388889,-103.48983],[44.389992,-103.492012],[44.392368,-103.496986],[44.39312,-103.498543],[44.394058,-103.500519],[44.394852,-103.502327],[44.395302,-103.503578],[44.39555,-103.504372],[44.395721,-103.504959],[44.395969,-103.505959],[44.396118,-103.506683],[44.396542,-103.508408],[44.396778,-103.509354],[44.39703,-103.510399],[44.397259,-103.511383],[44.39761,-103.512413],[44.39782,-103.512932],[44.39806,-103.513527],[44.398449,-103.514359],[44.398849,-103.515083],[44.39912,-103.515503],[44.399658,-103.516281],[44.400311,-103.51712],[44.401119,-103.518066],[44.401981,-103.518997],[44.40263,-103.519653],[44.403118,-103.520126],[44.4034,-103.520393],[44.404148,-103.521042],[44.404869,-103.521637],[44.405762,-103.522324],[44.41296,-103.527367],[44.416111,-103.529587],[44.41666,-103.530006],[44.417179,-103.53035],[44.417549,-103.53064],[44.41798,-103.531036],[44.418411,-103.531532],[44.418659,-103.531853],[44.418991,-103.532356],[44.419338,-103.532944],[44.41964,-103.533607],[44.419899,-103.534233],[44.420151,-103.535004],[44.420952,-103.538063],[44.42136,-103.539581],[44.421478,-103.540031],[44.422421,-103.543739],[44.423141,-103.546921],[44.42363,-103.549347],[44.427582,-103.568947],[44.427929,-103.570587],[44.42828,-103.571701],[44.428619,-103.572617],[44.429031,-103.573463],[44.42942,-103.574158],[44.429859,-103.57476],[44.43047,-103.575523],[44.431999,-103.577026],[44.436001,-103.580948],[44.440601,-103.58548],[44.44183,-103.586792],[44.44297,-103.58812],[44.443691,-103.588997],[44.444271,-103.589783],[44.444561,-103.590157],[44.450409,-103.598297],[44.45118,-103.599403],[44.451771,-103.600288],[44.4524,-103.601318],[44.45303,-103.60244],[44.453671,-103.603683],[44.455441,-103.607536],[44.461159,-103.620232],[44.46146,-103.620857],[44.46394,-103.626373],[44.46463,-103.627777],[44.465191,-103.62883],[44.465729,-103.629738],[44.46632,-103.630669],[44.46693,-103.631607],[44.467659,-103.632561],[44.468441,-103.633583],[44.47094,-103.636757],[44.473129,-103.639557],[44.47369,-103.640358],[44.474121,-103.641006],[44.474361,-103.641403],[44.474781,-103.642281],[44.475071,-103.642967],[44.475281,-103.643623],[44.47551,-103.644447],[44.475761,-103.645813],[44.47641,-103.650307],[44.47654,-103.651237],[44.476959,-103.65432],[44.4771,-103.65567],[44.47723,-103.657227],[44.477291,-103.658783],[44.477421,-103.663361],[44.477489,-103.66481],[44.477638,-103.666367],[44.477791,-103.667709],[44.478039,-103.669403],[44.480122,-103.680847],[44.480412,-103.682213],[44.48077,-103.683723],[44.481209,-103.685303],[44.481659,-103.686813],[44.482121,-103.688179],[44.482731,-103.68985],[44.48312,-103.690773],[44.48349,-103.691689],[44.485489,-103.695862],[44.485931,-103.696899],[44.48624,-103.697777],[44.48661,-103.698868],[44.48695,-103.699997],[44.487099,-103.700638],[44.48735,-103.701759],[44.487591,-103.703209],[44.48774,-103.704529],[44.487862,-103.706093],[44.48811,-103.713203],[44.488129,-103.714607],[44.488091,-103.715958],[44.48798,-103.717171],[44.487789,-103.718483],[44.487549,-103.719719],[44.487171,-103.721199],[44.48666,-103.722687],[44.48605,-103.724182],[44.48558,-103.725281],[44.48534,-103.725807],[44.483841,-103.72921],[44.483559,-103.729828],[44.482021,-103.733307],[44.476742,-103.745277],[44.476299,-103.746513],[44.476101,-103.747063],[44.475941,-103.747643],[44.475788,-103.748283],[44.475651,-103.74897],[44.475491,-103.749817],[44.475349,-103.7509],[44.4753,-103.751793],[44.475281,-103.752777],[44.475319,-103.769463],[44.475319,-103.77002],[44.475319,-103.777237],[44.475319,-103.782791],[44.475342,-103.784782],[44.47541,-103.787071],[44.475479,-103.78894],[44.475601,-103.790947],[44.476021,-103.795998],[44.476059,-103.796562],[44.476799,-103.805962],[44.47699,-103.808296],[44.477989,-103.821129],[44.4781,-103.822258],[44.478298,-103.823387],[44.478561,-103.82444],[44.478779,-103.825203],[44.479099,-103.826149],[44.479351,-103.826782],[44.480629,-103.829559],[44.480782,-103.82988],[44.483261,-103.835457],[44.48365,-103.836304],[44.48402,-103.837013],[44.484489,-103.837799],[44.485001,-103.8386],[44.485451,-103.839256],[44.485981,-103.839943],[44.486629,-103.840759],[44.487679,-103.841873],[44.490009,-103.844307],[44.497471,-103.852013],[44.498989,-103.853577],[44.49984,-103.854439],[44.500278,-103.854843],[44.500729,-103.855217],[44.50119,-103.855583],[44.501431,-103.855759],[44.501671,-103.855919],[44.501911,-103.856087],[44.502651,-103.856537],[44.502899,-103.856682],[44.50341,-103.856949],[44.50367,-103.857071],[44.5042,-103.8573],[44.504459,-103.857407],[44.505192,-103.857689],[44.505791,-103.857841],[44.5117,-103.859093],[44.514191,-103.859688],[44.514992,-103.859848],[44.515678,-103.859993],[44.516319,-103.860191],[44.51683,-103.860367],[44.517429,-103.860687],[44.517841,-103.860901],[44.51807,-103.861107],[44.518539,-103.861511],[44.518879,-103.86171],[44.51939,-103.861969],[44.519791,-103.862137],[44.520149,-103.862427],[44.520481,-103.862793],[44.520821,-103.863312],[44.521011,-103.863663],[44.521099,-103.863983],[44.52158,-103.863792],[44.52161,-103.863777],[44.521809,-103.863693],[44.521919,-103.863632],[44.522259,-103.863419],[44.522381,-103.863327],[44.522732,-103.863068],[44.522839,-103.862984],[44.52293,-103.8629],[44.52301,-103.862839],[44.52317,-103.862701],[44.523331,-103.862579],[44.523399,-103.862511],[44.52356,-103.862389],[44.52364,-103.86232],[44.524231,-103.861893],[44.524311,-103.861839],[44.524601,-103.861671],[44.524872,-103.861519],[44.525311,-103.861328],[44.525558,-103.861237],[44.525921,-103.861122],[44.526131,-103.861069],[44.526279,-103.861038],[44.52644,-103.861023],[44.526821,-103.861],[44.52705,-103.861],[44.528179,-103.861038],[44.528332,-103.861053],[44.528591,-103.861053],[44.529148,-103.861053],[44.529289,-103.861038],[44.529839,-103.861038],[44.530251,-103.861031],[44.530659,-103.861031],[44.531071,-103.861023],[44.531479,-103.861023],[44.531891,-103.861023],[44.53241,-103.861023],[44.532711,-103.861008],[44.533131,-103.861008],[44.533951,-103.860992],[44.534359,-103.860992],[44.534771,-103.860977],[44.535191,-103.860977],[44.535591,-103.860977],[44.536011,-103.860977],[44.53606,-103.860977],[44.537239,-103.860962],[44.537651,-103.860947],[44.538071,-103.860947],[44.538349,-103.860931],[44.538589,-103.860901],[44.538799,-103.860893],[44.53952,-103.860764],[44.539959,-103.860672],[44.540138,-103.860626],[44.54031,-103.860603],[44.540661,-103.860527],[44.54084,-103.860497],[44.541389,-103.860382],[44.54158,-103.860336],[44.542351,-103.860184],[44.542542,-103.860138],[44.542561,-103.86013],[44.543129,-103.860023],[44.543331,-103.859978],[44.54353,-103.85994],[44.543941,-103.859848],[44.544529,-103.859734],[44.54491,-103.859673],[44.545631,-103.859589],[44.545799,-103.859573],[44.54615,-103.859558],[44.54649,-103.859558],[44.546959,-103.85955],[44.54789,-103.859573],[44.54871,-103.859573],[44.549122,-103.859573],[44.54953,-103.859573],[44.54995,-103.859581],[44.55032,-103.859581],[44.55077,-103.859581],[44.551182,-103.859589],[44.55154,-103.859589],[44.551998,-103.859589],[44.55241,-103.859596],[44.553242,-103.859596],[44.55365,-103.859596],[44.55434,-103.859596],[44.55492,-103.859612],[44.55574,-103.859612],[44.556149,-103.859619],[44.556969,-103.859619],[44.557381,-103.859627],[44.558182,-103.859627],[44.558998,-103.859642],[44.55941,-103.859642],[44.560242,-103.859657],[44.56065,-103.859657],[44.561062,-103.859657],[44.56147,-103.859657],[44.562191,-103.85968],[44.56271,-103.85968],[44.56353,-103.859703],[44.563938,-103.859703],[44.564758,-103.859711],[44.56517,-103.859711],[44.56559,-103.859718],[44.566002,-103.859718],[44.566818,-103.859734],[44.567471,-103.859741],[44.567638,-103.859741],[44.56805,-103.859749],[44.56847,-103.859749],[44.56929,-103.859756],[44.569698,-103.859756],[44.57011,-103.859772],[44.570518,-103.859772],[44.57135,-103.859787],[44.571758,-103.859787],[44.572578,-103.859802],[44.57299,-103.859802],[44.573811,-103.859818],[44.57423,-103.859818],[44.574638,-103.859833],[44.57505,-103.859833],[44.575871,-103.85984],[44.576279,-103.85984],[44.57711,-103.859863],[44.577518,-103.859863],[44.578339,-103.859871],[44.578491,-103.859871],[44.578751,-103.859871],[44.57991,-103.859894],[44.580399,-103.859894],[44.580811,-103.859894],[44.581631,-103.859909],[44.582039,-103.859909],[44.582249,-103.859917],[44.582619,-103.859947],[44.583191,-103.860031],[44.584141,-103.860207],[44.584259,-103.860229],[44.585369,-103.860443],[44.58577,-103.860527],[44.588211,-103.861038],[44.588619,-103.86113],[44.589882,-103.861389],[44.590889,-103.861526],[44.59169,-103.861687],[44.59222,-103.861809],[44.592701,-103.861923],[44.596031,-103.862617],[44.59647,-103.862663],[44.596722,-103.862663],[44.597,-103.862663],[44.597221,-103.86264],[44.597359,-103.862633],[44.597488,-103.86261],[44.597839,-103.862541],[44.59798,-103.862511],[44.5984,-103.862358],[44.599522,-103.861839],[44.600681,-103.861259],[44.600819,-103.861198],[44.60154,-103.860847],[44.601742,-103.860741],[44.602131,-103.860542],[44.604141,-103.859589],[44.604321,-103.859497],[44.604889,-103.859207],[44.60569,-103.858833],[44.60598,-103.858727],[44.606419,-103.858627],[44.606918,-103.858551],[44.60733,-103.858513],[44.60743,-103.858498],[44.607841,-103.858528],[44.608189,-103.858597],[44.6087,-103.858727],[44.609711,-103.859177],[44.610439,-103.859482],[44.611069,-103.859772],[44.611542,-103.859947],[44.611801,-103.860023],[44.612202,-103.860092],[44.61274,-103.860138],[44.612999,-103.86013],[44.61335,-103.860069],[44.613529,-103.860039],[44.613979,-103.859917],[44.614479,-103.859741],[44.61475,-103.859612],[44.61544,-103.859261],[44.616871,-103.858551],[44.61721,-103.858414],[44.61787,-103.858208],[44.618031,-103.858177],[44.61829,-103.858147],[44.618401,-103.858139],[44.61869,-103.858131],[44.61895,-103.858147],[44.619209,-103.85817],[44.619701,-103.858276],[44.620651,-103.85862],[44.621792,-103.858994],[44.62204,-103.85907],[44.622181,-103.859108],[44.62289,-103.85936],[44.62368,-103.859619],[44.62608,-103.860451],[44.626598,-103.860588],[44.626949,-103.860649],[44.627392,-103.860687],[44.62796,-103.86071],[44.629089,-103.860657],[44.629398,-103.860649],[44.62965,-103.860641],[44.63084,-103.860588],[44.632389,-103.86055],[44.633709,-103.860458],[44.634239,-103.860443],[44.634602,-103.86042],[44.634819,-103.860367],[44.635201,-103.860268],[44.63541,-103.860184],[44.63583,-103.860023],[44.636799,-103.85968],[44.63707,-103.859612],[44.637169,-103.859589],[44.63755,-103.859543],[44.637821,-103.859512],[44.638161,-103.859512],[44.638371,-103.859512],[44.64024,-103.85955],[44.64045,-103.859558],[44.64119,-103.859573],[44.641369,-103.859573],[44.64183,-103.859573],[44.64196,-103.859573],[44.643101,-103.859581],[44.644051,-103.859589],[44.644279,-103.859589],[44.644718,-103.859596],[44.64732,-103.859619],[44.64748,-103.859619],[44.648129,-103.859627],[44.64893,-103.859642],[44.649872,-103.859657],[44.650879,-103.859673],[44.65168,-103.859627],[44.65213,-103.85955],[44.652279,-103.859512],[44.652451,-103.859451],[44.652538,-103.859421],[44.65266,-103.859367],[44.652962,-103.859207],[44.65345,-103.858902],[44.65374,-103.858681],[44.65395,-103.858498],[44.654678,-103.85788],[44.654758,-103.857803],[44.655159,-103.857483],[44.655399,-103.857323],[44.65575,-103.857109],[44.65625,-103.856857],[44.656712,-103.856659],[44.657398,-103.856377],[44.658539,-103.855927],[44.65897,-103.855766],[44.659081,-103.855728],[44.660141,-103.855293],[44.661259,-103.85482],[44.661739,-103.854637],[44.662201,-103.854492],[44.662571,-103.854378],[44.663132,-103.854118],[44.66349,-103.853996],[44.66362,-103.853943],[44.66415,-103.853737],[44.66449,-103.85363],[44.6646,-103.853607],[44.665489,-103.853561],[44.66626,-103.853523],[44.666351,-103.853523],[44.666889,-103.8535],[44.667801,-103.853493],[44.67028,-103.853554],[44.670479,-103.853554],[44.670601,-103.853554],[44.67067,-103.853554],[44.67091,-103.853554],[44.6712,-103.853561],[44.67144,-103.853561],[44.672081,-103.853569],[44.672501,-103.853561],[44.673519,-103.853561],[44.67363,-103.853561],[44.674068,-103.853561],[44.674591,-103.853569],[44.675621,-103.853577],[44.675789,-103.853577],[44.676331,-103.853577],[44.67667,-103.853569],[44.677151,-103.853561],[44.67754,-103.853561],[44.678101,-103.853561],[44.679649,-103.853569],[44.680531,-103.853577],[44.68095,-103.853577],[44.681179,-103.853531],[44.681351,-103.85347],[44.681881,-103.853203],[44.682369,-103.852951],[44.682579,-103.852814],[44.68293,-103.852631],[44.68322,-103.85247],[44.683781,-103.852203],[44.683922,-103.852142],[44.68404,-103.852097],[44.68446,-103.851967],[44.685188,-103.851799],[44.685532,-103.851768],[44.686661,-103.851753],[44.68708,-103.851738],[44.68726,-103.851738],[44.68856,-103.851738],[44.690128,-103.851753],[44.691059,-103.851753],[44.691811,-103.851753],[44.691891,-103.851753],[44.693069,-103.851768],[44.695381,-103.851807],[44.695679,-103.851807],[44.696739,-103.85183],[44.697929,-103.851807],[44.698311,-103.851837],[44.698929,-103.851837],[44.700111,-103.851852],[44.701618,-103.851913],[44.701881,-103.851913],[44.70541,-103.85199],[44.709141,-103.852058],[44.712471,-103.852112],[44.714691,-103.852142],[44.715351,-103.85215],[44.715832,-103.852158],[44.722099,-103.852303],[44.723591,-103.852318],[44.725842,-103.852371],[44.727539,-103.852386],[44.72797,-103.852402],[44.72802,-103.852402],[44.72937,-103.852417],[44.730839,-103.852448],[44.73172,-103.85247],[44.732552,-103.852493],[44.73386,-103.852493],[44.73391,-103.852493],[44.73455,-103.852524],[44.735989,-103.852547],[44.74091,-103.852654],[44.74506,-103.852699],[44.745441,-103.852699],[44.746922,-103.85276],[44.752731,-103.852882],[44.75692,-103.852867],[44.75935,-103.852898],[44.763531,-103.852852],[44.76408,-103.852837],[44.769272,-103.852829],[44.771561,-103.852821],[44.77932,-103.852753],[44.789131,-103.852676],[44.79063,-103.852661],[44.79237,-103.852631],[44.793091,-103.852623],[44.79546,-103.852623],[44.80135,-103.852577],[44.806931,-103.852524],[44.81031,-103.852478],[44.81982,-103.852463],[44.820801,-103.852432],[44.821381,-103.852386],[44.8214,-103.852386],[44.822361,-103.852379],[44.82296,-103.852318],[44.823429,-103.852226],[44.823891,-103.852112],[44.824669,-103.851852],[44.825649,-103.851387],[44.826019,-103.851173],[44.826111,-103.85112],[44.826599,-103.850792],[44.827068,-103.850433],[44.8274,-103.850143],[44.827888,-103.849678],[44.828701,-103.848793],[44.832458,-103.844559],[44.83416,-103.842667],[44.835011,-103.841721],[44.836498,-103.840027],[44.8368,-103.839699],[44.837631,-103.838783],[44.837921,-103.838463],[44.838959,-103.837273],[44.839088,-103.837143],[44.840889,-103.835114],[44.843948,-103.83165],[44.846378,-103.828941],[44.847839,-103.827309],[44.85257,-103.822006],[44.853771,-103.820648],[44.853981,-103.820419],[44.854961,-103.819321],[44.855049,-103.819221],[44.855919,-103.817978],[44.85627,-103.817436],[44.856949,-103.816322],[44.857269,-103.815727],[44.857571,-103.815109],[44.858429,-103.813187],[44.858791,-103.812347],[44.858971,-103.811913],[44.859749,-103.810081],[44.860821,-103.807571],[44.862728,-103.803093],[44.864021,-103.800087],[44.86618,-103.795067],[44.86668,-103.793854],[44.867168,-103.79274],[44.873501,-103.777924],[44.878239,-103.766823],[44.878719,-103.765671],[44.87978,-103.763199],[44.88126,-103.759743],[44.881538,-103.759087],[44.88781,-103.744408],[44.88813,-103.743683],[44.892151,-103.734192],[44.892269,-103.73391],[44.894409,-103.728928],[44.901299,-103.712784],[44.903172,-103.708397],[44.90736,-103.698547],[44.908588,-103.695679],[44.90976,-103.692917],[44.9105,-103.691193],[44.913479,-103.684181],[44.91465,-103.68145],[44.91576,-103.678841],[44.920219,-103.668373],[44.92107,-103.666351],[44.921829,-103.664551],[44.924381,-103.658623],[44.92696,-103.652512],[44.927971,-103.650146],[44.929211,-103.647293],[44.92997,-103.645439],[44.930939,-103.643188],[44.93531,-103.632896],[44.935371,-103.632751],[44.93639,-103.63031],[44.93692,-103.629066],[44.93766,-103.627373],[44.940559,-103.620529],[44.941292,-103.61882],[44.94511,-103.609863],[44.94688,-103.605667],[44.94759,-103.603996],[44.949451,-103.59964],[44.952709,-103.591957],[44.953419,-103.590286],[44.95356,-103.589981],[44.95401,-103.589043],[44.954498,-103.588158],[44.954861,-103.587593],[44.955238,-103.587067],[44.95562,-103.586578],[44.95602,-103.586128],[44.956619,-103.58551],[44.957039,-103.585136],[44.957691,-103.584633],[44.95837,-103.584183],[44.959332,-103.583633],[44.965771,-103.579964],[44.96888,-103.578194],[44.971882,-103.576477],[44.974541,-103.574997],[44.974861,-103.574791],[44.977169,-103.573479],[44.983742,-103.569763],[44.987919,-103.567383],[44.990349,-103.565979],[44.998711,-103.561256],[45.00753,-103.556221],[45.010429,-103.554588],[45.010941,-103.554283],[45.01247,-103.553421],[45.01273,-103.553284],[45.01796,-103.550293],[45.018139,-103.550194],[45.019482,-103.549538],[45.019951,-103.549339],[45.02039,-103.549202],[45.021,-103.549019],[45.021839,-103.54882],[45.02282,-103.548691],[45.023312,-103.548653],[45.02446,-103.54863],[45.02565,-103.54863],[45.0266,-103.54863],[45.027359,-103.54863],[45.032379,-103.548607],[45.032879,-103.548607],[45.037399,-103.548637],[45.045441,-103.548607],[45.050018,-103.548622],[45.052509,-103.548622],[45.054352,-103.54863],[45.059052,-103.54863],[45.06226,-103.548622],[45.06385,-103.548622],[45.06543,-103.548607],[45.067459,-103.548607],[45.068951,-103.54863],[45.069561,-103.54863],[45.072559,-103.54863],[45.074699,-103.548622],[45.08326,-103.548653],[45.085331,-103.548653],[45.088219,-103.548637],[45.091091,-103.548637],[45.09425,-103.548653],[45.096081,-103.548653],[45.100101,-103.548637],[45.103931,-103.548653],[45.104309,-103.548653],[45.104939,-103.548637],[45.108181,-103.548653],[45.113529,-103.548653],[45.122711,-103.548653],[45.123878,-103.548668],[45.126308,-103.548637],[45.126492,-103.548637],[45.128441,-103.548653],[45.129082,-103.548653],[45.130692,-103.54863],[45.13657,-103.548653],[45.14238,-103.548653],[45.153278,-103.548653],[45.15704,-103.548653],[45.160149,-103.548653],[45.160252,-103.548653],[45.163139,-103.54866],[45.171181,-103.548653],[45.178051,-103.548653],[45.18914,-103.54866],[45.198669,-103.548668],[45.2033,-103.54866],[45.212742,-103.548653],[45.212959,-103.548653],[45.21347,-103.548607],[45.21368,-103.548607],[45.214081,-103.548599],[45.214291,-103.548607],[45.214729,-103.548607],[45.215279,-103.548622],[45.215752,-103.54863],[45.216042,-103.548622],[45.216499,-103.54863],[45.217049,-103.54863],[45.217258,-103.54863],[45.217812,-103.548637],[45.21801,-103.548637],[45.218361,-103.548637],[45.218899,-103.548622],[45.219059,-103.548622],[45.219501,-103.548622],[45.219688,-103.54863],[45.2202,-103.548622],[45.220749,-103.54863],[45.220871,-103.548622],[45.22142,-103.548607],[45.221989,-103.548622],[45.222542,-103.548622],[45.223091,-103.54863],[45.223518,-103.54863],[45.224072,-103.548622],[45.224689,-103.54863],[45.225861,-103.548637],[45.226219,-103.548637],[45.226768,-103.54863],[45.22694,-103.54863],[45.227489,-103.54863],[45.228069,-103.548622],[45.22916,-103.548622],[45.22963,-103.548622],[45.23032,-103.548622],[45.230721,-103.548622],[45.230961,-103.548607],[45.23151,-103.548622],[45.232071,-103.548622],[45.232349,-103.548622],[45.232719,-103.548622],[45.233261,-103.548607],[45.23336,-103.548607],[45.23391,-103.548607],[45.234322,-103.54863],[45.234871,-103.548622],[45.235081,-103.548622],[45.236111,-103.54863],[45.237511,-103.548607],[45.23806,-103.548607],[45.238369,-103.548622],[45.238918,-103.548622],[45.239079,-103.54863],[45.240341,-103.548622],[45.24144,-103.54863],[45.241989,-103.548622],[45.24226,-103.548607],[45.243359,-103.54863],[45.243629,-103.548637],[45.244041,-103.54863],[45.244099,-103.548622],[45.245041,-103.54863],[45.24559,-103.548607],[45.245892,-103.548622],[45.24617,-103.54863],[45.246281,-103.54863],[45.246368,-103.548622],[45.247471,-103.548622],[45.24762,-103.548622],[45.248711,-103.54863],[45.24934,-103.548637],[45.249962,-103.54863],[45.250511,-103.54863],[45.251091,-103.54863],[45.251629,-103.54863],[45.252178,-103.548622],[45.25238,-103.548607],[45.25386,-103.548622],[45.254021,-103.548622],[45.25457,-103.548622],[45.25478,-103.548622],[45.25563,-103.548607],[45.25618,-103.548622],[45.256279,-103.548622],[45.256538,-103.548622],[45.256828,-103.548607],[45.258209,-103.548607],[45.259312,-103.548607],[45.25985,-103.548607],[45.25996,-103.548607],[45.26009,-103.548607],[45.260159,-103.548607],[45.260601,-103.548607],[45.261051,-103.54863],[45.262421,-103.548622],[45.262772,-103.54863],[45.26326,-103.548622],[45.263809,-103.548653],[45.264172,-103.54866],[45.264408,-103.54866],[45.264961,-103.548668],[45.265129,-103.548668],[45.26524,-103.548668],[45.265579,-103.548668],[45.26593,-103.54866],[45.266171,-103.548668],[45.26672,-103.548668],[45.267269,-103.548668],[45.267689,-103.548668],[45.267811,-103.54866],[45.267921,-103.548668],[45.26815,-103.54866],[45.268269,-103.54866],[45.268501,-103.54866],[45.26862,-103.54866],[45.268951,-103.54866],[45.26939,-103.54866],[45.269711,-103.54866],[45.269821,-103.54866],[45.270779,-103.548653],[45.271099,-103.548653],[45.271259,-103.548653],[45.27137,-103.548653],[45.271568,-103.548653],[45.272041,-103.548653],[45.272209,-103.548653],[45.272591,-103.548653],[45.272911,-103.548653],[45.273029,-103.548653],[45.273499,-103.548653],[45.27367,-103.548653],[45.27417,-103.548653],[45.274521,-103.548653],[45.274891,-103.548653],[45.27523,-103.548653],[45.275372,-103.548653],[45.275681,-103.548653],[45.275921,-103.548653],[45.276192,-103.548653],[45.276279,-103.548653],[45.276741,-103.548653],[45.276871,-103.548653],[45.27702,-103.548653],[45.278141,-103.548653],[45.278332,-103.548653],[45.278511,-103.548653],[45.278709,-103.548653],[45.279099,-103.548653],[45.27935,-103.548653],[45.279709,-103.54866],[45.279911,-103.548653],[45.280331,-103.548653],[45.28054,-103.54866],[45.28141,-103.548653],[45.282059,-103.54866],[45.282501,-103.54866],[45.28294,-103.54866],[45.28315,-103.54866],[45.283379,-103.54866],[45.284908,-103.54866],[45.28513,-103.54866],[45.28577,-103.54866],[45.28619,-103.54866],[45.286591,-103.54866],[45.28759,-103.54866],[45.287781,-103.54866],[45.287979,-103.54866],[45.288181,-103.54866],[45.288731,-103.54866],[45.289181,-103.54866],[45.28978,-103.54866],[45.28997,-103.54866],[45.290371,-103.54866],[45.29076,-103.54866],[45.291321,-103.54866],[45.291489,-103.54866],[45.291851,-103.54866],[45.29274,-103.54866],[45.29324,-103.54866],[45.293411,-103.54866],[45.293758,-103.54866],[45.293941,-103.54866],[45.294121,-103.54866],[45.2943,-103.54866],[45.294491,-103.54866],[45.29467,-103.54866],[45.294861,-103.54866],[45.295052,-103.54866],[45.295238,-103.54866],[45.295429,-103.54866],[45.295811,-103.54866],[45.29599,-103.54866],[45.296711,-103.54866],[45.296879,-103.54866],[45.297039,-103.54866],[45.297352,-103.54866],[45.298069,-103.54866],[45.298649,-103.548668],[45.29879,-103.54866],[45.298931,-103.548668],[45.299221,-103.54866],[45.29937,-103.548668],[45.29966,-103.54866],[45.300011,-103.54866],[45.300228,-103.54866],[45.300522,-103.548668],[45.301071,-103.54866],[45.30125,-103.548653],[45.301411,-103.54866],[45.301571,-103.548653],[45.302078,-103.54866],[45.302261,-103.54866],[45.30262,-103.54866],[45.302811,-103.548668],[45.303188,-103.54866],[45.303741,-103.54866],[45.304119,-103.54866],[45.304501,-103.548668],[45.30521,-103.548653],[45.305691,-103.548668],[45.30574,-103.548668],[45.305908,-103.54866],[45.306438,-103.54866],[45.30661,-103.548653],[45.30769,-103.548653],[45.307869,-103.548653],[45.308048,-103.548653],[45.308239,-103.54866],[45.310429,-103.548653],[45.310532,-103.54866],[45.31073,-103.54866],[45.311279,-103.548653],[45.311531,-103.548653],[45.311729,-103.548653],[45.311932,-103.548653],[45.312481,-103.54866],[45.313091,-103.54866],[45.313358,-103.54866],[45.31377,-103.548653],[45.31398,-103.548653],[45.314529,-103.548653],[45.314819,-103.548653],[45.315041,-103.54866],[45.31525,-103.54866],[45.315689,-103.548668],[45.315899,-103.54866],[45.316109,-103.54866],[45.31633,-103.548653],[45.316551,-103.54866],[45.317101,-103.54866],[45.317188,-103.54866],[45.317612,-103.548668],[45.317822,-103.54866],[45.31802,-103.548668],[45.31823,-103.54866],[45.318771,-103.548668],[45.31918,-103.548683],[45.31937,-103.548683],[45.319801,-103.54866],[45.320339,-103.548683],[45.320572,-103.548683],[45.320759,-103.548668],[45.32095,-103.548668],[45.321331,-103.548653],[45.321529,-103.54866],[45.32254,-103.548683],[45.322739,-103.548668],[45.323292,-103.548683],[45.323582,-103.548683],[45.323799,-103.548668],[45.324341,-103.548668],[45.324772,-103.548668],[45.324871,-103.54866],[45.32531,-103.548683],[45.325741,-103.548683],[45.32616,-103.54866],[45.326599,-103.548668],[45.32703,-103.548668],[45.327469,-103.548668],[45.32769,-103.54866],[45.327911,-103.548668],[45.328079,-103.54866],[45.328129,-103.54866],[45.32835,-103.54866],[45.32922,-103.548653],[45.329441,-103.54866],[45.329868,-103.548653],[45.33073,-103.548668],[45.33115,-103.548668],[45.331551,-103.54866],[45.3321,-103.54866],[45.332279,-103.54866],[45.332581,-103.548653],[45.332729,-103.54866],[45.332859,-103.54866],[45.333408,-103.548653],[45.334278,-103.548653],[45.334641,-103.548653],[45.334782,-103.548653],[45.334862,-103.548653],[45.334949,-103.548653],[45.33503,-103.548653],[45.335209,-103.548653],[45.335312,-103.548653],[45.335869,-103.548653],[45.335991,-103.54866],[45.336239,-103.54866],[45.336369,-103.548653],[45.336639,-103.548653],[45.33675,-103.54866],[45.336769,-103.548653],[45.33691,-103.54866],[45.337448,-103.54866],[45.337589,-103.54866],[45.33786,-103.54866],[45.338009,-103.54866],[45.33815,-103.54866],[45.338299,-103.54866],[45.338451,-103.54866],[45.3386,-103.54866],[45.33865,-103.54866],[45.33876,-103.54866],[45.339069,-103.54866],[45.33939,-103.54866],[45.33971,-103.54866],[45.340221,-103.54866],[45.340382,-103.54866],[45.340881,-103.54866],[45.341049,-103.54866],[45.341221,-103.54866],[45.341389,-103.54866],[45.34206,-103.54866],[45.3424,-103.54866],[45.342739,-103.54866],[45.342899,-103.54866],[45.343239,-103.54866],[45.343399,-103.54866],[45.344582,-103.54866],[45.344749,-103.548668],[45.344818,-103.54866],[45.345249,-103.54866],[45.345409,-103.548668],[45.345581,-103.54866],[45.345909,-103.548668],[45.346241,-103.548668],[45.346401,-103.548668],[45.348591,-103.548668],[45.349018,-103.548668],[45.349461,-103.548668],[45.349602,-103.548668],[45.350201,-103.548668],[45.350948,-103.548668],[45.35141,-103.548668],[45.351559,-103.548668],[45.351719,-103.548668],[45.352032,-103.548668],[45.35218,-103.548683],[45.352489,-103.548668],[45.352638,-103.548683],[45.352951,-103.548668],[45.3531,-103.548683],[45.353249,-103.548668],[45.353981,-103.548683],[45.354118,-103.548683],[45.354401,-103.548683],[45.354542,-103.548683],[45.354801,-103.548683],[45.35516,-103.548683],[45.355259,-103.548683],[45.355339,-103.548683],[45.35582,-103.548683],[45.356049,-103.548683],[45.356689,-103.548683],[45.3568,-103.548683],[45.357639,-103.548683],[45.35778,-103.548683],[45.357979,-103.548683],[45.358109,-103.548683],[45.358231,-103.548683],[45.35836,-103.548683],[45.35849,-103.548683],[45.35873,-103.548683],[45.359421,-103.548683],[45.359509,-103.548683],[45.359612,-103.548683],[45.359711,-103.548683],[45.35994,-103.548683],[45.36005,-103.548683],[45.360149,-103.548683],[45.360989,-103.548683],[45.361221,-103.548683],[45.361328,-103.548683],[45.361439,-103.548683],[45.361649,-103.548683],[45.361851,-103.548683],[45.36195,-103.548683],[45.362049,-103.548683],[45.362461,-103.548683],[45.362579,-103.548683],[45.363041,-103.548683],[45.363159,-103.548683],[45.363411,-103.548683],[45.363651,-103.548683],[45.363762,-103.548683],[45.364342,-103.548683],[45.364559,-103.548683],[45.364658,-103.548683],[45.365589,-103.548683],[45.365719,-103.548683],[45.365841,-103.548683],[45.3661,-103.548683],[45.366489,-103.548683],[45.366619,-103.548683],[45.366741,-103.548683],[45.367512,-103.548683],[45.36763,-103.548683],[45.367748,-103.548683],[45.36787,-103.548683],[45.368279,-103.548683],[45.368328,-103.548691],[45.36845,-103.548691],[45.368931,-103.548721],[45.36911,-103.548737],[45.369171,-103.548737],[45.369411,-103.548767],[45.36953,-103.548798],[45.369652,-103.54882],[45.369781,-103.548843],[45.3699,-103.548866],[45.370152,-103.548912],[45.37027,-103.548943],[45.37077,-103.549057],[45.371239,-103.549179],[45.371349,-103.549217],[45.37159,-103.549301],[45.371799,-103.549362],[45.37199,-103.549438],[45.372162,-103.549507],[45.37228,-103.549561],[45.372391,-103.549606],[45.37281,-103.549789],[45.37289,-103.549828],[45.373161,-103.549927],[45.373249,-103.54998],[45.373341,-103.550018],[45.37344,-103.550056],[45.373539,-103.550102],[45.373638,-103.550148],[45.373741,-103.550194],[45.37384,-103.550232],[45.37394,-103.550278],[45.374149,-103.550362],[45.374249,-103.550407],[45.374352,-103.550453],[45.374451,-103.550491],[45.37455,-103.550537],[45.374649,-103.550583],[45.374748,-103.550629],[45.37495,-103.550713],[45.375061,-103.550758],[45.375259,-103.550842],[45.375359,-103.550888],[45.375469,-103.550926],[45.375771,-103.551064],[45.37587,-103.551102],[45.376148,-103.551224],[45.37624,-103.55127],[45.376339,-103.551308],[45.376431,-103.551353],[45.37653,-103.551376],[45.37661,-103.551422],[45.376801,-103.551514],[45.376888,-103.551537],[45.37709,-103.551628],[45.37719,-103.551666],[45.377289,-103.55172],[45.377499,-103.551804],[45.377602,-103.551849],[45.377708,-103.551903],[45.377811,-103.551941],[45.37793,-103.551987],[45.37838,-103.552193],[45.37849,-103.552238],[45.378601,-103.552277],[45.378941,-103.552429],[45.37915,-103.552513],[45.37965,-103.552727],[45.37986,-103.552834],[45.380291,-103.553009],[45.38052,-103.553108],[45.380638,-103.553162],[45.38076,-103.553207],[45.381001,-103.553307],[45.381119,-103.553368],[45.381241,-103.553413],[45.381359,-103.553467],[45.381481,-103.55352],[45.381721,-103.553619],[45.38195,-103.553726],[45.38221,-103.553833],[45.382389,-103.553909],[45.382599,-103.554001],[45.38271,-103.554047],[45.382912,-103.554131],[45.383011,-103.554176],[45.38311,-103.554222],[45.383301,-103.554314],[45.383389,-103.554337],[45.383591,-103.554428],[45.38369,-103.554466],[45.383789,-103.554512],[45.383991,-103.554604],[45.384102,-103.554642],[45.384201,-103.554688],[45.384628,-103.554871],[45.38475,-103.554916],[45.385231,-103.555138],[45.38549,-103.555237],[45.38562,-103.555298],[45.38575,-103.555359],[45.386162,-103.555527],[45.386299,-103.555603],[45.38657,-103.55571],[45.3867,-103.555763],[45.386841,-103.555817],[45.386978,-103.555893],[45.387272,-103.556023],[45.387779,-103.556229],[45.38792,-103.55629],[45.388069,-103.556351],[45.38905,-103.556778],[45.389271,-103.55687],[45.389408,-103.556931],[45.389542,-103.556976],[45.389809,-103.557098],[45.389931,-103.557137],[45.39006,-103.55719],[45.390179,-103.557228],[45.390289,-103.557266],[45.390411,-103.557297],[45.390518,-103.557343],[45.390629,-103.557373],[45.390751,-103.557404],[45.390869,-103.557426],[45.390991,-103.557449],[45.39122,-103.55751],[45.39135,-103.557533],[45.391472,-103.557549],[45.39185,-103.557617],[45.392109,-103.557632],[45.392231,-103.557648],[45.39249,-103.557663],[45.392738,-103.557663],[45.392872,-103.557663],[45.39312,-103.55764],[45.393372,-103.557617],[45.39349,-103.557602],[45.39362,-103.557579],[45.393742,-103.557571],[45.3941,-103.55751],[45.39484,-103.557404],[45.394958,-103.557373],[45.39542,-103.557297],[45.39563,-103.557259],[45.395729,-103.557243],[45.395821,-103.55722],[45.395901,-103.557213],[45.395988,-103.557198],[45.39632,-103.557137],[45.396469,-103.557114],[45.39695,-103.557037],[45.397148,-103.556999],[45.39724,-103.556976],[45.397339,-103.556976],[45.397919,-103.556877],[45.398239,-103.556824],[45.398338,-103.556801],[45.398449,-103.556793],[45.39856,-103.55677],[45.398788,-103.556732],[45.39925,-103.556664],[45.39946,-103.556618],[45.39967,-103.556587],[45.39978,-103.556557],[45.399891,-103.556549],[45.39999,-103.556534],[45.400108,-103.556511],[45.40033,-103.556473],[45.400429,-103.556458],[45.400539,-103.556442],[45.40065,-103.556419],[45.400761,-103.556396],[45.400879,-103.556381],[45.40099,-103.556374],[45.401211,-103.556328],[45.401661,-103.556252],[45.40176,-103.556236],[45.401871,-103.556221],[45.401981,-103.556213],[45.40218,-103.556168],[45.402382,-103.556137],[45.402489,-103.556107],[45.402691,-103.556084],[45.402802,-103.556068],[45.402908,-103.556053],[45.403679,-103.555923],[45.4039,-103.555878],[45.404129,-103.555847],[45.40424,-103.555817],[45.404461,-103.555794],[45.404671,-103.555763],[45.40477,-103.55574],[45.40506,-103.555687],[45.405682,-103.555588],[45.405781,-103.555557],[45.405891,-103.55555],[45.406212,-103.555496],[45.406319,-103.555481],[45.407791,-103.555237],[45.407909,-103.555206],[45.40881,-103.555069],[45.408932,-103.555054],[45.409061,-103.555023],[45.409191,-103.555],[45.409538,-103.554947],[45.409569,-103.554939],[45.409691,-103.554916],[45.409939,-103.554878],[45.410061,-103.554863],[45.410191,-103.554848],[45.41032,-103.554817],[45.410679,-103.554733],[45.410801,-103.554718],[45.410931,-103.55468],[45.411049,-103.554657],[45.411171,-103.554619],[45.411419,-103.554573],[45.411549,-103.554527],[45.411671,-103.554489],[45.411919,-103.554413],[45.412281,-103.554291],[45.412399,-103.554237],[45.412521,-103.554199],[45.41288,-103.554047],[45.413021,-103.553993],[45.41312,-103.55394],[45.41325,-103.553886],[45.413361,-103.553841],[45.413479,-103.553787],[45.413601,-103.553741],[45.413719,-103.553703],[45.413841,-103.55365],[45.414059,-103.553543],[45.414169,-103.55349],[45.41452,-103.553337],[45.414749,-103.553253],[45.414848,-103.5532],[45.41497,-103.553146],[45.415421,-103.552948],[45.415539,-103.552887],[45.415661,-103.552841],[45.415779,-103.552788],[45.416161,-103.552612],[45.416561,-103.552437],[45.41695,-103.552269],[45.41708,-103.552208],[45.417221,-103.552147],[45.41748,-103.552032],[45.417751,-103.551918],[45.417881,-103.551857],[45.41827,-103.551682],[45.41853,-103.551567],[45.419552,-103.551117],[45.419682,-103.551064],[45.419811,-103.551003],[45.419941,-103.550941],[45.420071,-103.550888],[45.4202,-103.550827],[45.421371,-103.550308],[45.42152,-103.550247],[45.421669,-103.550179],[45.421959,-103.550049],[45.422249,-103.549919],[45.422531,-103.549789],[45.42297,-103.549599],[45.42329,-103.549454],[45.42371,-103.549271],[45.424,-103.549141],[45.424149,-103.549072],[45.424301,-103.549011],[45.42445,-103.548943],[45.424599,-103.548866],[45.424911,-103.548737],[45.42506,-103.548683],[45.425659,-103.548401],[45.425812,-103.54834],[45.426109,-103.54821],[45.42625,-103.548141],[45.426399,-103.54808],[45.42654,-103.548019],[45.426682,-103.547951],[45.426819,-103.54789],[45.426971,-103.547829],[45.427391,-103.547638],[45.427521,-103.547577],[45.42765,-103.547523],[45.42778,-103.54747],[45.427898,-103.547417],[45.42802,-103.547363],[45.428139,-103.547287],[45.428848,-103.546982],[45.429218,-103.546806],[45.429489,-103.5467],[45.430031,-103.546463],[45.430561,-103.546257],[45.430729,-103.546181],[45.431179,-103.546028],[45.431332,-103.545982],[45.43148,-103.545929],[45.432079,-103.545776],[45.432381,-103.545723],[45.432678,-103.54567],[45.433281,-103.545593],[45.433571,-103.545563],[45.433842,-103.545532],[45.43412,-103.545532],[45.434719,-103.545532],[45.434971,-103.545532],[45.435131,-103.545532],[45.435478,-103.545532],[45.435661,-103.545532],[45.436199,-103.54554],[45.436581,-103.54554],[45.43771,-103.54554],[45.438251,-103.54554],[45.438641,-103.54554],[45.440109,-103.545547],[45.440289,-103.545547],[45.442291,-103.545547],[45.44265,-103.545547],[45.442829,-103.545563],[45.443211,-103.545563],[45.443951,-103.545563],[45.4459,-103.545563],[45.446072,-103.545563],[45.446918,-103.545563],[45.447399,-103.545563],[45.447552,-103.545563],[45.44799,-103.545563],[45.44923,-103.545563],[45.44952,-103.54557],[45.44965,-103.545563],[45.45005,-103.54557],[45.450191,-103.54557],[45.450451,-103.54557],[45.45116,-103.54557],[45.451309,-103.54557],[45.451851,-103.54557],[45.452431,-103.54557],[45.45253,-103.54557],[45.45303,-103.545578],[45.453201,-103.54557],[45.453732,-103.545578],[45.453911,-103.545578],[45.454079,-103.545578],[45.454262,-103.545578],[45.45443,-103.545578],[45.454601,-103.545578],[45.454948,-103.545578],[45.455299,-103.545578],[45.455631,-103.545578],[45.456181,-103.545578],[45.45647,-103.545593],[45.456638,-103.545593],[45.457932,-103.545593],[45.45858,-103.545593],[45.459381,-103.545593],[45.459881,-103.545593],[45.460049,-103.545593],[45.461231,-103.545593],[45.46291,-103.545593],[45.463249,-103.545601],[45.464088,-103.545601],[45.46534,-103.545601],[45.465519,-103.545601],[45.466068,-103.545601],[45.46698,-103.545609],[45.467339,-103.545609],[45.467529,-103.545609],[45.468449,-103.545609],[45.46867,-103.545609],[45.46925,-103.545609],[45.46983,-103.545609],[45.470379,-103.545609],[45.470619,-103.545624],[45.471001,-103.545624],[45.471378,-103.545624],[45.471909,-103.545624],[45.47208,-103.545624],[45.47226,-103.545624],[45.472431,-103.545624],[45.473148,-103.545624],[45.473701,-103.545624],[45.474201,-103.545624],[45.47438,-103.545624],[45.476021,-103.545624],[45.476421,-103.545624],[45.477242,-103.545631],[45.47871,-103.545631],[45.479031,-103.545631],[45.47958,-103.545631],[45.480129,-103.545631],[45.480679,-103.545639],[45.48233,-103.545639],[45.48241,-103.545639],[45.48296,-103.545639],[45.48344,-103.545639],[45.48399,-103.545639],[45.484539,-103.545647],[45.48608,-103.545647],[45.48658,-103.545647],[45.487598,-103.545647],[45.488152,-103.545647],[45.488701,-103.545647],[45.489521,-103.545647],[45.490341,-103.545647],[45.491241,-103.545647],[45.491791,-103.545662],[45.49192,-103.545662],[45.49234,-103.545662],[45.493431,-103.545662],[45.49353,-103.545662],[45.494629,-103.54567],[45.495178,-103.54567],[45.495731,-103.54567],[45.495979,-103.54567],[45.496529,-103.54567],[45.49707,-103.54567],[45.49762,-103.545677],[45.498169,-103.545677],[45.49836,-103.545677],[45.50066,-103.545677],[45.501209,-103.545677],[45.501518,-103.545677],[45.502609,-103.545677],[45.504181,-103.545677],[45.505409,-103.545692],[45.505951,-103.545692],[45.506882,-103.545692],[45.506981,-103.545692],[45.50808,-103.5457],[45.510738,-103.5457],[45.511292,-103.545708],[45.511471,-103.545708],[45.51202,-103.545708],[45.512569,-103.545708],[45.51313,-103.545708],[45.51368,-103.545723],[45.513981,-103.545723],[45.51453,-103.545723],[45.515079,-103.545723],[45.515221,-103.545723],[45.515701,-103.545723],[45.516239,-103.545731],[45.516541,-103.545731],[45.5168,-103.545731],[45.517071,-103.545731],[45.51746,-103.545723],[45.517841,-103.545731],[45.518379,-103.545723],[45.518581,-103.545723],[45.5191,-103.545708],[45.519241,-103.545708],[45.519791,-103.545723],[45.52034,-103.545723],[45.520882,-103.545723],[45.521919,-103.545723],[45.52261,-103.545731],[45.523159,-103.545731],[45.523701,-103.545731],[45.523861,-103.545731],[45.524391,-103.545753],[45.52549,-103.545738],[45.526081,-103.545738],[45.527328,-103.545753],[45.52813,-103.545738],[45.529221,-103.545753],[45.529732,-103.545753],[45.530281,-103.545753],[45.53088,-103.545753],[45.531521,-103.545753],[45.53207,-103.545761],[45.532478,-103.545769],[45.533031,-103.545769],[45.533569,-103.545769],[45.533909,-103.545761],[45.534458,-103.545769],[45.535099,-103.545776],[45.535641,-103.545776],[45.53619,-103.545769],[45.53643,-103.545769],[45.53698,-103.545776],[45.537079,-103.545776],[45.538879,-103.545776],[45.539909,-103.545776],[45.540459,-103.545776],[45.5415,-103.545776],[45.542049,-103.545776],[45.542599,-103.545792],[45.542912,-103.545799],[45.543461,-103.545792],[45.54401,-103.545799],[45.544479,-103.545792],[45.545158,-103.545799],[45.546551,-103.545799],[45.5471,-103.545799],[45.54752,-103.545792],[45.547699,-103.545776],[45.54805,-103.545753],[45.548191,-103.545753],[45.54895,-103.545792],[45.5494,-103.545799],[45.54977,-103.545792],[45.55032,-103.545799],[45.55072,-103.545807],[45.55127,-103.545799],[45.551842,-103.545807],[45.55238,-103.545807],[45.55304,-103.545807],[45.553371,-103.545807],[45.553921,-103.545807],[45.55447,-103.545807],[45.554562,-103.545807],[45.555359,-103.545807],[45.556461,-103.545822],[45.557079,-103.545822],[45.557301,-103.545807],[45.557652,-103.545822],[45.558201,-103.545807],[45.55854,-103.545807],[45.558681,-103.545799],[45.559132,-103.545799],[45.559361,-103.545799],[45.55983,-103.545776],[45.56012,-103.545769],[45.560551,-103.545769],[45.560699,-103.545776],[45.560879,-103.545769],[45.56105,-103.545769],[45.56131,-103.545769],[45.56147,-103.545769],[45.561588,-103.545776],[45.56168,-103.545769],[45.562119,-103.545776],[45.56237,-103.545807],[45.56292,-103.545807],[45.563129,-103.545807],[45.56353,-103.545822],[45.564011,-103.54583],[45.565109,-103.54583],[45.565659,-103.545822],[45.566551,-103.54583],[45.567101,-103.545837],[45.568199,-103.545837],[45.568741,-103.545837],[45.56955,-103.545853],[45.570301,-103.545837],[45.57093,-103.545853],[45.57148,-103.545853],[45.571629,-103.545837],[45.5718,-103.545837],[45.572338,-103.545853],[45.572861,-103.545853],[45.573238,-103.545837],[45.573589,-103.545837],[45.57362,-103.54583],[45.5742,-103.545807],[45.574371,-103.545807],[45.574532,-103.545822],[45.575039,-103.545807],[45.575581,-103.545822],[45.576,-103.545822],[45.576271,-103.545837],[45.577091,-103.545853],[45.577278,-103.545853],[45.577499,-103.545853],[45.578011,-103.545853],[45.578049,-103.545853],[45.578602,-103.54583],[45.57893,-103.54583],[45.5793,-103.545837],[45.579479,-103.545837],[45.579681,-103.545837],[45.579788,-103.545837],[45.57996,-103.545837],[45.580101,-103.545837],[45.580391,-103.54583],[45.58073,-103.545837],[45.58128,-103.545837],[45.581551,-103.545837],[45.58231,-103.545837],[45.582859,-103.545837],[45.58292,-103.545837],[45.583351,-103.545837],[45.584209,-103.545837],[45.584381,-103.545837],[45.584541,-103.545837],[45.584702,-103.545837],[45.585091,-103.545837],[45.58532,-103.545837],[45.586102,-103.545837],[45.586239,-103.545837],[45.586449,-103.545837],[45.58646,-103.545837],[45.586899,-103.545837],[45.587009,-103.545837],[45.58709,-103.545837],[45.587189,-103.545837],[45.587299,-103.545837],[45.587399,-103.545837],[45.58765,-103.545853],[45.58778,-103.545837],[45.58791,-103.545853],[45.58802,-103.545837],[45.588329,-103.545853],[45.588779,-103.545853],[45.5895,-103.545853],[45.58989,-103.545853],[45.59024,-103.545853],[45.590351,-103.545853],[45.59132,-103.545853],[45.59153,-103.545853],[45.59166,-103.545853],[45.592098,-103.545853],[45.592209,-103.545853],[45.5923,-103.545853],[45.593639,-103.545853],[45.59404,-103.545853],[45.59465,-103.545853],[45.595119,-103.54586],[45.596291,-103.545853],[45.59679,-103.54586],[45.597321,-103.545853],[45.597851,-103.545853],[45.5984,-103.545853],[45.599609,-103.54586],[45.59985,-103.54586],[45.600719,-103.54586],[45.601269,-103.54586],[45.601601,-103.545868],[45.60215,-103.545853],[45.602711,-103.54586],[45.603199,-103.545868],[45.603451,-103.545868],[45.604,-103.545868],[45.604549,-103.545868],[45.605011,-103.54586],[45.60556,-103.545868],[45.605808,-103.545883],[45.606579,-103.545868],[45.606682,-103.545883],[45.606689,-103.545883],[45.607239,-103.54586],[45.607391,-103.54586],[45.608059,-103.545868],[45.608608,-103.545868],[45.608829,-103.545868],[45.609371,-103.545883],[45.60957,-103.545883],[45.610081,-103.545868],[45.61063,-103.545883],[45.610828,-103.545883],[45.611809,-103.545883],[45.612911,-103.545883],[45.613461,-103.545883],[45.613998,-103.545883],[45.614552,-103.545883],[45.61488,-103.545868],[45.615028,-103.545868],[45.615452,-103.54583],[45.615841,-103.545776],[45.6161,-103.545738],[45.616482,-103.545647],[45.616718,-103.545593],[45.61684,-103.545563],[45.617088,-103.545479],[45.617691,-103.545242],[45.61805,-103.545082],[45.618519,-103.544838],[45.618969,-103.544563],[45.619289,-103.54435],[45.619621,-103.544113],[45.619862,-103.543907],[45.620209,-103.543602],[45.620399,-103.543427],[45.620499,-103.543327],[45.620602,-103.543221],[45.620739,-103.543091],[45.621059,-103.54277],[45.621391,-103.542389],[45.6217,-103.542007],[45.621861,-103.541809],[45.622009,-103.541603],[45.622219,-103.54129],[45.622349,-103.5411],[45.622532,-103.540817],[45.622879,-103.540207],[45.622952,-103.540092],[45.623199,-103.539642],[45.623291,-103.539429],[45.623501,-103.538986],[45.62381,-103.538353],[45.624111,-103.537697],[45.62431,-103.537308],[45.624882,-103.536057],[45.6255,-103.534767],[45.625751,-103.534233],[45.626362,-103.532928],[45.62672,-103.532173],[45.626881,-103.53183],[45.627151,-103.531242],[45.62727,-103.530998],[45.62756,-103.530403],[45.627861,-103.529739],[45.62801,-103.529419],[45.628719,-103.527908],[45.629028,-103.527267],[45.629391,-103.526497],[45.6297,-103.525848],[45.630001,-103.5252],[45.630402,-103.524368],[45.631008,-103.523064],[45.631321,-103.522423],[45.631519,-103.521988],[45.63192,-103.521133],[45.63253,-103.519836],[45.633129,-103.518547],[45.63467,-103.515312],[45.635948,-103.512589],[45.637039,-103.510246],[45.63818,-103.507843],[45.63884,-103.506439],[45.639549,-103.504951],[45.6404,-103.503128],[45.640709,-103.50248],[45.64101,-103.501839],[45.641399,-103.501038],[45.641998,-103.499733],[45.642262,-103.499199],[45.642849,-103.497917],[45.64315,-103.497269],[45.643311,-103.496941],[45.64362,-103.496292],[45.643929,-103.495644],[45.644089,-103.495293],[45.645012,-103.493347],[45.645199,-103.49295],[45.645741,-103.491814],[45.646042,-103.49115],[45.646271,-103.490662],[45.646351,-103.490494],[45.64658,-103.490021],[45.646839,-103.48951],[45.64719,-103.488899],[45.647499,-103.488403],[45.647789,-103.487968],[45.64809,-103.487549],[45.648251,-103.48735],[45.64856,-103.486977],[45.648891,-103.486633],[45.649059,-103.48645],[45.649231,-103.486282],[45.649578,-103.485947],[45.64975,-103.485786],[45.650101,-103.485497],[45.650452,-103.485252],[45.65078,-103.485023],[45.651112,-103.484818],[45.651489,-103.484596],[45.651749,-103.484467],[45.651901,-103.484413],[45.652199,-103.484283],[45.65266,-103.484093],[45.652821,-103.484016],[45.653141,-103.483917],[45.653481,-103.483849],[45.653992,-103.483749],[45.654518,-103.483688],[45.654869,-103.483673],[45.655609,-103.48365],[45.656361,-103.483658],[45.65712,-103.48365],[45.658081,-103.483658],[45.65847,-103.483658],[45.659019,-103.483643],[45.659241,-103.483627],[45.65979,-103.483643],[45.660389,-103.483643],[45.660931,-103.483643],[45.66148,-103.483643],[45.662769,-103.483627],[45.663319,-103.48362],[45.663582,-103.483612],[45.66468,-103.483612],[45.66523,-103.483612],[45.666321,-103.483597],[45.667969,-103.483597],[45.669609,-103.483597],[45.670158,-103.483589],[45.671261,-103.483589],[45.67181,-103.483589],[45.672359,-103.483582],[45.672901,-103.483582],[45.674549,-103.483566],[45.675098,-103.483566],[45.67593,-103.483566],[45.676479,-103.483582],[45.677021,-103.483582],[45.67757,-103.483589],[45.67812,-103.483597],[45.678669,-103.483597],[45.679199,-103.483612],[45.679359,-103.483597],[45.679901,-103.483597],[45.680149,-103.483597],[45.680691,-103.483597],[45.68124,-103.483597],[45.681862,-103.483597],[45.682411,-103.483597],[45.682789,-103.483597],[45.683849,-103.483597],[45.68391,-103.483597],[45.6842,-103.483589],[45.68475,-103.483597],[45.68549,-103.483597],[45.686581,-103.483597],[45.687099,-103.483597],[45.687439,-103.483597],[45.687611,-103.483597],[45.68792,-103.483597],[45.688229,-103.483582],[45.688782,-103.483582],[45.68903,-103.483582],[45.689579,-103.483582],[45.68985,-103.483582],[45.690289,-103.483582],[45.690731,-103.483582],[45.69128,-103.483582],[45.691719,-103.483582],[45.69223,-103.483589],[45.69278,-103.483582],[45.693329,-103.483566],[45.693878,-103.483566],[45.694328,-103.483543],[45.69463,-103.483498],[45.69508,-103.483398],[45.695381,-103.483307],[45.69585,-103.483147],[45.695999,-103.483093],[45.696461,-103.482872],[45.696869,-103.482643],[45.697281,-103.482361],[45.69743,-103.482262],[45.697842,-103.481934],[45.697979,-103.481796],[45.69825,-103.481537],[45.698509,-103.48127],[45.698551,-103.481216],[45.698639,-103.481117],[45.699059,-103.480621],[45.699459,-103.480164],[45.699959,-103.479538],[45.700531,-103.478882],[45.701069,-103.478218],[45.701908,-103.477226],[45.70256,-103.476433],[45.702991,-103.475937],[45.703411,-103.475441],[45.70425,-103.474426],[45.704681,-103.473923],[45.70594,-103.472412],[45.706421,-103.47184],[45.70681,-103.471397],[45.707958,-103.470016],[45.708229,-103.469704],[45.70932,-103.468369],[45.70974,-103.467873],[45.711529,-103.465752],[45.711948,-103.46524],[45.712181,-103.464951],[45.712849,-103.464157],[45.713268,-103.463661],[45.713539,-103.463348],[45.714581,-103.462112],[45.715,-103.461609],[45.715229,-103.461342],[45.71587,-103.460571],[45.71685,-103.459412],[45.71727,-103.458908],[45.717339,-103.458817],[45.717911,-103.458122],[45.718342,-103.457626],[45.719181,-103.456619],[45.719391,-103.456367],[45.719959,-103.455681],[45.72052,-103.455017],[45.721111,-103.4543],[45.721241,-103.454132],[45.721951,-103.4533],[45.72279,-103.452293],[45.722919,-103.452141],[45.723061,-103.451973],[45.723339,-103.451637],[45.72419,-103.45063],[45.724602,-103.450142],[45.72501,-103.449669],[45.725288,-103.449341],[45.725712,-103.448837],[45.725922,-103.448578],[45.7267,-103.447647],[45.727169,-103.447067],[45.72736,-103.446854],[45.729462,-103.444344],[45.730721,-103.442841],[45.73114,-103.442337],[45.731602,-103.44178],[45.732021,-103.441277],[45.732311,-103.440933],[45.732849,-103.4403],[45.733269,-103.439796],[45.733589,-103.439407],[45.73402,-103.438911],[45.734402,-103.438454],[45.734821,-103.437927],[45.735271,-103.437393],[45.735809,-103.43676],[45.736649,-103.435753],[45.73732,-103.434937],[45.737991,-103.434158],[45.738411,-103.433647],[45.738831,-103.433144],[45.739349,-103.432518],[45.7402,-103.431534],[45.740299,-103.431412],[45.741001,-103.430557],[45.742222,-103.4291],[45.742641,-103.428596],[45.742851,-103.428352],[45.743179,-103.427963],[45.744011,-103.426949],[45.744129,-103.426804],[45.74493,-103.425873],[45.745338,-103.425362],[45.745819,-103.424797],[45.746059,-103.424507],[45.74691,-103.4235],[45.7472,-103.423157],[45.74762,-103.422653],[45.748459,-103.421638],[45.748611,-103.421463],[45.748951,-103.421059],[45.74979,-103.420036],[45.750858,-103.418747],[45.751469,-103.418022],[45.7519,-103.417526],[45.752579,-103.416687],[45.753132,-103.416054],[45.753571,-103.415573],[45.753719,-103.415398],[45.754021,-103.4151],[45.754478,-103.414673],[45.75481,-103.414383],[45.755119,-103.414093],[45.75544,-103.413841],[45.755749,-103.413612],[45.75639,-103.413177],[45.756721,-103.412956],[45.757061,-103.412773],[45.757568,-103.412483],[45.757919,-103.412292],[45.758942,-103.411713],[45.759449,-103.411423],[45.760029,-103.411087],[45.760712,-103.410713],[45.761051,-103.410522],[45.76207,-103.40995],[45.762211,-103.409866],[45.763229,-103.409286],[45.763741,-103.408997],[45.764091,-103.408813],[45.764599,-103.408524],[45.765148,-103.408218],[45.766171,-103.407654],[45.76675,-103.407318],[45.76804,-103.406593],[45.768791,-103.406151],[45.76944,-103.405792],[45.769539,-103.405731],[45.769691,-103.405647],[45.769989,-103.405487],[45.770889,-103.404968],[45.771191,-103.404808],[45.77137,-103.404701],[45.772072,-103.404297],[45.77412,-103.40316],[45.774368,-103.403023],[45.775249,-103.402512],[45.775761,-103.402222],[45.776272,-103.401939],[45.778759,-103.400543],[45.778961,-103.400421],[45.779812,-103.399933],[45.780319,-103.399643],[45.78083,-103.399361],[45.781029,-103.399246],[45.78154,-103.398956],[45.782021,-103.398697],[45.782681,-103.398323],[45.78315,-103.398048],[45.783661,-103.397758],[45.784168,-103.397476],[45.785191,-103.396912],[45.785721,-103.396606],[45.786419,-103.39621],[45.78693,-103.39592],[45.787281,-103.395721],[45.78775,-103.395447],[45.788059,-103.395271],[45.78857,-103.394989],[45.789589,-103.394417],[45.7901,-103.394127],[45.791142,-103.393539],[45.791321,-103.39344],[45.791691,-103.393227],[45.792042,-103.393021],[45.792549,-103.392738],[45.792721,-103.392647],[45.793221,-103.392357],[45.794079,-103.391869],[45.794701,-103.391533],[45.795311,-103.39119],[45.795811,-103.3909],[45.796242,-103.390663],[45.797119,-103.390137],[45.797619,-103.389862],[45.7985,-103.389374],[45.79921,-103.388977],[45.799721,-103.38868],[45.800259,-103.388367],[45.80069,-103.388138],[45.801201,-103.387848],[45.802731,-103.386993],[45.803299,-103.38665],[45.804909,-103.385742],[45.80542,-103.385452],[45.806129,-103.385048],[45.806641,-103.384758],[45.807529,-103.384247],[45.808041,-103.383957],[45.808552,-103.383667],[45.809059,-103.383392],[45.809601,-103.383087],[45.809799,-103.382973],[45.810051,-103.382843],[45.810322,-103.382683],[45.810501,-103.382584],[45.810841,-103.382393],[45.81115,-103.382202],[45.81147,-103.382027],[45.81197,-103.381729],[45.812431,-103.381477],[45.81337,-103.380951],[45.8148,-103.380127],[45.81633,-103.379272],[45.81665,-103.379089],[45.817669,-103.378517],[45.817928,-103.378357],[45.818352,-103.378143],[45.81863,-103.377991],[45.819302,-103.377663],[45.819538,-103.377563],[45.82,-103.37738],[45.820339,-103.377274],[45.82056,-103.377213],[45.821041,-103.377052],[45.821301,-103.376984],[45.821442,-103.376953],[45.82185,-103.376862],[45.822269,-103.376793],[45.822811,-103.376717],[45.82325,-103.376694],[45.82354,-103.376678],[45.824089,-103.376694],[45.824581,-103.376663],[45.82513,-103.376678],[45.825699,-103.376663],[45.826199,-103.376671],[45.826698,-103.376663],[45.827129,-103.376663],[45.827251,-103.376663],[45.827801,-103.376663],[45.82835,-103.376671],[45.828918,-103.376671],[45.829121,-103.376663],[45.82967,-103.376671],[45.830219,-103.376678],[45.830971,-103.376678],[45.831089,-103.376678],[45.831631,-103.376694],[45.832729,-103.376678],[45.832851,-103.376678],[45.833389,-103.376694],[45.834061,-103.376694],[45.83437,-103.376701],[45.834911,-103.376694],[45.835461,-103.376694],[45.835732,-103.376678],[45.836578,-103.376694],[45.8367,-103.376694],[45.837528,-103.376694],[45.837761,-103.376694],[45.838058,-103.376694],[45.838451,-103.376663],[45.83857,-103.376663],[45.83868,-103.376671],[45.83886,-103.376671],[45.83934,-103.376663],[45.839981,-103.376694],[45.84066,-103.376678],[45.8414,-103.376694],[45.842499,-103.376694],[45.843048,-103.376694],[45.844059,-103.376694],[45.844601,-103.376694],[45.844799,-103.376694],[45.845348,-103.376694],[45.845631,-103.376701],[45.84584,-103.376701],[45.84618,-103.376694],[45.847149,-103.376694],[45.847691,-103.376701],[45.84824,-103.376709],[45.848789,-103.376709],[45.849178,-103.376717],[45.849731,-103.376717],[45.850552,-103.376717],[45.85107,-103.376732],[45.85162,-103.376732],[45.852169,-103.376732],[45.85228,-103.376732],[45.853371,-103.376747],[45.85442,-103.376762],[45.854969,-103.376762],[45.85516,-103.376762],[45.856022,-103.376762],[45.856571,-103.37677],[45.857101,-103.376793],[45.85783,-103.376778],[45.858379,-103.376793],[45.85854,-103.376793],[45.859631,-103.376801],[45.85997,-103.376808],[45.860519,-103.376801],[45.861069,-103.376793],[45.862171,-103.376778],[45.86272,-103.376778],[45.863319,-103.37677],[45.863869,-103.376801],[45.86438,-103.376831],[45.864929,-103.376839],[45.865479,-103.376846],[45.865959,-103.376846],[45.866032,-103.376846],[45.867081,-103.376839],[45.867882,-103.376846],[45.868431,-103.376846],[45.869411,-103.376862],[45.87048,-103.376846],[45.871029,-103.376862],[45.871578,-103.376862],[45.871929,-103.376869],[45.873428,-103.376862],[45.874371,-103.376869],[45.874908,-103.376862],[45.875351,-103.376869],[45.876019,-103.376846],[45.876572,-103.376862],[45.877762,-103.376877],[45.878311,-103.376877],[45.87886,-103.376877],[45.879269,-103.376877],[45.87981,-103.376877],[45.88036,-103.376877],[45.880699,-103.376877],[45.881248,-103.376877],[45.881802,-103.376892],[45.881889,-103.376892],[45.88298,-103.376892],[45.88353,-103.376877],[45.883671,-103.376877],[45.88422,-103.376892],[45.884899,-103.3769],[45.885422,-103.376892],[45.886841,-103.3769],[45.887371,-103.376892],[45.887791,-103.376892],[45.88792,-103.376892],[45.89048,-103.3769],[45.891151,-103.376907],[45.89225,-103.376907],[45.892281,-103.376907],[45.892891,-103.376907],[45.893681,-103.3769],[45.89423,-103.3769],[45.894501,-103.376907],[45.894661,-103.3769],[45.89576,-103.376907],[45.89629,-103.376907],[45.896839,-103.3769],[45.897411,-103.376907],[45.898499,-103.376923],[45.898602,-103.376923],[45.899101,-103.376923],[45.900749,-103.376923],[45.901291,-103.376923],[45.90184,-103.376923],[45.90239,-103.37693],[45.903309,-103.376938],[45.903858,-103.376938],[45.904469,-103.376953],[45.90461,-103.376953],[45.905708,-103.376953],[45.906269,-103.376938],[45.90667,-103.37693],[45.90686,-103.37693],[45.907619,-103.37693],[45.907761,-103.37693],[45.908081,-103.376923],[45.908421,-103.37693],[45.90897,-103.37693],[45.90971,-103.37693],[45.909931,-103.37693],[45.910511,-103.376923],[45.910629,-103.376923],[45.91172,-103.376938],[45.91227,-103.37693],[45.912819,-103.37693],[45.91338,-103.37693],[45.913929,-103.376953],[45.914009,-103.376953],[45.914558,-103.376953],[45.915112,-103.376953],[45.915661,-103.376953],[45.916931,-103.376953],[45.917301,-103.376953],[45.919498,-103.376961],[45.920601,-103.376961],[45.920891,-103.376968],[45.92091,-103.376961],[45.92144,-103.376961],[45.922428,-103.376961],[45.92281,-103.376961],[45.923359,-103.376984],[45.923931,-103.376984],[45.92469,-103.376961],[45.92524,-103.376968],[45.925789,-103.376968],[45.926331,-103.376984],[45.926559,-103.376984],[45.927101,-103.376984],[45.928089,-103.376961],[45.928551,-103.376968],[45.928638,-103.376968],[45.92981,-103.376961],[45.930401,-103.376961],[45.93095,-103.376968],[45.931492,-103.376968],[45.932041,-103.376968],[45.93232,-103.376968],[45.932709,-103.376984],[45.932899,-103.376999],[45.93309,-103.377007],[45.933479,-103.377068],[45.934021,-103.377167],[45.934399,-103.377281],[45.934738,-103.377388],[45.935459,-103.377678],[45.93578,-103.377823],[45.935909,-103.377899],[45.935959,-103.377922],[45.936119,-103.378014],[45.936619,-103.378311],[45.93676,-103.37841],[45.93689,-103.37851],[45.937031,-103.378616],[45.937431,-103.378906],[45.937519,-103.378967],[45.937698,-103.379143],[45.938011,-103.379433],[45.93824,-103.379639],[45.938461,-103.379868],[45.938568,-103.37999],[45.938801,-103.380249],[45.939159,-103.380676],[45.939522,-103.381157],[45.939758,-103.381493],[45.940109,-103.382027],[45.940338,-103.382393],[45.94067,-103.382973],[45.941711,-103.384804],[45.942059,-103.385399],[45.942329,-103.385872],[45.94268,-103.386467],[45.943008,-103.387047],[45.943352,-103.387657],[45.943668,-103.388206],[45.943741,-103.388313],[45.944431,-103.389542],[45.944759,-103.390068],[45.944981,-103.390549],[45.946369,-103.392967],[45.946869,-103.393867],[45.947239,-103.394508],[45.94788,-103.395653],[45.948471,-103.396683],[45.949032,-103.397636],[45.95026,-103.399811],[45.950642,-103.400452],[45.950691,-103.40052],[45.950951,-103.400902],[45.951401,-103.401558],[45.951771,-103.402061],[45.95224,-103.402641],[45.952709,-103.40316],[45.95332,-103.403809],[45.953789,-103.404282],[45.954189,-103.404648],[45.95488,-103.405197],[45.955238,-103.405472],[45.955608,-103.405708],[45.956211,-103.406097],[45.956612,-103.406326],[45.957272,-103.406693],[45.958069,-103.407028],[45.958481,-103.407181],[45.959202,-103.40741],[45.959702,-103.407547],[45.96204,-103.408241],[45.963531,-103.408669],[45.965069,-103.409126],[45.96682,-103.409653],[45.9701,-103.410599],[45.97084,-103.410744],[45.97121,-103.410812],[45.97197,-103.410873],[45.974159,-103.410912],[45.974701,-103.410919],[45.988628,-103.410919],[45.995079,-103.410889],[46,-103.410919],[46.003109,-103.410919],[46.006851,-103.410912],[46.007431,-103.410896],[46.010712,-103.410889],[46.011219,-103.410889],[46.011478,-103.410889],[46.014252,-103.410889],[46.017059,-103.410858],[46.01757,-103.410858],[46.020111,-103.410858],[46.020649,-103.410858],[46.02253,-103.410873],[46.024281,-103.410889],[46.025688,-103.410881],[46.032059,-103.410873],[46.03941,-103.410881],[46.040279,-103.410873],[46.041,-103.410881],[46.042381,-103.410873],[46.042801,-103.410881],[46.04435,-103.410896],[46.04512,-103.410881],[46.046021,-103.410889],[46.04657,-103.410889],[46.048012,-103.410858],[46.049419,-103.410873],[46.050179,-103.410896],[46.055981,-103.410912],[46.057251,-103.410896],[46.059952,-103.410919],[46.06105,-103.410912],[46.062408,-103.410919],[46.06324,-103.410919],[46.064049,-103.410942],[46.064449,-103.410927],[46.064892,-103.410942],[46.065319,-103.410942],[46.065632,-103.41095],[46.066448,-103.410942],[46.07095,-103.410942],[46.07188,-103.410942],[46.07238,-103.410919],[46.073002,-103.410919],[46.073818,-103.41095],[46.074242,-103.41095],[46.07444,-103.41095],[46.075359,-103.410942],[46.075531,-103.41095],[46.076172,-103.410957],[46.076599,-103.410942],[46.07719,-103.410957],[46.077801,-103.410957],[46.0784,-103.410957],[46.079041,-103.410957],[46.079552,-103.410973],[46.08152,-103.410957],[46.08205,-103.410973],[46.082668,-103.410957],[46.083481,-103.410973],[46.084942,-103.41095],[46.08548,-103.41095],[46.08609,-103.410957],[46.0872,-103.41095],[46.08823,-103.410957],[46.08955,-103.41095],[46.090012,-103.410957],[46.090179,-103.410973],[46.091621,-103.410957],[46.092831,-103.410957],[46.093281,-103.41098],[46.093689,-103.410973],[46.09417,-103.410988],[46.09494,-103.410973],[46.095249,-103.410973],[46.095669,-103.410957],[46.096439,-103.41098],[46.09724,-103.410957],[46.098942,-103.41098],[46.100071,-103.411003],[46.10218,-103.410973],[46.10405,-103.410988],[46.104481,-103.41098],[46.10461,-103.410973],[46.105991,-103.411003],[46.10717,-103.410973],[46.107609,-103.41098],[46.11034,-103.410973],[46.110981,-103.411003],[46.111801,-103.411003],[46.112621,-103.41098],[46.113178,-103.410988],[46.11615,-103.41098],[46.118549,-103.411003],[46.118912,-103.410988],[46.119171,-103.41098],[46.119431,-103.410988],[46.119869,-103.411003],[46.120548,-103.41098],[46.12183,-103.410988],[46.122269,-103.411003],[46.122688,-103.411003],[46.12355,-103.411003],[46.123959,-103.411003],[46.125149,-103.41098],[46.126141,-103.410973],[46.127361,-103.410942],[46.127781,-103.41095],[46.128479,-103.41095],[46.13282,-103.410973],[46.133381,-103.410957],[46.134861,-103.410942],[46.137032,-103.410973],[46.138222,-103.41098],[46.139568,-103.410957],[46.140621,-103.41098],[46.142731,-103.41098],[46.143799,-103.410973],[46.145069,-103.410988],[46.145851,-103.410988],[46.147881,-103.411003],[46.14957,-103.411003],[46.150249,-103.411003],[46.150711,-103.411003],[46.15313,-103.411003],[46.15461,-103.41098],[46.155708,-103.411003],[46.1586,-103.41098],[46.159531,-103.411003],[46.16116,-103.411003],[46.162369,-103.411003],[46.163952,-103.411003],[46.16465,-103.411011],[46.16534,-103.411034],[46.16634,-103.41098],[46.169201,-103.41098],[46.16925,-103.41098],[46.169529,-103.41098],[46.170219,-103.410957],[46.1712,-103.411003],[46.17141,-103.411003],[46.171661,-103.411003],[46.172741,-103.41098],[46.173901,-103.411003],[46.175339,-103.41098],[46.17556,-103.410973],[46.175892,-103.410957],[46.176121,-103.410919],[46.176239,-103.410889],[46.176579,-103.410782],[46.176819,-103.410698],[46.17691,-103.41066],[46.177479,-103.4104],[46.177521,-103.410378],[46.178059,-103.410118],[46.178631,-103.409843],[46.178478,-103.409119],[46.178329,-103.408501],[46.17804,-103.40728],[46.177879,-103.406616],[46.177528,-103.405197],[46.177391,-103.404663],[46.177361,-103.404442],[46.1772,-103.403778],[46.177059,-103.403183],[46.17691,-103.402313],[46.176769,-103.401466],[46.176731,-103.401176],[46.176731,-103.401123],[46.17672,-103.401001],[46.17672,-103.400864],[46.176708,-103.399406],[46.176708,-103.398689],[46.176708,-103.397957],[46.176708,-103.397057],[46.17672,-103.396973],[46.17672,-103.39653],[46.176861,-103.39653],[46.177391,-103.396523],[46.1782,-103.396507],[46.179211,-103.396507],[46.180199,-103.3965],[46.180439,-103.3965],[46.181221,-103.3965],[46.18195,-103.396507],[46.182209,-103.3965],[46.182831,-103.396477],[46.183208,-103.396492],[46.184471,-103.396538],[46.184589,-103.396538],[46.185001,-103.3965],[46.18523,-103.3965],[46.1861,-103.396477],[46.18642,-103.396469],[46.187279,-103.396477],[46.187469,-103.396507],[46.187511,-103.396523],[46.187809,-103.396469],[46.188351,-103.396332],[46.188999,-103.396019],[46.18927,-103.395813],[46.189461,-103.39566],[46.18988,-103.39521],[46.190041,-103.394997],[46.1903,-103.394653],[46.19083,-103.393677],[46.190842,-103.393639],[46.191059,-103.392906],[46.19125,-103.392036],[46.19128,-103.391724],[46.191311,-103.39138],[46.191311,-103.391243],[46.19133,-103.390732],[46.19133,-103.390198],[46.191341,-103.389473],[46.191341,-103.382698],[46.191349,-103.379768],[46.19136,-103.377571],[46.19136,-103.377274],[46.19136,-103.376671],[46.191391,-103.376083],[46.191448,-103.37558],[46.191528,-103.375137],[46.19157,-103.375008],[46.191639,-103.374687],[46.19165,-103.374634],[46.19173,-103.374237],[46.19191,-103.373642],[46.19202,-103.373337],[46.1922,-103.372871],[46.192509,-103.372307],[46.192711,-103.372009],[46.19289,-103.371727],[46.193359,-103.371147],[46.19342,-103.371094],[46.193821,-103.370667],[46.194382,-103.370232],[46.19492,-103.369926],[46.195339,-103.369759],[46.19561,-103.369667],[46.195679,-103.369652],[46.19622,-103.36956],[46.197201,-103.369507],[46.198669,-103.369537],[46.199509,-103.369522],[46.20116,-103.36953],[46.201759,-103.369537],[46.204521,-103.36953],[46.205841,-103.36953],[46.207668,-103.369537],[46.210442,-103.36953],[46.210979,-103.36953],[46.21452,-103.369522],[46.21851,-103.36953],[46.220322,-103.369537],[46.221729,-103.369537],[46.223129,-103.369537],[46.228939,-103.36953],[46.23106,-103.369431],[46.23407,-103.3694],[46.234779,-103.369392],[46.23872,-103.3694],[46.24197,-103.369362],[46.243011,-103.369347],[46.246769,-103.369377],[46.249271,-103.3694],[46.250038,-103.3694],[46.259998,-103.369392],[46.26371,-103.369331],[46.264511,-103.369308],[46.268021,-103.369186],[46.271629,-103.369133],[46.27338,-103.369133],[46.27412,-103.36908],[46.27433,-103.369034],[46.274651,-103.368942],[46.274921,-103.368874],[46.27544,-103.368637],[46.275909,-103.368401],[46.276711,-103.367897],[46.277481,-103.367317],[46.27874,-103.366119],[46.2798,-103.365028],[46.27985,-103.36499],[46.28096,-103.364143],[46.281071,-103.364082],[46.281422,-103.363876],[46.28249,-103.363426],[46.282589,-103.363388],[46.283089,-103.363274],[46.28344,-103.363213],[46.283691,-103.36319],[46.2841,-103.363152],[46.284481,-103.363136],[46.285118,-103.363129],[46.286671,-103.363136],[46.286968,-103.363136],[46.287331,-103.363136],[46.287529,-103.363136],[46.28933,-103.363129],[46.29018,-103.363136],[46.29071,-103.363129],[46.291431,-103.363136],[46.29253,-103.363136],[46.293419,-103.363129],[46.294399,-103.363136],[46.29607,-103.363152],[46.29882,-103.363098],[46.299419,-103.363113],[46.300259,-103.363113],[46.300758,-103.363121],[46.304779,-103.363121],[46.305828,-103.363121],[46.306938,-103.363113],[46.30756,-103.363083],[46.308361,-103.363098],[46.308849,-103.363091],[46.311131,-103.363083],[46.312511,-103.363098],[46.31514,-103.363083],[46.316051,-103.363091],[46.31979,-103.363113],[46.320999,-103.363129],[46.322681,-103.363121],[46.323311,-103.363129],[46.3256,-103.363152],[46.3274,-103.363129],[46.330101,-103.363136],[46.33049,-103.363152],[46.331959,-103.363113],[46.333191,-103.363136],[46.334702,-103.363113],[46.336399,-103.363129],[46.337341,-103.363129],[46.337811,-103.363136],[46.338348,-103.363152],[46.339069,-103.363136],[46.34026,-103.363129],[46.345058,-103.363136],[46.345249,-103.363136],[46.352291,-103.363136],[46.353611,-103.363129],[46.354988,-103.363152],[46.355042,-103.363152],[46.360931,-103.363136],[46.363739,-103.363136],[46.366772,-103.363136],[46.369492,-103.363136],[46.372871,-103.363113],[46.374561,-103.363152],[46.375011,-103.363136],[46.376282,-103.363182],[46.37764,-103.363167],[46.381409,-103.363159],[46.38652,-103.363167],[46.387871,-103.363167],[46.391609,-103.363167],[46.39563,-103.363182],[46.39959,-103.363182],[46.403511,-103.36319],[46.40583,-103.36319],[46.406281,-103.36319],[46.407379,-103.36319],[46.407768,-103.36319],[46.41013,-103.36319],[46.413181,-103.36319],[46.416592,-103.36319],[46.418499,-103.363213],[46.418621,-103.363213],[46.421951,-103.363197],[46.432598,-103.36322],[46.4352,-103.36322],[46.436611,-103.363274],[46.4375,-103.363403],[46.43782,-103.363411],[46.439018,-103.363602],[46.440392,-103.363808],[46.440689,-103.363838],[46.441059,-103.363869],[46.44194,-103.363922],[46.443211,-103.363876],[46.443878,-103.363838],[46.444462,-103.36377],[46.44453,-103.363762],[46.446251,-103.36348],[46.447319,-103.36335],[46.447609,-103.363327],[46.44849,-103.363243],[46.449329,-103.363228],[46.450699,-103.363251],[46.451439,-103.363297],[46.453041,-103.363457],[46.453491,-103.363564],[46.4543,-103.363724],[46.45491,-103.363831],[46.455441,-103.363907],[46.45602,-103.363983],[46.456268,-103.363983],[46.456532,-103.363983],[46.457039,-103.36396],[46.45813,-103.363937],[46.460209,-103.363823],[46.462261,-103.363762],[46.462318,-103.363762],[46.464142,-103.36367],[46.466541,-103.363548],[46.467949,-103.363487],[46.474739,-103.363167],[46.47525,-103.363152],[46.476219,-103.363113],[46.476929,-103.363037],[46.477371,-103.362953],[46.477772,-103.362801],[46.477859,-103.362762],[46.478722,-103.362297],[46.479141,-103.361977],[46.479519,-103.361656],[46.479988,-103.361183],[46.480301,-103.360802],[46.48077,-103.360153],[46.481159,-103.359467],[46.481621,-103.358437],[46.4818,-103.357941],[46.481918,-103.357529],[46.482109,-103.356812],[46.482288,-103.355957],[46.48238,-103.355217],[46.482399,-103.35495],[46.48243,-103.354568],[46.482441,-103.353889],[46.48243,-103.350189],[46.482441,-103.349037],[46.482422,-103.346039],[46.482441,-103.344627],[46.48241,-103.342743],[46.48241,-103.342346],[46.48243,-103.341057],[46.48243,-103.333946],[46.48243,-103.329079],[46.48243,-103.328239],[46.48243,-103.328163],[46.482441,-103.327019],[46.482441,-103.325752],[46.482441,-103.325218],[46.482441,-103.324364],[46.48243,-103.323639],[46.48243,-103.322906],[46.482441,-103.322197],[46.482441,-103.321388],[46.482449,-103.320618],[46.482449,-103.319847],[46.482441,-103.318413],[46.48243,-103.314957],[46.48243,-103.314034],[46.48243,-103.3125],[46.48243,-103.312027],[46.482441,-103.310928],[46.482441,-103.308968],[46.482498,-103.305153],[46.482552,-103.30188],[46.482571,-103.300629],[46.482571,-103.300423],[46.48259,-103.299004],[46.48259,-103.295288],[46.482571,-103.29129],[46.482491,-103.286819],[46.482449,-103.282043],[46.482441,-103.27993],[46.482441,-103.278931],[46.482449,-103.276543],[46.482449,-103.271927],[46.48246,-103.269623],[46.48246,-103.2677],[46.482471,-103.259003],[46.482479,-103.253937],[46.482471,-103.250748],[46.482491,-103.249992],[46.482471,-103.246147],[46.482491,-103.242554],[46.482491,-103.239571],[46.482491,-103.237999],[46.482479,-103.236351],[46.482491,-103.229843],[46.48251,-103.21701],[46.482529,-103.203239],[46.482578,-103.202553],[46.482639,-103.202003],[46.482811,-103.201187],[46.482841,-103.20108],[46.48304,-103.200401],[46.483238,-103.199852],[46.48354,-103.199188],[46.483829,-103.198669],[46.484119,-103.198227],[46.484482,-103.197777],[46.48481,-103.197433],[46.48531,-103.197006],[46.485649,-103.196762],[46.486118,-103.19648],[46.486542,-103.19632],[46.486969,-103.19619],[46.48745,-103.196129],[46.487968,-103.196091],[46.489361,-103.196098],[46.493568,-103.196053],[46.494091,-103.196083],[46.495579,-103.19606],[46.497028,-103.196083],[46.49847,-103.19606],[46.5,-103.19606],[46.501659,-103.196083],[46.502129,-103.196083],[46.511471,-103.196083],[46.520569,-103.196068],[46.522491,-103.196037],[46.52351,-103.196053],[46.52486,-103.19606],[46.525959,-103.196037],[46.535488,-103.196022],[46.53981,-103.195961],[46.540112,-103.195961],[46.540459,-103.195961],[46.55497,-103.195969],[46.555531,-103.195969],[46.556,-103.195953],[46.556511,-103.195976],[46.557419,-103.196114],[46.558899,-103.196358],[46.559311,-103.196419],[46.560211,-103.196548],[46.56086,-103.196602],[46.561562,-103.196602],[46.562519,-103.196503],[46.563709,-103.196289],[46.565269,-103.196068],[46.565498,-103.196037],[46.565731,-103.196007],[46.566219,-103.195953],[46.56879,-103.195923],[46.57048,-103.195923],[46.57394,-103.195923],[46.574909,-103.195923],[46.57761,-103.1959],[46.58392,-103.195908],[46.5858,-103.195908],[46.58849,-103.195908],[46.592892,-103.195862],[46.597549,-103.195877],[46.598412,-103.195877],[46.602859,-103.195847],[46.609409,-103.195839],[46.612499,-103.195831],[46.612919,-103.195824],[46.61507,-103.195801],[46.61977,-103.195824],[46.620602,-103.195824],[46.621689,-103.195824],[46.62299,-103.195824],[46.6241,-103.195824],[46.625019,-103.195824],[46.626369,-103.195831],[46.628551,-103.195824],[46.629829,-103.195808],[46.630711,-103.195801],[46.63287,-103.195824],[46.634819,-103.195801],[46.635891,-103.195732],[46.636749,-103.19561],[46.637669,-103.195374],[46.639191,-103.194839],[46.640079,-103.194481],[46.64011,-103.194473],[46.64212,-103.19371],[46.64431,-103.192841],[46.647789,-103.19146],[46.648041,-103.191368],[46.649429,-103.190826],[46.65044,-103.190437],[46.651501,-103.190109],[46.652481,-103.189903],[46.65295,-103.189827],[46.653721,-103.189789],[46.654919,-103.189774],[46.65881,-103.189781],[46.659698,-103.189781],[46.660412,-103.189774],[46.664219,-103.189789],[46.665279,-103.189796],[46.667061,-103.189812],[46.668388,-103.189812],[46.66959,-103.189819],[46.67078,-103.189812],[46.67189,-103.189819],[46.673351,-103.189812],[46.67588,-103.189796],[46.681782,-103.189857],[46.68716,-103.189857],[46.687439,-103.189873],[46.687511,-103.189873],[46.69519,-103.189941],[46.697189,-103.189934],[46.70229,-103.18998],[46.707642,-103.189987],[46.709469,-103.189957],[46.711109,-103.189873],[46.71228,-103.189758],[46.71236,-103.189751],[46.713509,-103.189682],[46.714748,-103.189568],[46.715328,-103.189522],[46.716381,-103.189491],[46.71677,-103.189484],[46.717529,-103.189484],[46.717999,-103.189484],[46.718781,-103.189468],[46.725239,-103.1894],[46.72678,-103.1894],[46.727299,-103.189377],[46.72876,-103.189377],[46.730282,-103.189346],[46.731251,-103.189346],[46.734379,-103.189339],[46.735619,-103.189323],[46.73597,-103.189323],[46.736889,-103.189323],[46.74268,-103.189339],[46.744381,-103.189369],[46.745739,-103.189377],[46.747768,-103.1894],[46.7509,-103.189377],[46.75259,-103.189392],[46.75317,-103.189392],[46.754742,-103.189407],[46.758659,-103.189392],[46.759998,-103.189369],[46.760208,-103.189369],[46.76263,-103.189377],[46.768372,-103.189392],[46.7701,-103.189423],[46.771469,-103.189453],[46.772099,-103.189453],[46.772629,-103.189468],[46.77425,-103.189453],[46.774689,-103.189438],[46.77784,-103.189453],[46.778568,-103.189453],[46.77935,-103.189453],[46.78196,-103.189468],[46.782661,-103.189468],[46.783779,-103.189468],[46.785858,-103.189552],[46.785961,-103.18956],[46.786991,-103.189629],[46.787201,-103.189636],[46.789162,-103.189774],[46.79113,-103.189888],[46.791931,-103.189957],[46.792641,-103.190002],[46.794441,-103.190048],[46.796452,-103.190041],[46.796581,-103.190041],[46.797359,-103.190071],[46.798401,-103.190102],[46.799469,-103.190109],[46.80373,-103.19017],[46.804169,-103.19017],[46.804749,-103.19017],[46.805908,-103.190178],[46.806938,-103.190193],[46.81105,-103.190178],[46.812969,-103.190163],[46.814671,-103.190147],[46.818249,-103.190147],[46.821121,-103.190147],[46.822479,-103.190117],[46.82365,-103.190132],[46.824829,-103.190117],[46.82515,-103.190117],[46.825459,-103.190117],[46.82645,-103.190132],[46.827839,-103.190132],[46.829411,-103.190117],[46.830601,-103.190132],[46.83271,-103.190117],[46.833141,-103.190117],[46.83408,-103.190117],[46.835251,-103.190109],[46.83646,-103.190071],[46.83651,-103.190071],[46.838711,-103.189919],[46.839588,-103.18985],[46.84008,-103.189819],[46.84029,-103.189796],[46.84042,-103.189796],[46.840611,-103.189781],[46.84066,-103.189774],[46.84156,-103.189713],[46.84267,-103.189621],[46.843071,-103.18959],[46.84425,-103.189507],[46.844471,-103.189491],[46.844669,-103.189484],[46.845779,-103.189407],[46.847221,-103.189369],[46.84811,-103.189369],[46.848919,-103.189346],[46.84972,-103.189362],[46.850262,-103.189369],[46.850571,-103.189377],[46.851669,-103.189369],[46.852852,-103.189369],[46.857029,-103.189369],[46.861721,-103.189369],[46.86385,-103.189362],[46.86488,-103.189331],[46.87051,-103.189308],[46.871101,-103.189301],[46.872589,-103.189331],[46.87384,-103.189331],[46.874519,-103.189323],[46.87455,-103.189323],[46.875401,-103.189301],[46.87566,-103.189308],[46.876221,-103.189339],[46.876801,-103.189346],[46.877331,-103.189377],[46.877831,-103.189423],[46.87809,-103.189453],[46.87851,-103.189491],[46.87925,-103.189583],[46.879799,-103.189636],[46.880989,-103.189697],[46.881161,-103.189713],[46.88203,-103.189751],[46.882469,-103.189751],[46.88353,-103.189667],[46.883709,-103.189667],[46.884449,-103.189713],[46.88475,-103.18972],[46.885559,-103.189713],[46.885941,-103.18972],[46.88599,-103.18972],[46.88649,-103.18972],[46.886879,-103.18972],[46.887199,-103.18972],[46.888168,-103.189728],[46.888432,-103.189728],[46.88945,-103.189697],[46.89064,-103.189682],[46.891041,-103.189667],[46.891541,-103.189667],[46.89241,-103.189682],[46.89365,-103.189659],[46.895088,-103.189659],[46.89539,-103.189659],[46.895599,-103.189659],[46.895969,-103.189659],[46.896461,-103.189667],[46.897129,-103.189697],[46.89809,-103.189651],[46.898041,-103.189774],[46.897949,-103.189987],[46.89782,-103.190392],[46.897671,-103.190804],[46.8974,-103.191643],[46.897282,-103.192047],[46.897221,-103.192307],[46.897091,-103.193047],[46.897049,-103.193451],[46.897011,-103.194092],[46.896999,-103.194206],[46.89695,-103.194412],[46.896961,-103.195557],[46.896961,-103.196167],[46.896969,-103.197113],[46.896992,-103.197701],[46.897072,-103.198776],[46.897079,-103.198959],[46.897099,-103.199127],[46.897121,-103.199364],[46.897121,-103.199387],[46.897221,-103.200157],[46.89724,-103.200363],[46.897251,-103.200439],[46.89732,-103.200912],[46.897369,-103.201263],[46.897572,-103.202332],[46.89772,-103.203293],[46.897831,-103.20388],[46.897911,-103.204292],[46.898102,-103.20533],[46.898281,-103.206398],[46.898479,-103.207573],[46.898521,-103.207901],[46.898628,-103.208717],[46.898701,-103.209312],[46.89875,-103.209969],[46.898788,-103.210716],[46.8988,-103.210999],[46.898811,-103.211388],[46.898819,-103.211823],[46.89883,-103.212402],[46.898811,-103.213676],[46.898781,-103.214523],[46.898762,-103.214813],[46.898731,-103.215302],[46.898659,-103.216103],[46.898602,-103.217003],[46.898521,-103.217903],[46.898491,-103.218369],[46.89846,-103.218712],[46.898418,-103.219177],[46.89835,-103.220123],[46.898319,-103.220444],[46.898251,-103.22126],[46.898201,-103.221863],[46.89814,-103.222656],[46.898121,-103.222977],[46.89806,-103.22374],[46.898041,-103.223953],[46.897991,-103.224541],[46.897968,-103.224876],[46.8979,-103.225822],[46.897861,-103.226341],[46.897831,-103.226723],[46.897781,-103.227348],[46.897758,-103.227707],[46.89756,-103.230461],[46.897511,-103.23143],[46.897511,-103.231697],[46.897491,-103.23233],[46.897461,-103.234993],[46.897442,-103.246696],[46.897419,-103.248772],[46.897411,-103.250023],[46.8974,-103.254631],[46.897381,-103.271332],[46.897369,-103.272324],[46.897331,-103.274048],[46.897308,-103.274727],[46.897301,-103.275047],[46.89727,-103.275497],[46.89727,-103.275772],[46.89706,-103.279732],[46.896679,-103.287277],[46.896511,-103.290627],[46.896351,-103.294403],[46.896301,-103.296631],[46.896252,-103.300797],[46.896229,-103.30249],[46.89624,-103.304398],[46.896229,-103.308548],[46.896221,-103.309509],[46.896229,-103.310753],[46.896229,-103.311043],[46.896221,-103.311897],[46.896198,-103.312492],[46.896198,-103.312523],[46.896191,-103.312729],[46.89613,-103.314117],[46.89608,-103.314827],[46.89603,-103.315697],[46.89603,-103.315773],[46.89595,-103.316727],[46.89566,-103.319443],[46.89518,-103.322617],[46.894691,-103.325089],[46.894482,-103.325951],[46.89386,-103.328323],[46.891079,-103.337898],[46.890591,-103.339661],[46.89045,-103.340187],[46.890202,-103.341423],[46.889809,-103.343674],[46.889679,-103.344849],[46.889629,-103.345879],[46.889591,-103.34687],[46.889568,-103.347908],[46.889568,-103.348923],[46.889542,-103.350418],[46.88953,-103.351486],[46.889511,-103.352898],[46.8894,-103.354332],[46.88921,-103.355797],[46.88905,-103.356842],[46.888351,-103.360451],[46.887951,-103.362694],[46.88792,-103.363121],[46.887859,-103.363777],[46.88792,-103.365837],[46.887989,-103.366707],[46.88813,-103.367569],[46.888371,-103.368553],[46.888561,-103.369186],[46.888802,-103.369888],[46.889061,-103.370522],[46.889339,-103.371162],[46.889759,-103.372093],[46.89019,-103.373009],[46.89035,-103.37336],[46.8909,-103.374611],[46.891071,-103.375031],[46.89122,-103.375488],[46.891479,-103.376167],[46.89164,-103.376732],[46.891819,-103.377403],[46.89196,-103.378014],[46.8922,-103.379227],[46.89222,-103.381218],[46.89222,-103.381287],[46.892181,-103.382423],[46.892109,-103.383278],[46.89164,-103.387047],[46.891529,-103.387787],[46.891472,-103.388191],[46.891338,-103.389229],[46.89127,-103.390007],[46.890739,-103.394096],[46.890621,-103.395149],[46.89053,-103.39608],[46.890511,-103.397034],[46.890579,-103.398247],[46.890659,-103.398903],[46.890789,-103.399559],[46.89101,-103.400528],[46.891258,-103.401291],[46.891449,-103.401817],[46.891621,-103.402222],[46.89183,-103.402779],[46.89233,-103.403717],[46.892601,-103.404182],[46.892811,-103.404457],[46.893181,-103.405006],[46.893589,-103.405441],[46.893929,-103.405777],[46.894249,-103.406052],[46.894878,-103.406563],[46.895302,-103.40686],[46.896,-103.407387],[46.89677,-103.407951],[46.897652,-103.40876],[46.8983,-103.409416],[46.898739,-103.410004],[46.899078,-103.410561],[46.899521,-103.411301],[46.89991,-103.412071],[46.900181,-103.412712],[46.90049,-103.413513],[46.900742,-103.414223],[46.900928,-103.41494],[46.901138,-103.415833],[46.901169,-103.415932],[46.901291,-103.416634],[46.901421,-103.417427],[46.901501,-103.418159],[46.901539,-103.418831],[46.901611,-103.419777],[46.901642,-103.420723],[46.901691,-103.421333],[46.901852,-103.424332],[46.90192,-103.426224],[46.90197,-103.426949],[46.902012,-103.427696],[46.902081,-103.428391],[46.902161,-103.430038],[46.90221,-103.431038],[46.90234,-103.432243],[46.902451,-103.433006],[46.902611,-103.433891],[46.90284,-103.434929],[46.903061,-103.435753],[46.903278,-103.43644],[46.9034,-103.436783],[46.903782,-103.437508],[46.904018,-103.43811],[46.904339,-103.43882],[46.904789,-103.439758],[46.905079,-103.440353],[46.905258,-103.44075],[46.905991,-103.442177],[46.9067,-103.443626],[46.90715,-103.444672],[46.907829,-103.446381],[46.908211,-103.447594],[46.908451,-103.448479],[46.908619,-103.449043],[46.908901,-103.450211],[46.9091,-103.451317],[46.909241,-103.452133],[46.90947,-103.454163],[46.909519,-103.45533],[46.909538,-103.456993],[46.909561,-103.457703],[46.90955,-103.45858],[46.909561,-103.459663],[46.909561,-103.460602],[46.909611,-103.4618],[46.90971,-103.463051],[46.91008,-103.465477],[46.910389,-103.467621],[46.910561,-103.468933],[46.910641,-103.469658],[46.910721,-103.47052],[46.910782,-103.471313],[46.91087,-103.472801],[46.910889,-103.47374],[46.910969,-103.474907],[46.911041,-103.475594],[46.911152,-103.47641],[46.91135,-103.477417],[46.91156,-103.47818],[46.911751,-103.478767],[46.912121,-103.479607],[46.912491,-103.480438],[46.912998,-103.481537],[46.913528,-103.482712],[46.914131,-103.48407],[46.91452,-103.485046],[46.91494,-103.486267],[46.915291,-103.487244],[46.915569,-103.487984],[46.915779,-103.488426],[46.915821,-103.488533],[46.916,-103.488853],[46.916618,-103.489922],[46.916821,-103.490341],[46.917019,-103.490913],[46.917049,-103.491096],[46.917049,-103.491127],[46.917068,-103.491508],[46.917042,-103.491814],[46.916962,-103.492172],[46.91684,-103.492477],[46.916439,-103.493683],[46.916271,-103.494179],[46.91618,-103.494629],[46.916088,-103.49511],[46.91605,-103.495613],[46.916039,-103.496231],[46.916,-103.496964],[46.915909,-103.497513],[46.915821,-103.497887],[46.915722,-103.498268],[46.915581,-103.498657],[46.915379,-103.499153],[46.915161,-103.499603],[46.915009,-103.5],[46.91407,-103.502007],[46.912861,-103.5047],[46.912701,-103.505043],[46.91256,-103.50531],[46.912498,-103.505447],[46.912189,-103.506142],[46.911652,-103.507309],[46.911331,-103.508133],[46.911072,-103.508827],[46.910912,-103.509308],[46.910851,-103.509483],[46.910622,-103.510262],[46.910439,-103.511063],[46.910309,-103.511749],[46.910179,-103.512657],[46.910172,-103.512733],[46.91013,-103.513268],[46.910069,-103.513748],[46.910061,-103.514053],[46.910061,-103.514122],[46.910042,-103.514427],[46.91003,-103.515121],[46.910019,-103.515404],[46.910019,-103.515579],[46.910019,-103.516869],[46.910049,-103.517517],[46.910099,-103.517883],[46.91021,-103.518379],[46.910412,-103.51902],[46.910599,-103.519463],[46.910851,-103.519974],[46.910931,-103.520119],[46.911369,-103.52095],[46.91161,-103.521378],[46.911678,-103.5215],[46.912399,-103.523041],[46.91309,-103.524513],[46.913589,-103.525574],[46.913799,-103.526016],[46.914398,-103.527328],[46.91465,-103.527878],[46.914768,-103.527771],[46.91494,-103.527657],[46.91497,-103.527641],[46.914989,-103.527618],[46.915169,-103.527428],[46.915421,-103.527184],[46.91552,-103.527077],[46.915619,-103.526947],[46.915821,-103.526642],[46.915932,-103.526428],[46.91605,-103.526123],[46.916149,-103.525841],[46.91621,-103.525627],[46.916401,-103.524963],[46.91663,-103.524353],[46.91666,-103.524277],[46.916729,-103.524139],[46.91687,-103.523979],[46.91703,-103.523842],[46.917191,-103.523743],[46.91729,-103.523712],[46.917389,-103.523689],[46.917549,-103.523727],[46.91774,-103.523773],[46.917919,-103.52388],[46.918091,-103.524063],[46.91824,-103.524307],[46.91832,-103.52446],[46.918411,-103.52459],[46.918598,-103.524948],[46.918789,-103.525261],[46.91922,-103.525818],[46.91927,-103.525848],[46.919621,-103.526093],[46.919849,-103.526169],[46.920158,-103.526169],[46.920712,-103.526108],[46.921242,-103.526062],[46.921589,-103.526016],[46.922138,-103.526031],[46.922379,-103.526093],[46.922562,-103.526192],[46.92276,-103.526337],[46.92292,-103.526489],[46.923069,-103.526627],[46.923199,-103.526779],[46.92355,-103.5271],[46.92374,-103.527237],[46.923931,-103.527367],[46.924141,-103.527443],[46.924271,-103.527481],[46.924549,-103.527527],[46.924671,-103.52755],[46.92487,-103.527603],[46.92511,-103.527657],[46.925339,-103.527733],[46.925579,-103.527847],[46.9258,-103.528023],[46.926239,-103.528427],[46.926708,-103.528961],[46.92696,-103.529221],[46.927158,-103.529404],[46.927361,-103.529572],[46.92775,-103.529663],[46.927929,-103.529633],[46.928169,-103.529503],[46.928379,-103.529373],[46.9286,-103.528969],[46.928699,-103.528687],[46.928768,-103.528458],[46.92878,-103.528313],[46.928768,-103.528099],[46.92868,-103.52771],[46.928619,-103.527519],[46.928509,-103.527313],[46.928398,-103.52713],[46.928181,-103.52684],[46.92757,-103.526154],[46.927311,-103.52578],[46.927151,-103.525513],[46.927029,-103.525269],[46.926922,-103.524979],[46.926819,-103.524742],[46.92675,-103.524544],[46.92667,-103.524277],[46.926609,-103.524017],[46.926559,-103.52375],[46.926498,-103.523277],[46.926479,-103.522926],[46.926411,-103.522163],[46.92638,-103.521828],[46.9263,-103.520851],[46.92627,-103.520607],[46.926231,-103.520348],[46.926121,-103.519997],[46.926029,-103.51976],[46.925919,-103.519539],[46.9258,-103.519348],[46.925621,-103.519112],[46.925381,-103.518806],[46.925091,-103.518417],[46.924511,-103.517693],[46.924259,-103.517357],[46.92382,-103.516792],[46.923061,-103.515808],[46.92289,-103.515488],[46.922749,-103.515167],[46.922668,-103.514977],[46.922611,-103.514702],[46.92255,-103.514381],[46.92252,-103.514122],[46.92252,-103.513718],[46.922539,-103.513451],[46.9226,-103.513023],[46.922771,-103.512497],[46.92281,-103.51236],[46.922939,-103.51207],[46.922958,-103.512032],[46.923019,-103.511932],[46.923271,-103.511612],[46.923592,-103.511276],[46.923809,-103.511139],[46.925041,-103.510391],[46.925259,-103.510277],[46.925571,-103.510117],[46.925751,-103.510063],[46.925911,-103.51004],[46.92614,-103.510063],[46.926399,-103.510094],[46.926739,-103.510162],[46.927071,-103.510193],[46.927299,-103.510147],[46.927479,-103.51004],[46.927662,-103.509933],[46.927811,-103.509773],[46.927929,-103.509613],[46.92807,-103.50943],[46.928169,-103.509193],[46.928299,-103.508682],[46.928349,-103.508438],[46.928349,-103.508171],[46.928299,-103.507042],[46.928299,-103.506653],[46.928329,-103.506477],[46.928459,-103.506157],[46.928551,-103.506027],[46.928631,-103.505943],[46.928741,-103.505898],[46.92886,-103.505852],[46.928989,-103.505836],[46.92915,-103.505898],[46.929241,-103.505959],[46.929359,-103.506119],[46.929482,-103.50631],[46.929562,-103.506599],[46.929581,-103.506844],[46.9296,-103.507088],[46.929642,-103.507317],[46.929691,-103.50753],[46.929859,-103.507782],[46.93005,-103.507973],[46.930229,-103.508049],[46.930328,-103.508057],[46.930519,-103.508049],[46.930698,-103.507973],[46.930889,-103.507858],[46.931171,-103.507736],[46.931351,-103.507713],[46.93153,-103.507713],[46.931751,-103.507767],[46.9319,-103.507851],[46.932079,-103.508018],[46.932281,-103.508453],[46.932331,-103.508728],[46.932362,-103.509003],[46.93235,-103.509277],[46.932301,-103.509552],[46.932011,-103.510529],[46.93185,-103.511047],[46.93166,-103.511757],[46.931511,-103.512253],[46.931381,-103.512749],[46.931229,-103.51326],[46.931171,-103.513588],[46.931171,-103.514397],[46.931221,-103.514961],[46.931309,-103.515343],[46.931431,-103.515617],[46.931679,-103.51609],[46.9328,-103.517647],[46.933319,-103.518333],[46.933571,-103.518677],[46.93375,-103.518997],[46.933861,-103.519333],[46.93391,-103.51963],[46.933929,-103.519928],[46.933891,-103.520248],[46.933819,-103.520569],[46.933731,-103.520866],[46.933681,-103.521217],[46.93367,-103.521553],[46.933731,-103.521942],[46.933861,-103.522377],[46.933979,-103.522659],[46.934471,-103.523956],[46.93457,-103.524384],[46.93465,-103.52475],[46.934719,-103.525208],[46.934811,-103.525948],[46.93486,-103.526466],[46.934891,-103.52684],[46.93494,-103.527252],[46.93502,-103.528069],[46.935101,-103.528839],[46.935162,-103.529381],[46.93523,-103.529907],[46.935341,-103.53022],[46.93536,-103.530258],[46.935532,-103.530609],[46.935699,-103.530907],[46.935848,-103.53112],[46.936001,-103.531303],[46.936069,-103.531387],[46.936089,-103.53141],[46.93631,-103.531563],[46.936661,-103.531754],[46.937271,-103.531967],[46.9375,-103.532043],[46.93819,-103.532288],[46.938419,-103.532318],[46.93861,-103.53228],[46.938801,-103.532127],[46.938881,-103.532013],[46.93898,-103.531807],[46.939041,-103.531609],[46.93906,-103.531441],[46.939049,-103.531197],[46.93898,-103.530983],[46.938839,-103.530708],[46.938641,-103.530434],[46.93832,-103.529991],[46.938148,-103.529671],[46.938099,-103.529442],[46.938068,-103.529137],[46.93808,-103.528923],[46.938141,-103.528633],[46.938278,-103.528343],[46.938309,-103.528297],[46.938469,-103.528084],[46.938641,-103.527946],[46.938808,-103.527817],[46.93903,-103.52771],[46.93927,-103.527634],[46.939548,-103.527618],[46.939781,-103.527641],[46.940022,-103.527687],[46.940441,-103.527946],[46.940639,-103.52813],[46.940819,-103.528328],[46.940948,-103.528526],[46.94109,-103.528732],[46.941429,-103.529442],[46.941891,-103.530472],[46.942501,-103.531837],[46.942699,-103.532257],[46.942928,-103.532707],[46.943111,-103.532959],[46.943298,-103.53315],[46.943501,-103.533241],[46.94368,-103.533241],[46.944,-103.53318],[46.944172,-103.533081],[46.944359,-103.532913],[46.944672,-103.532516],[46.944839,-103.532318],[46.945202,-103.531914],[46.945438,-103.531593],[46.945648,-103.531281],[46.945839,-103.531013],[46.946289,-103.530441],[46.946918,-103.529602],[46.947369,-103.529083],[46.947689,-103.528732],[46.948219,-103.528252],[46.948441,-103.528084],[46.94907,-103.52951],[46.94949,-103.53035],[46.949959,-103.531372],[46.949848,-103.531616],[46.949848,-103.531914],[46.94997,-103.532333],[46.95023,-103.533211],[46.95039,-103.533257],[46.95079,-103.53315],[46.950989,-103.532967],[46.95118,-103.53273],[46.95129,-103.532433],[46.951389,-103.532021],[46.951389,-103.531693],[46.9515,-103.531464],[46.95166,-103.531273],[46.951859,-103.531143],[46.952061,-103.531059],[46.95224,-103.530991],[46.95245,-103.530724],[46.952591,-103.530434],[46.952591,-103.530434],[46.952599,-103.530243],[46.95256,-103.529922],[46.952511,-103.529709],[46.952469,-103.529587],[46.952469,-103.529587],[46.952419,-103.529549],[46.952339,-103.529442],[46.952229,-103.529373],[46.95211,-103.529327],[46.952019,-103.529327],[46.951721,-103.529472],[46.9515,-103.529892],[46.951321,-103.530144],[46.951199,-103.530197],[46.951199,-103.530197],[46.95108,-103.530258],[46.950809,-103.530502],[46.950439,-103.530952],[46.950218,-103.531151],[46.95005,-103.531281],[46.949959,-103.531372],[46.94949,-103.53035],[46.94907,-103.52951],[46.948441,-103.528084],[46.948219,-103.528252],[46.947689,-103.528732],[46.947369,-103.529083],[46.946918,-103.529602],[46.946289,-103.530441],[46.945839,-103.531013],[46.945648,-103.531281],[46.945438,-103.531593],[46.945202,-103.531914],[46.944839,-103.532318],[46.944672,-103.532516],[46.944359,-103.532913],[46.944172,-103.533081],[46.944,-103.53318],[46.94368,-103.533241],[46.943501,-103.533241],[46.943298,-103.53315],[46.943111,-103.532959],[46.942928,-103.532707],[46.942699,-103.532257],[46.942501,-103.531837],[46.941891,-103.530472],[46.941429,-103.529442],[46.94109,-103.528732],[46.940948,-103.528526],[46.940819,-103.528328],[46.940639,-103.52813],[46.940441,-103.527946],[46.940022,-103.527687],[46.939781,-103.527641],[46.939548,-103.527618],[46.93927,-103.527634],[46.93903,-103.52771],[46.938808,-103.527817],[46.938641,-103.527946],[46.938469,-103.528084],[46.938309,-103.528297],[46.938278,-103.528343],[46.938141,-103.528633],[46.93808,-103.528923],[46.938068,-103.529137],[46.938099,-103.529442],[46.938148,-103.529671],[46.93832,-103.529991],[46.938641,-103.530434],[46.938839,-103.530708],[46.93898,-103.530983],[46.939049,-103.531197],[46.93906,-103.531441],[46.939041,-103.531609],[46.93898,-103.531807],[46.938881,-103.532013],[46.938801,-103.532127],[46.93861,-103.53228],[46.938419,-103.532318],[46.93819,-103.532288],[46.9375,-103.532043],[46.937271,-103.531967],[46.936661,-103.531754],[46.93631,-103.531563],[46.936089,-103.53141],[46.936069,-103.531387],[46.936001,-103.531303],[46.935848,-103.53112],[46.935699,-103.530907],[46.935532,-103.530609],[46.93536,-103.530258],[46.935341,-103.53022],[46.93523,-103.529907],[46.935162,-103.529381],[46.935101,-103.528839],[46.93502,-103.528069],[46.93494,-103.527252],[46.934891,-103.52684],[46.93486,-103.526466],[46.934811,-103.525948],[46.934719,-103.525208],[46.93465,-103.52475],[46.93457,-103.524384],[46.934471,-103.523956],[46.933979,-103.522659],[46.933861,-103.522377],[46.933731,-103.521942],[46.93367,-103.521553],[46.933681,-103.521217],[46.933731,-103.520866],[46.933819,-103.520569],[46.933891,-103.520248],[46.933929,-103.519928],[46.93391,-103.51963],[46.933861,-103.519333],[46.93375,-103.518997],[46.933571,-103.518677],[46.933319,-103.518333],[46.9328,-103.517647],[46.931679,-103.51609],[46.931431,-103.515617],[46.931309,-103.515343],[46.931221,-103.514961],[46.931171,-103.514397],[46.931171,-103.513588],[46.931229,-103.51326],[46.931381,-103.512749],[46.931511,-103.512253],[46.93166,-103.511757],[46.93185,-103.511047],[46.932011,-103.510529],[46.932301,-103.509552],[46.93235,-103.509277],[46.932362,-103.509003],[46.932331,-103.508728],[46.932281,-103.508453],[46.932079,-103.508018],[46.9319,-103.507851],[46.931751,-103.507767],[46.93153,-103.507713],[46.931351,-103.507713],[46.931171,-103.507736],[46.930889,-103.507858],[46.930698,-103.507973],[46.930519,-103.508049],[46.930328,-103.508057],[46.930229,-103.508049],[46.93005,-103.507973],[46.929859,-103.507782],[46.929691,-103.50753],[46.929642,-103.507317],[46.9296,-103.507088],[46.929581,-103.506844],[46.929562,-103.506599],[46.929482,-103.50631],[46.929359,-103.506119],[46.929241,-103.505959],[46.92915,-103.505898],[46.928989,-103.505836],[46.92886,-103.505852],[46.928741,-103.505898],[46.928631,-103.505943],[46.928551,-103.506027],[46.928459,-103.506157],[46.928329,-103.506477],[46.928299,-103.506653],[46.928299,-103.507042],[46.928349,-103.508171],[46.928349,-103.508438],[46.928299,-103.508682],[46.928169,-103.509193],[46.92807,-103.50943],[46.927929,-103.509613],[46.927811,-103.509773],[46.927662,-103.509933],[46.927479,-103.51004],[46.927299,-103.510147],[46.927071,-103.510193],[46.926739,-103.510162],[46.926399,-103.510094],[46.92614,-103.510063],[46.925911,-103.51004],[46.925751,-103.510063],[46.925571,-103.510117],[46.925259,-103.510277],[46.925041,-103.510391],[46.923809,-103.511139],[46.923592,-103.511276],[46.923271,-103.511612],[46.923019,-103.511932],[46.922958,-103.512032],[46.922939,-103.51207],[46.92281,-103.51236],[46.922771,-103.512497],[46.9226,-103.513023],[46.922539,-103.513451],[46.92252,-103.513718],[46.92252,-103.514122],[46.92255,-103.514381],[46.922611,-103.514702],[46.922668,-103.514977],[46.922749,-103.515167],[46.92289,-103.515488],[46.923061,-103.515808],[46.92382,-103.516792],[46.924259,-103.517357],[46.924511,-103.517693],[46.925091,-103.518417],[46.925381,-103.518806],[46.925621,-103.519112],[46.9258,-103.519348],[46.925919,-103.519539],[46.926029,-103.51976],[46.926121,-103.519997],[46.926231,-103.520348],[46.92627,-103.520607],[46.9263,-103.520851],[46.92638,-103.521828],[46.926411,-103.522163],[46.926479,-103.522926],[46.926498,-103.523277],[46.926559,-103.52375],[46.926609,-103.524017],[46.92667,-103.524277],[46.92675,-103.524544],[46.926819,-103.524742],[46.926922,-103.524979],[46.927029,-103.525269],[46.927151,-103.525513],[46.927311,-103.52578],[46.92757,-103.526154],[46.928181,-103.52684],[46.928398,-103.52713],[46.928509,-103.527313],[46.928619,-103.527519],[46.92868,-103.52771],[46.928768,-103.528099],[46.92878,-103.528313],[46.928768,-103.528458],[46.928699,-103.528687],[46.9286,-103.528969],[46.928379,-103.529373],[46.928169,-103.529503],[46.927929,-103.529633],[46.92775,-103.529663],[46.927361,-103.529572],[46.927158,-103.529404],[46.92696,-103.529221],[46.926708,-103.528961],[46.926239,-103.528427],[46.9258,-103.528023],[46.925579,-103.527847],[46.925339,-103.527733],[46.92511,-103.527657],[46.92487,-103.527603],[46.924671,-103.52755],[46.924549,-103.527527],[46.924271,-103.527481],[46.924141,-103.527443],[46.923931,-103.527367],[46.92374,-103.527237],[46.92355,-103.5271],[46.923199,-103.526779],[46.923069,-103.526627],[46.92292,-103.526489],[46.92276,-103.526337],[46.922562,-103.526192],[46.922379,-103.526093],[46.922138,-103.526031],[46.921589,-103.526016],[46.921242,-103.526062],[46.920712,-103.526108],[46.920158,-103.526169],[46.919849,-103.526169],[46.919621,-103.526093],[46.91927,-103.525848],[46.91922,-103.525818],[46.918789,-103.525261],[46.918598,-103.524948],[46.918411,-103.52459],[46.91832,-103.52446],[46.91824,-103.524307],[46.918091,-103.524063],[46.917919,-103.52388],[46.91774,-103.523773],[46.917549,-103.523727],[46.917389,-103.523689],[46.91729,-103.523712],[46.917191,-103.523743],[46.91703,-103.523842],[46.91687,-103.523979],[46.916729,-103.524139],[46.91666,-103.524277],[46.91663,-103.524353],[46.916401,-103.524963],[46.91621,-103.525627],[46.916149,-103.525841],[46.91605,-103.526123],[46.915932,-103.526428],[46.915821,-103.526642],[46.915619,-103.526947],[46.91552,-103.527077],[46.915421,-103.527184],[46.915169,-103.527428],[46.914989,-103.527618],[46.91497,-103.527641],[46.91494,-103.527657],[46.914768,-103.527771],[46.91465,-103.527878],[46.914982,-103.52858],[46.915611,-103.529961],[46.91608,-103.530907],[46.916729,-103.532349],[46.917068,-103.533073],[46.917091,-103.533112],[46.917278,-103.533577],[46.917419,-103.533867],[46.91748,-103.533974],[46.917789,-103.534416],[46.91795,-103.534607],[46.918091,-103.534798],[46.91864,-103.535469],[46.91975,-103.536728],[46.92086,-103.538033],[46.922249,-103.539619],[46.922401,-103.539787],[46.92366,-103.541283],[46.92445,-103.542168],[46.924679,-103.542427],[46.924931,-103.542686],[46.925152,-103.54287],[46.925449,-103.543167],[46.926899,-103.544456],[46.92712,-103.544701],[46.927299,-103.544937],[46.927479,-103.545197],[46.9277,-103.545593],[46.928082,-103.546387],[46.928211,-103.546677],[46.928459,-103.547234],[46.928619,-103.547623],[46.928799,-103.547974],[46.92897,-103.548248],[46.929111,-103.548431],[46.929161,-103.5485],[46.92934,-103.548714],[46.929451,-103.54882],[46.929611,-103.548958],[46.929989,-103.549309],[46.930248,-103.549553],[46.930439,-103.549713],[46.930828,-103.549988],[46.931141,-103.550278],[46.93132,-103.550484],[46.931469,-103.550621],[46.931671,-103.550858],[46.93182,-103.551086],[46.93195,-103.551353],[46.932079,-103.551666],[46.932171,-103.551987],[46.932232,-103.552322],[46.93227,-103.552628],[46.93227,-103.553017],[46.932259,-103.553322],[46.932259,-103.553368],[46.93224,-103.553574],[46.932098,-103.5541],[46.931992,-103.55439],[46.931801,-103.554817],[46.93166,-103.555038],[46.931431,-103.555321],[46.930931,-103.555763],[46.93063,-103.556061],[46.930401,-103.556343],[46.930168,-103.556618],[46.929989,-103.556892],[46.92984,-103.557243],[46.92968,-103.557716],[46.929508,-103.558418],[46.929329,-103.559196],[46.929199,-103.559608],[46.928661,-103.562401],[46.928551,-103.563049],[46.928459,-103.563637],[46.928391,-103.564217],[46.928371,-103.564346],[46.928299,-103.56498],[46.928249,-103.565941],[46.928249,-103.567062],[46.928249,-103.567146],[46.92828,-103.567841],[46.92831,-103.568329],[46.92836,-103.568878],[46.928452,-103.569572],[46.928501,-103.569977],[46.92873,-103.57132],[46.92889,-103.572151],[46.92902,-103.572777],[46.929211,-103.573792],[46.929482,-103.575119],[46.929562,-103.57547],[46.92968,-103.576103],[46.929749,-103.576508],[46.930168,-103.578552],[46.930401,-103.579803],[46.930641,-103.581039],[46.930859,-103.582367],[46.931,-103.583153],[46.931099,-103.583801],[46.93121,-103.58432],[46.931438,-103.585312],[46.931591,-103.585983],[46.932259,-103.588364],[46.9324,-103.588829],[46.932621,-103.589409],[46.932869,-103.590027],[46.932991,-103.590317],[46.933762,-103.592018],[46.934219,-103.59301],[46.935051,-103.594879],[46.936359,-103.597832],[46.936989,-103.599213],[46.9375,-103.600357],[46.938049,-103.601593],[46.938919,-103.603607],[46.93935,-103.604797],[46.939659,-103.605629],[46.940189,-103.606911],[46.94096,-103.609047],[46.94117,-103.609627],[46.9417,-103.611092],[46.94268,-103.613647],[46.942928,-103.614357],[46.94659,-103.624107],[46.946949,-103.625008],[46.94733,-103.62606],[46.948341,-103.6287],[46.94886,-103.630188],[46.9491,-103.630997],[46.949329,-103.631943],[46.949638,-103.633636],[46.94973,-103.63443],[46.949791,-103.635094],[46.949829,-103.636032],[46.949829,-103.637108],[46.949821,-103.637573],[46.949791,-103.638023],[46.949619,-103.63958],[46.94944,-103.641327],[46.949211,-103.643219],[46.948521,-103.649597],[46.948471,-103.650543],[46.94846,-103.651512],[46.94846,-103.652168],[46.948502,-103.653107],[46.948639,-103.655243],[46.94873,-103.656372],[46.948849,-103.657471],[46.948971,-103.658348],[46.949051,-103.658897],[46.949268,-103.661034],[46.94931,-103.661369],[46.949329,-103.661583],[46.949631,-103.663986],[46.949699,-103.664543],[46.949951,-103.666481],[46.950031,-103.667351],[46.950161,-103.668694],[46.95023,-103.66967],[46.950279,-103.670319],[46.950291,-103.67041],[46.95031,-103.670662],[46.950371,-103.672668],[46.950432,-103.67424],[46.9505,-103.675819],[46.950562,-103.677254],[46.95063,-103.678543],[46.950668,-103.679131],[46.950878,-103.684807],[46.95121,-103.692017],[46.951351,-103.695709],[46.951382,-103.696404],[46.95153,-103.699707],[46.951618,-103.702019],[46.951618,-103.702606],[46.95171,-103.703468],[46.952099,-103.706551],[46.952221,-103.707153],[46.95229,-103.707443],[46.953091,-103.711731],[46.953411,-103.713249],[46.95359,-103.714104],[46.95377,-103.71489],[46.953819,-103.715134],[46.953991,-103.716164],[46.954479,-103.718727],[46.95562,-103.723961],[46.955841,-103.72509],[46.95594,-103.725922],[46.956009,-103.726761],[46.956032,-103.727837],[46.956001,-103.728256],[46.955971,-103.728867],[46.955891,-103.729607],[46.955719,-103.730766],[46.955551,-103.731773],[46.95541,-103.732391],[46.955299,-103.732918],[46.955059,-103.733932],[46.954769,-103.735069],[46.954739,-103.735153],[46.954731,-103.735184],[46.954472,-103.736053],[46.954201,-103.736862],[46.953819,-103.737968],[46.953419,-103.738968],[46.95285,-103.740349],[46.95253,-103.741058],[46.95237,-103.741417],[46.952129,-103.741989],[46.95158,-103.743233],[46.951431,-103.743599],[46.950562,-103.745583],[46.94994,-103.74707],[46.949581,-103.747887],[46.948669,-103.750008],[46.948341,-103.750862],[46.948132,-103.75148],[46.947929,-103.752121],[46.94775,-103.752792],[46.947491,-103.753929],[46.94746,-103.754128],[46.947338,-103.754791],[46.947182,-103.756058],[46.947121,-103.757652],[46.94714,-103.776329],[46.94714,-103.777061],[46.947189,-103.78183],[46.947182,-103.782822],[46.94717,-103.785797],[46.947159,-103.786537],[46.947151,-103.787033],[46.94709,-103.787804],[46.947079,-103.788101],[46.946899,-103.789658],[46.946678,-103.791191],[46.944839,-103.803841],[46.943729,-103.811508],[46.943581,-103.812508],[46.943489,-103.813133],[46.94278,-103.818192],[46.9426,-103.819908],[46.942551,-103.820839],[46.94252,-103.821991],[46.942581,-103.8237],[46.9426,-103.824402],[46.942719,-103.827293],[46.942749,-103.828117],[46.94278,-103.828949],[46.94297,-103.833748],[46.943081,-103.835892],[46.94315,-103.837753],[46.943218,-103.839668],[46.94326,-103.840797],[46.94334,-103.841873],[46.943451,-103.843277],[46.943581,-103.844177],[46.943661,-103.844933],[46.943729,-103.845703],[46.94416,-103.849083],[46.94421,-103.849449],[46.944401,-103.850822],[46.94466,-103.852814],[46.944698,-103.853409],[46.94479,-103.854858],[46.94482,-103.856087],[46.944801,-103.857079],[46.944759,-103.857803],[46.944698,-103.858681],[46.944611,-103.859573],[46.944561,-103.860161],[46.94453,-103.860497],[46.944431,-103.861153],[46.94426,-103.862106],[46.944111,-103.8629],[46.944019,-103.863312],[46.943871,-103.863892],[46.94318,-103.866737],[46.942699,-103.868683],[46.94239,-103.869881],[46.942051,-103.871277],[46.94175,-103.872459],[46.940899,-103.87587],[46.940529,-103.877388],[46.940491,-103.877548],[46.93961,-103.881042],[46.939281,-103.882423],[46.938999,-103.883583],[46.93869,-103.884781],[46.93832,-103.886307],[46.938,-103.887543],[46.937489,-103.889519],[46.93716,-103.890877],[46.937,-103.891579],[46.936909,-103.891922],[46.93681,-103.892357],[46.93663,-103.893097],[46.936161,-103.895103],[46.935848,-103.896294],[46.935619,-103.897186],[46.935101,-103.899277],[46.934528,-103.901657],[46.934361,-103.902458],[46.93425,-103.903061],[46.93412,-103.903816],[46.93399,-103.904762],[46.93391,-103.905434],[46.933849,-103.906273],[46.933819,-103.906891],[46.933781,-103.908279],[46.933819,-103.923866],[46.933819,-103.925362],[46.933811,-103.927856],[46.93383,-103.933113],[46.933769,-103.93486],[46.933559,-103.937508],[46.933239,-103.940567],[46.933128,-103.942413],[46.933121,-103.944061],[46.933121,-103.944702],[46.933109,-103.94558],[46.933102,-103.946358],[46.933102,-103.958817],[46.93309,-103.980568],[46.933079,-103.982422],[46.93309,-103.984177],[46.93306,-103.985474],[46.933029,-103.986198],[46.93298,-103.987083],[46.932892,-103.987923],[46.932831,-103.988586],[46.932758,-103.989197],[46.93195,-103.9963],[46.93185,-103.99752],[46.93182,-103.998642],[46.931839,-103.999603],[46.931839,-104.000008],[46.93185,-104.001244],[46.931862,-104.001808],[46.931881,-104.003372],[46.9319,-104.006233],[46.931919,-104.006866],[46.931919,-104.007446],[46.931938,-104.008347],[46.931961,-104.009758],[46.931999,-104.01165],[46.931992,-104.01236],[46.932011,-104.013748],[46.932011,-104.016479],[46.932018,-104.023163],[46.93211,-104.032898],[46.932129,-104.03389],[46.93222,-104.035072],[46.932411,-104.036797],[46.932629,-104.038368],[46.932869,-104.039513],[46.933079,-104.040466],[46.93335,-104.041428],[46.933609,-104.042213],[46.934021,-104.043373],[46.934959,-104.045761],[46.938381,-104.054817],[46.938969,-104.056396],[46.939301,-104.057678],[46.939579,-104.058739],[46.939751,-104.059647],[46.93998,-104.060852],[46.940121,-104.061882],[46.94025,-104.063087],[46.940418,-104.06546],[46.94051,-104.066597],[46.94054,-104.067131],[46.940731,-104.070091],[46.940788,-104.071167],[46.94083,-104.072037],[46.940861,-104.072647],[46.940861,-104.074738],[46.94083,-104.078239],[46.940849,-104.078934],[46.94091,-104.080421],[46.94099,-104.081673],[46.941151,-104.083153],[46.94125,-104.083878],[46.94138,-104.084793],[46.9417,-104.086449],[46.942379,-104.089752],[46.943081,-104.09314],[46.943409,-104.094513],[46.94363,-104.09539],[46.943748,-104.095787],[46.94397,-104.096512],[46.944328,-104.097504],[46.94471,-104.098503],[46.94503,-104.099136],[46.94548,-104.100113],[46.945869,-104.100868],[46.94912,-104.106644],[46.95084,-104.109673],[46.95229,-104.112167],[46.95303,-104.113297],[46.95364,-104.114197],[46.954369,-104.115211],[46.954849,-104.11586],[46.95528,-104.116379],[46.956211,-104.117477],[46.956779,-104.118118],[46.957142,-104.118477],[46.960381,-104.121773],[46.962059,-104.123444],[46.963459,-104.124863],[46.964211,-104.12561],[46.966759,-104.128189],[46.96838,-104.129837],[46.969559,-104.13102],[46.97311,-104.13459],[46.973862,-104.135353],[46.974628,-104.136124],[46.97591,-104.137421],[46.976429,-104.13797],[46.97686,-104.138412],[46.97739,-104.139053],[46.977741,-104.139473],[46.978069,-104.139893],[46.978371,-104.140327],[46.978699,-104.1408],[46.979012,-104.141312],[46.979351,-104.141891],[46.979759,-104.142632],[46.980202,-104.143471],[46.980629,-104.144417],[46.98085,-104.144913],[46.981091,-104.145538],[46.98159,-104.14698],[46.982399,-104.149429],[46.984982,-104.157356],[46.98637,-104.161621],[46.98819,-104.167236],[46.988708,-104.168831],[46.989239,-104.170387],[46.98967,-104.171768],[46.989792,-104.172173],[46.99062,-104.175377],[46.991199,-104.177994],[46.991329,-104.178658],[46.9916,-104.180237],[46.99192,-104.181953],[46.992149,-104.183144],[46.99229,-104.183823],[46.992649,-104.185829],[46.993011,-104.187683],[46.993408,-104.189743],[46.993641,-104.19088],[46.993832,-104.19191],[46.994259,-104.194237],[46.994431,-104.195099],[46.994751,-104.196617],[46.995171,-104.198967],[46.995739,-104.201881],[46.996132,-104.203918],[46.99649,-104.20549],[46.996811,-104.206841],[46.997231,-104.208382],[46.998161,-104.211243],[46.99929,-104.214211],[47,-104.215973],[47.0005,-104.217262],[47.001671,-104.220207],[47.002941,-104.223343],[47.003399,-104.224579],[47.003799,-104.225822],[47.00425,-104.227348],[47.00462,-104.228706],[47.00499,-104.230217],[47.005291,-104.231644],[47.005589,-104.233482],[47.005779,-104.234589],[47.005939,-104.235901],[47.006081,-104.237106],[47.006191,-104.238487],[47.006302,-104.240631],[47.006321,-104.241699],[47.00629,-104.24295],[47.006321,-104.246651],[47.00631,-104.251328],[47.00631,-104.258392],[47.00634,-104.266548],[47.006378,-104.274292],[47.006359,-104.277687],[47.006371,-104.281731],[47.006371,-104.285179],[47.006371,-104.288612],[47.00642,-104.290573],[47.006519,-104.292229],[47.006599,-104.293213],[47.006779,-104.294724],[47.007011,-104.296143],[47.007301,-104.29776],[47.007561,-104.299011],[47.008018,-104.300751],[47.008202,-104.301331],[47.008629,-104.302658],[47.009239,-104.304253],[47.009609,-104.305161],[47.009941,-104.30587],[47.010441,-104.306931],[47.011162,-104.308327],[47.013439,-104.312592],[47.013882,-104.313438],[47.017281,-104.319801],[47.019341,-104.323708],[47.021469,-104.327667],[47.022869,-104.330338],[47.024101,-104.332619],[47.02494,-104.334221],[47.029049,-104.341927],[47.031219,-104.345993],[47.032372,-104.34819],[47.033371,-104.350159],[47.033501,-104.350449],[47.033878,-104.351257],[47.034382,-104.352493],[47.034809,-104.353607],[47.035141,-104.354439],[47.035389,-104.355164],[47.035858,-104.35659],[47.03606,-104.357277],[47.036301,-104.357979],[47.039051,-104.366722],[47.0397,-104.368958],[47.040459,-104.371201],[47.041779,-104.375488],[47.043221,-104.380081],[47.045078,-104.386093],[47.045391,-104.387123],[47.045712,-104.388046],[47.046501,-104.390572],[47.0467,-104.391197],[47.047279,-104.393059],[47.048248,-104.396156],[47.049049,-104.39875],[47.049469,-104.400177],[47.050308,-104.403419],[47.05088,-104.405296],[47.05127,-104.406502],[47.051571,-104.407509],[47.05188,-104.408577],[47.05254,-104.410896],[47.052979,-104.412277],[47.053268,-104.413162],[47.05357,-104.41436],[47.053982,-104.415771],[47.054661,-104.417961],[47.055328,-104.42028],[47.055611,-104.421188],[47.055882,-104.422188],[47.056229,-104.423424],[47.057499,-104.42762],[47.058121,-104.429672],[47.058552,-104.430977],[47.058849,-104.432137],[47.059052,-104.432793],[47.05925,-104.433372],[47.05946,-104.434067],[47.059872,-104.435699],[47.06036,-104.437363],[47.06089,-104.439072],[47.061432,-104.44091],[47.062012,-104.442787],[47.06258,-104.444817],[47.062908,-104.445679],[47.063141,-104.446579],[47.063301,-104.447273],[47.063549,-104.448097],[47.06398,-104.449593],[47.064381,-104.45092],[47.064751,-104.452248],[47.06509,-104.453346],[47.06538,-104.454514],[47.065899,-104.456627],[47.06699,-104.461327],[47.067429,-104.46312],[47.067951,-104.465393],[47.06863,-104.468338],[47.068901,-104.469467],[47.069271,-104.470833],[47.06995,-104.474037],[47.070419,-104.4758],[47.070911,-104.478119],[47.071461,-104.4804],[47.071831,-104.481682],[47.073059,-104.487259],[47.074631,-104.493973],[47.075871,-104.499168],[47.076469,-104.501678],[47.077011,-104.503754],[47.077469,-104.505447],[47.07793,-104.506866],[47.07827,-104.507851],[47.078609,-104.508713],[47.079121,-104.510048],[47.079571,-104.511124],[47.080441,-104.513031],[47.081268,-104.514687],[47.083149,-104.518494],[47.084332,-104.520927],[47.085369,-104.523064],[47.085621,-104.523552],[47.086349,-104.525032],[47.08786,-104.528091],[47.08807,-104.528549],[47.089539,-104.531578],[47.090328,-104.533127],[47.09079,-104.534103],[47.093048,-104.538712],[47.095989,-104.544708],[47.097599,-104.547974],[47.098839,-104.550583],[47.099751,-104.552521],[47.100632,-104.554626],[47.10107,-104.555687],[47.10154,-104.556961],[47.10191,-104.557983],[47.102581,-104.559998],[47.103191,-104.561981],[47.103321,-104.562393],[47.105141,-104.568619],[47.106312,-104.572609],[47.10685,-104.574516],[47.107109,-104.575729],[47.107269,-104.576607],[47.10738,-104.577347],[47.107529,-104.578362],[47.107609,-104.579224],[47.10767,-104.579933],[47.107738,-104.581161],[47.107738,-104.581833],[47.10775,-104.582649],[47.107689,-104.583817],[47.107658,-104.584732],[47.10751,-104.58625],[47.107349,-104.587517],[47.106979,-104.589493],[47.106731,-104.590843],[47.10561,-104.596909],[47.104939,-104.60041],[47.104321,-104.603844],[47.10294,-104.611183],[47.10207,-104.615807],[47.1017,-104.617767],[47.10157,-104.618698],[47.10149,-104.619278],[47.101429,-104.619919],[47.10141,-104.620773],[47.10141,-104.621468],[47.101452,-104.622337],[47.101551,-104.623253],[47.101669,-104.623871],[47.101799,-104.624481],[47.10202,-104.62545],[47.102341,-104.626343],[47.10257,-104.626953],[47.102928,-104.627747],[47.103298,-104.628441],[47.103649,-104.629013],[47.104038,-104.629547],[47.104301,-104.629883],[47.10471,-104.63031],[47.10878,-104.634201],[47.109039,-104.634468],[47.109638,-104.635094],[47.11013,-104.635674],[47.110432,-104.636124],[47.110748,-104.636642],[47.110989,-104.637123],[47.111221,-104.637627],[47.111462,-104.638206],[47.111629,-104.638687],[47.11179,-104.639198],[47.111961,-104.639877],[47.11208,-104.640556],[47.112148,-104.641167],[47.112331,-104.644341],[47.11248,-104.647308],[47.112629,-104.649017],[47.112808,-104.650009],[47.112968,-104.650658],[47.113121,-104.651253],[47.113281,-104.651833],[47.113499,-104.652527],[47.11393,-104.653709],[47.114349,-104.654678],[47.11491,-104.655701],[47.115479,-104.656609],[47.11694,-104.658836],[47.118629,-104.661453],[47.119381,-104.662598],[47.119961,-104.663544],[47.12059,-104.66481],[47.120941,-104.665703],[47.121078,-104.666061],[47.121342,-104.666847],[47.121578,-104.667686],[47.121792,-104.668587],[47.121929,-104.669273],[47.122082,-104.670326],[47.122269,-104.672012],[47.12241,-104.673523],[47.12254,-104.674362],[47.122639,-104.675117],[47.123459,-104.679749],[47.123951,-104.682579],[47.124199,-104.683937],[47.124378,-104.684937],[47.12447,-104.685623],[47.124538,-104.68689],[47.124561,-104.687881],[47.124538,-104.688469],[47.124512,-104.689201],[47.124458,-104.689919],[47.124321,-104.691101],[47.124229,-104.692047],[47.124111,-104.6931],[47.12402,-104.694267],[47.123901,-104.69558],[47.123661,-104.698868],[47.123531,-104.700729],[47.12328,-104.703377],[47.123131,-104.704887],[47.122669,-104.711433],[47.122608,-104.712517],[47.12252,-104.713547],[47.122429,-104.714607],[47.122219,-104.71563],[47.12207,-104.716339],[47.121922,-104.716873],[47.12162,-104.717743],[47.120541,-104.720779],[47.119171,-104.724617],[47.118961,-104.72522],[47.11805,-104.72776],[47.11694,-104.730873],[47.116631,-104.731796],[47.11657,-104.731918],[47.115959,-104.733704],[47.115299,-104.735527],[47.114971,-104.736504],[47.11377,-104.74012],[47.11348,-104.741013],[47.113121,-104.742203],[47.112751,-104.743248],[47.11245,-104.744202],[47.112061,-104.745262],[47.11179,-104.746132],[47.111641,-104.746696],[47.111351,-104.747513],[47.110729,-104.749474],[47.10936,-104.753616],[47.10907,-104.754463],[47.107422,-104.759453],[47.10672,-104.761597],[47.106022,-104.763802],[47.105709,-104.764633],[47.105549,-104.765007],[47.105202,-104.765717],[47.104721,-104.766602],[47.10437,-104.767113],[47.103951,-104.767647],[47.103352,-104.768303],[47.102421,-104.769089],[47.101952,-104.769417],[47.10043,-104.770523],[47.09882,-104.77169],[47.09742,-104.772797],[47.094711,-104.774727],[47.09359,-104.775528],[47.09304,-104.775887],[47.092541,-104.776207],[47.0919,-104.776573],[47.091259,-104.776947],[47.09024,-104.777473],[47.088409,-104.778282],[47.08733,-104.77877],[47.087002,-104.778954],[47.086441,-104.779213],[47.086239,-104.779297],[47.084942,-104.779861],[47.08345,-104.780586],[47.081459,-104.781517],[47.080448,-104.781967],[47.079418,-104.782509],[47.078339,-104.78318],[47.077358,-104.78389],[47.07502,-104.785637],[47.073441,-104.786774],[47.071918,-104.787857],[47.0672,-104.791359],[47.066959,-104.791527],[47.06469,-104.793182],[47.0611,-104.795799],[47.05901,-104.797333],[47.056259,-104.799316],[47.053951,-104.801033],[47.049068,-104.804611],[47.046581,-104.806427],[47.044159,-104.808182],[47.040771,-104.810699],[47.039421,-104.811691],[47.03841,-104.812401],[47.034321,-104.815353],[47.033051,-104.816322],[47.031891,-104.817177],[47.02882,-104.819397],[47.024391,-104.822647],[47.01997,-104.825813],[47.015862,-104.828903],[47.012878,-104.831017],[47.009819,-104.833313],[47.009071,-104.833839],[47.007092,-104.835281],[47.006351,-104.835838],[47.004749,-104.837029],[47.003361,-104.83799],[47.0009,-104.839767],[46.99984,-104.840538],[46.99633,-104.843132],[46.992359,-104.846024],[46.986389,-104.850319],[46.983311,-104.852577],[46.980679,-104.854523],[46.97987,-104.855133],[46.978691,-104.855957],[46.97662,-104.857697],[46.975971,-104.858276],[46.975368,-104.858833],[46.974789,-104.85939],[46.97377,-104.860397],[46.97226,-104.861893],[46.970901,-104.863487],[46.969131,-104.865677],[46.967751,-104.867577],[46.966309,-104.86972],[46.965511,-104.870987],[46.964729,-104.872292],[46.963799,-104.873947],[46.962551,-104.876289],[46.96167,-104.87809],[46.960098,-104.881691],[46.957958,-104.886742],[46.956139,-104.890999],[46.954632,-104.894524],[46.952969,-104.898483],[46.950378,-104.904533],[46.94973,-104.906097],[46.9492,-104.907333],[46.94767,-104.91098],[46.947418,-104.911583],[46.94532,-104.916489],[46.945091,-104.91703],[46.94466,-104.918037],[46.943562,-104.920647],[46.940071,-104.928833],[46.93943,-104.930344],[46.938438,-104.932701],[46.93784,-104.934143],[46.935051,-104.940697],[46.933708,-104.943878],[46.931499,-104.949074],[46.928421,-104.956238],[46.925659,-104.962784],[46.92337,-104.968178],[46.920681,-104.974503],[46.92049,-104.974907],[46.91996,-104.976158],[46.919209,-104.977951],[46.917889,-104.981041],[46.91671,-104.983818],[46.912991,-104.992577],[46.911251,-104.996597],[46.909481,-105.000717],[46.906219,-105.008408],[46.903419,-105.014954],[46.903,-105.015968],[46.901321,-105.019997],[46.900471,-105.021942],[46.89925,-105.024773],[46.898819,-105.025742],[46.896221,-105.031952],[46.891811,-105.042191],[46.890991,-105.044128],[46.888908,-105.049004],[46.88784,-105.051468],[46.883381,-105.061943],[46.87989,-105.070023],[46.879532,-105.070938],[46.876598,-105.077759],[46.876019,-105.079178],[46.875889,-105.079483],[46.87532,-105.080772],[46.874378,-105.082947],[46.873268,-105.085739],[46.87207,-105.089043],[46.87096,-105.091759],[46.870541,-105.092773],[46.87022,-105.093559],[46.869942,-105.094223],[46.868221,-105.098221],[46.866421,-105.102333],[46.865959,-105.103363],[46.865509,-105.1045],[46.864929,-105.105888],[46.864128,-105.107773],[46.863708,-105.108528],[46.86314,-105.109497],[46.862591,-105.110451],[46.862019,-105.111366],[46.861309,-105.112282],[46.860531,-105.11319],[46.85947,-105.114273],[46.858189,-105.115387],[46.857861,-105.11573],[46.85746,-105.116074],[46.85709,-105.116386],[46.854359,-105.118843],[46.852211,-105.120827],[46.849758,-105.123001],[46.849098,-105.123627],[46.846619,-105.125839],[46.844528,-105.127769],[46.842499,-105.129608],[46.84111,-105.130852],[46.840019,-105.131844],[46.837471,-105.13385],[46.835079,-105.13578],[46.834351,-105.136261],[46.833031,-105.13723],[46.832378,-105.137733],[46.83181,-105.138237],[46.830978,-105.139076],[46.82988,-105.140709],[46.829269,-105.14167],[46.828449,-105.143402],[46.827671,-105.14563],[46.825249,-105.154373],[46.824982,-105.155357],[46.823151,-105.161919],[46.819801,-105.174171],[46.81937,-105.175667],[46.815971,-105.188004],[46.815029,-105.191437],[46.81414,-105.194748],[46.813419,-105.19709],[46.813042,-105.198273],[46.8125,-105.199654],[46.811279,-105.202431],[46.810001,-105.205383],[46.80854,-105.208809],[46.806149,-105.214363],[46.803959,-105.21933],[46.802311,-105.223183],[46.798309,-105.23278],[46.797878,-105.233788],[46.797249,-105.235367],[46.796951,-105.236168],[46.796291,-105.23822],[46.795929,-105.239799],[46.79567,-105.240929],[46.79538,-105.242607],[46.795132,-105.244179],[46.794998,-105.245598],[46.794868,-105.24733],[46.794788,-105.250557],[46.794601,-105.259689],[46.794491,-105.264351],[46.794289,-105.273132],[46.79417,-105.279648],[46.79398,-105.282257],[46.793621,-105.284576],[46.793209,-105.286324],[46.792728,-105.288071],[46.79229,-105.289337],[46.78997,-105.295387],[46.789009,-105.29789],[46.788448,-105.299347],[46.787312,-105.302299],[46.786949,-105.303261],[46.785851,-105.306122],[46.785549,-105.306877],[46.78442,-105.309738],[46.783371,-105.3125],[46.781811,-105.316566],[46.780449,-105.319847],[46.779491,-105.321991],[46.778751,-105.323547],[46.777882,-105.325447],[46.776031,-105.329407],[46.772839,-105.336227],[46.769409,-105.34359],[46.768391,-105.345818],[46.76506,-105.352966],[46.761471,-105.360649],[46.754879,-105.374779],[46.753502,-105.377693],[46.752369,-105.380127],[46.750092,-105.385017],[46.748131,-105.389214],[46.747349,-105.390869],[46.74604,-105.393501],[46.744808,-105.396172],[46.74408,-105.397713],[46.74287,-105.400284],[46.74168,-105.402893],[46.74052,-105.405296],[46.739429,-105.407669],[46.738239,-105.410263],[46.73698,-105.412933],[46.736488,-105.413918],[46.736012,-105.414787],[46.735329,-105.41584],[46.73465,-105.416786],[46.733471,-105.418289],[46.733101,-105.418777],[46.73278,-105.419189],[46.731911,-105.420242],[46.730591,-105.421783],[46.729191,-105.423439],[46.72773,-105.425262],[46.726791,-105.426376],[46.72525,-105.428261],[46.724991,-105.428574],[46.72414,-105.429527],[46.723728,-105.429932],[46.723042,-105.430557],[46.722691,-105.430862],[46.721909,-105.43145],[46.721191,-105.431923],[46.72044,-105.432327],[46.719841,-105.432648],[46.71793,-105.433601],[46.716511,-105.434349],[46.71608,-105.434593],[46.715141,-105.435043],[46.714581,-105.435333],[46.712791,-105.436211],[46.71125,-105.437027],[46.70816,-105.438652],[46.704781,-105.440331],[46.70364,-105.440933],[46.702309,-105.441597],[46.69949,-105.443031],[46.697849,-105.443863],[46.697041,-105.444283],[46.696049,-105.444794],[46.694771,-105.445618],[46.694271,-105.445992],[46.693569,-105.446587],[46.692719,-105.447372],[46.691769,-105.44841],[46.689899,-105.450867],[46.687489,-105.454033],[46.684841,-105.457497],[46.68187,-105.461418],[46.679508,-105.464531],[46.677719,-105.467049],[46.676788,-105.468567],[46.676441,-105.469147],[46.676121,-105.469688],[46.675968,-105.469917],[46.674129,-105.472977],[46.673111,-105.474663],[46.672489,-105.475754],[46.67168,-105.477081],[46.671131,-105.477898],[46.67046,-105.478798],[46.669708,-105.479683],[46.66856,-105.480881],[46.667542,-105.481728],[46.666882,-105.482224],[46.666229,-105.482658],[46.665279,-105.4832],[46.66291,-105.484428],[46.66222,-105.484863],[46.661758,-105.485207],[46.66135,-105.485588],[46.660568,-105.486427],[46.66024,-105.486847],[46.659901,-105.487389],[46.659698,-105.487709],[46.659389,-105.488274],[46.65855,-105.489952],[46.657509,-105.491989],[46.65728,-105.492447],[46.656929,-105.493111],[46.656712,-105.493553],[46.656441,-105.494003],[46.655811,-105.494926],[46.65527,-105.495522],[46.654732,-105.496048],[46.654499,-105.496246],[46.653622,-105.49691],[46.65279,-105.497482],[46.652458,-105.497772],[46.652119,-105.498093],[46.65184,-105.498398],[46.651379,-105.498962],[46.651119,-105.499352],[46.650841,-105.499817],[46.650639,-105.500214],[46.65044,-105.500648],[46.64994,-105.501877],[46.649509,-105.503166],[46.64922,-105.504044],[46.6488,-105.505386],[46.648251,-105.506927],[46.6478,-105.508163],[46.647511,-105.508842],[46.647221,-105.509468],[46.646912,-105.510117],[46.646591,-105.51075],[46.646179,-105.511421],[46.645599,-105.512367],[46.64492,-105.513321],[46.64452,-105.513817],[46.643829,-105.51461],[46.643509,-105.514954],[46.643089,-105.515312],[46.642689,-105.515694],[46.642159,-105.516182],[46.641479,-105.516731],[46.640652,-105.517303],[46.64016,-105.517593],[46.63945,-105.51796],[46.63826,-105.518494],[46.636929,-105.519043],[46.63615,-105.519363],[46.63538,-105.519821],[46.634781,-105.520241],[46.634041,-105.520844],[46.63298,-105.52182],[46.63269,-105.522163],[46.63155,-105.523659],[46.630169,-105.52562],[46.6292,-105.526932],[46.627289,-105.529663],[46.62545,-105.532288],[46.625191,-105.532677],[46.624939,-105.533051],[46.624599,-105.533524],[46.624191,-105.534058],[46.623661,-105.53466],[46.622829,-105.5355],[46.622269,-105.53595],[46.620861,-105.53688],[46.619732,-105.53759],[46.618759,-105.538177],[46.617779,-105.538788],[46.61697,-105.539383],[46.616371,-105.539833],[46.615929,-105.540199],[46.614941,-105.541054],[46.613899,-105.542023],[46.612808,-105.543159],[46.612331,-105.543633],[46.61116,-105.544884],[46.60984,-105.546288],[46.608669,-105.547501],[46.608231,-105.547951],[46.607231,-105.549049],[46.605709,-105.550636],[46.603802,-105.552628],[46.601059,-105.555458],[46.599628,-105.556976],[46.598141,-105.55854],[46.596722,-105.560043],[46.594139,-105.562752],[46.590069,-105.567017],[46.58989,-105.5672],[46.588619,-105.568558],[46.586819,-105.570419],[46.585209,-105.572189],[46.584492,-105.573067],[46.584019,-105.573738],[46.583569,-105.574478],[46.582821,-105.575912],[46.580959,-105.580322],[46.58012,-105.582367],[46.57901,-105.585068],[46.578171,-105.587044],[46.577011,-105.589813],[46.576351,-105.591347],[46.57589,-105.592529],[46.575539,-105.593224],[46.575039,-105.594017],[46.574631,-105.594482],[46.574188,-105.594963],[46.57378,-105.595306],[46.573151,-105.595787],[46.571602,-105.596786],[46.569969,-105.597763],[46.56868,-105.598541],[46.567619,-105.599297],[46.566711,-105.600121],[46.565929,-105.600952],[46.56554,-105.601372],[46.564659,-105.602432],[46.563709,-105.603844],[46.56332,-105.604553],[46.56282,-105.605431],[46.56189,-105.607437],[46.560711,-105.610748],[46.559311,-105.614731],[46.558819,-105.616547],[46.558399,-105.618134],[46.55809,-105.619728],[46.557892,-105.620918],[46.557781,-105.622093],[46.55761,-105.62326],[46.557281,-105.624817],[46.55685,-105.626343],[46.556198,-105.628464],[46.555271,-105.630676],[46.554359,-105.632408],[46.553749,-105.633392],[46.552971,-105.634453],[46.55249,-105.635094],[46.551941,-105.635681],[46.55127,-105.63636],[46.55035,-105.637207],[46.549599,-105.637833],[46.548901,-105.638344],[46.548141,-105.638817],[46.5462,-105.639877],[46.54406,-105.641052],[46.542702,-105.6418],[46.541901,-105.642212],[46.54039,-105.64341],[46.539379,-105.644348],[46.53841,-105.64537],[46.537651,-105.646339],[46.536919,-105.6474],[46.536011,-105.648857],[46.53532,-105.650253],[46.53513,-105.650673],[46.533569,-105.654228],[46.530949,-105.660217],[46.5284,-105.666092],[46.527191,-105.668747],[46.526279,-105.67083],[46.524929,-105.673737],[46.521969,-105.679947],[46.520809,-105.682411],[46.519402,-105.685364],[46.519192,-105.685852],[46.51849,-105.687302],[46.518051,-105.688148],[46.517479,-105.689087],[46.516449,-105.690742],[46.515919,-105.691467],[46.515209,-105.692368],[46.51461,-105.693169],[46.51347,-105.694763],[46.511768,-105.697121],[46.511238,-105.697952],[46.5098,-105.699944],[46.509239,-105.700706],[46.50835,-105.701897],[46.507191,-105.703537],[46.506721,-105.70417],[46.50605,-105.704971],[46.50555,-105.705498],[46.504929,-105.706039],[46.50428,-105.706551],[46.502548,-105.707703],[46.498638,-105.710243],[46.497742,-105.710854],[46.49012,-105.715828],[46.486698,-105.718071],[46.486252,-105.718437],[46.485611,-105.719017],[46.485142,-105.71949],[46.48447,-105.720322],[46.483761,-105.721321],[46.48,-105.726677],[46.476109,-105.732262],[46.472389,-105.737633],[46.470371,-105.740509],[46.4697,-105.741463],[46.46814,-105.743652],[46.465599,-105.747337],[46.4631,-105.75087],[46.459099,-105.756577],[46.456558,-105.760231],[46.454109,-105.763763],[46.45211,-105.766487],[46.451099,-105.768013],[46.45047,-105.768799],[46.449982,-105.769318],[46.44936,-105.769989],[46.4487,-105.770447],[46.446411,-105.772057],[46.444321,-105.773659],[46.44202,-105.775307],[46.439709,-105.776993],[46.43708,-105.7789],[46.435791,-105.779846],[46.4342,-105.78096],[46.433491,-105.781418],[46.43174,-105.78273],[46.430161,-105.783897],[46.4296,-105.784317],[46.428471,-105.785057],[46.426361,-105.786636],[46.425961,-105.786911],[46.423611,-105.78862],[46.42318,-105.788933],[46.421711,-105.789993],[46.417591,-105.792969],[46.41544,-105.794548],[46.413212,-105.796127],[46.412189,-105.796867],[46.41151,-105.797333],[46.410702,-105.797943],[46.40934,-105.799004],[46.408001,-105.800194],[46.40696,-105.801086],[46.406078,-105.802048],[46.40514,-105.80304],[46.403961,-105.804527],[46.403149,-105.805603],[46.40247,-105.806534],[46.401081,-105.808746],[46.400211,-105.810249],[46.399719,-105.811127],[46.399181,-105.812088],[46.39893,-105.812691],[46.397911,-105.815002],[46.3974,-105.816292],[46.396431,-105.818611],[46.395809,-105.820007],[46.394829,-105.822243],[46.394569,-105.822861],[46.39312,-105.826309],[46.392521,-105.827713],[46.391682,-105.829674],[46.391418,-105.830261],[46.388111,-105.838013],[46.385181,-105.84491],[46.38472,-105.84597],[46.381161,-105.854378],[46.38092,-105.854973],[46.377769,-105.862381],[46.374889,-105.869057],[46.374039,-105.871071],[46.373459,-105.872414],[46.372349,-105.875038],[46.371151,-105.877823],[46.36861,-105.883797],[46.367619,-105.886101],[46.365551,-105.89093],[46.36451,-105.893387],[46.361351,-105.900787],[46.35902,-105.906227],[46.35738,-105.909828],[46.357208,-105.910202],[46.352039,-105.921494],[46.34668,-105.933197],[46.345131,-105.936607],[46.34383,-105.93943],[46.34156,-105.944397],[46.340649,-105.946274],[46.340111,-105.94725],[46.338779,-105.949593],[46.33707,-105.952362],[46.334461,-105.956596],[46.33326,-105.958633],[46.331348,-105.961761],[46.327919,-105.967346],[46.32737,-105.968239],[46.326931,-105.968964],[46.326328,-105.969971],[46.325661,-105.971336],[46.325089,-105.972656],[46.324741,-105.973511],[46.32312,-105.97834],[46.321949,-105.981873],[46.32127,-105.98391],[46.320969,-105.984848],[46.32032,-105.986679],[46.319679,-105.98867],[46.31916,-105.990257],[46.31805,-105.993591],[46.317242,-105.996017],[46.315472,-106.001244],[46.31356,-106.006989],[46.311729,-106.012459],[46.310871,-106.015083],[46.310471,-106.016251],[46.310188,-106.017227],[46.30991,-106.018333],[46.309731,-106.019173],[46.30946,-106.020523],[46.309231,-106.022461],[46.309109,-106.023987],[46.30909,-106.02449],[46.309071,-106.025436],[46.309071,-106.026154],[46.309101,-106.026909],[46.309132,-106.027657],[46.30938,-106.030472],[46.30949,-106.031418],[46.309792,-106.03447],[46.31012,-106.037727],[46.310169,-106.038254],[46.310421,-106.040901],[46.310692,-106.043694],[46.310791,-106.044746],[46.310959,-106.04631],[46.311001,-106.046959],[46.311039,-106.047493],[46.311062,-106.047951],[46.311069,-106.048119],[46.311081,-106.048492],[46.311081,-106.049088],[46.311089,-106.050919],[46.311069,-106.053886],[46.311069,-106.061317],[46.311069,-106.071228],[46.311069,-106.077164],[46.31105,-106.078773],[46.311081,-106.080368],[46.31115,-106.081642],[46.311279,-106.08287],[46.311359,-106.083443],[46.311501,-106.084473],[46.312469,-106.089668],[46.31303,-106.092781],[46.313591,-106.095863],[46.313721,-106.096764],[46.313911,-106.098343],[46.313992,-106.099342],[46.31406,-106.100639],[46.31403,-106.102501],[46.313931,-106.104111],[46.313839,-106.104973],[46.313751,-106.105652],[46.313671,-106.106194],[46.31356,-106.10685],[46.31345,-106.107422],[46.31329,-106.108192],[46.313011,-106.109482],[46.312439,-106.112053],[46.31179,-106.114899],[46.311298,-106.116951],[46.3111,-106.117722],[46.310909,-106.118347],[46.31073,-106.118927],[46.31052,-106.119507],[46.310268,-106.120193],[46.309761,-106.121437],[46.309429,-106.122169],[46.308941,-106.123123],[46.30859,-106.123756],[46.308079,-106.12455],[46.307732,-106.125137],[46.307411,-106.125717],[46.303558,-106.132462],[46.30291,-106.133553],[46.299992,-106.138702],[46.299011,-106.140427],[46.297722,-106.142708],[46.29451,-106.148323],[46.29425,-106.148781],[46.2906,-106.15519],[46.28569,-106.163803],[46.28484,-106.165268],[46.284489,-106.165894],[46.283661,-106.16748],[46.28339,-106.16806],[46.283131,-106.168633],[46.282959,-106.16909],[46.282639,-106.170052],[46.282101,-106.171677],[46.28175,-106.17308],[46.28067,-106.177368],[46.28017,-106.179352],[46.28009,-106.17968],[46.278141,-106.187317],[46.277931,-106.188141],[46.27758,-106.189194],[46.276939,-106.190903],[46.276569,-106.191849],[46.276131,-106.193161],[46.275921,-106.193893],[46.275661,-106.194923],[46.27552,-106.195488],[46.275421,-106.195862],[46.2752,-106.196823],[46.274929,-106.197906],[46.27467,-106.198982],[46.274342,-106.200699],[46.274269,-106.201218],[46.274078,-106.202744],[46.273911,-106.204369],[46.273739,-106.205643],[46.273571,-106.206612],[46.27343,-106.207329],[46.2724,-106.211662],[46.271111,-106.217163],[46.26944,-106.224129],[46.268761,-106.227043],[46.26667,-106.235786],[46.26635,-106.237221],[46.266109,-106.238182],[46.264969,-106.243042],[46.264099,-106.24662],[46.263149,-106.250771],[46.262699,-106.252937],[46.262501,-106.254089],[46.262192,-106.25605],[46.262058,-106.256973],[46.261929,-106.258034],[46.261749,-106.260017],[46.261551,-106.263222],[46.261261,-106.2687],[46.261219,-106.269829],[46.261219,-106.270378],[46.26123,-106.271439],[46.26128,-106.27224],[46.261349,-106.273201],[46.26141,-106.273598],[46.261501,-106.274353],[46.261681,-106.27562],[46.262138,-106.27784],[46.262611,-106.279892],[46.263931,-106.285744],[46.264561,-106.288658],[46.264709,-106.289413],[46.264839,-106.2901],[46.264931,-106.290863],[46.26503,-106.291679],[46.265228,-106.293503],[46.26572,-106.298332],[46.266071,-106.301643],[46.266312,-106.303528],[46.266541,-106.304947],[46.266819,-106.30661],[46.267159,-106.30838],[46.267319,-106.309273],[46.267731,-106.31163],[46.268291,-106.314842],[46.26841,-106.315773],[46.268501,-106.316757],[46.268539,-106.317917],[46.268501,-106.319206],[46.268429,-106.320389],[46.268311,-106.321243],[46.268169,-106.322128],[46.267799,-106.323723],[46.267551,-106.32457],[46.267052,-106.326088],[46.266579,-106.327431],[46.266411,-106.328033],[46.26627,-106.32859],[46.266109,-106.329308],[46.266048,-106.329826],[46.266041,-106.330261],[46.266029,-106.33094],[46.266048,-106.331558],[46.266129,-106.332497],[46.266312,-106.333412],[46.266659,-106.334557],[46.266998,-106.335373],[46.267262,-106.336014],[46.267521,-106.336662],[46.267731,-106.337311],[46.267948,-106.338013],[46.268082,-106.33847],[46.268169,-106.338898],[46.268261,-106.339417],[46.268311,-106.339828],[46.26836,-106.340538],[46.268349,-106.34124],[46.268291,-106.341957],[46.268089,-106.343353],[46.267941,-106.344223],[46.267872,-106.344948],[46.267792,-106.345734],[46.267731,-106.346443],[46.26767,-106.347733],[46.267658,-106.349564],[46.267658,-106.350639],[46.267681,-106.356697],[46.267681,-106.36319],[46.267681,-106.371353],[46.2677,-106.376244],[46.267681,-106.393333],[46.267681,-106.393806],[46.267689,-106.400452],[46.267689,-106.41806],[46.267689,-106.422737],[46.267689,-106.423553],[46.267681,-106.426422],[46.2677,-106.431969],[46.267681,-106.433563],[46.267689,-106.446152],[46.267681,-106.463089],[46.267639,-106.465927],[46.26757,-106.467827],[46.267429,-106.471703],[46.267269,-106.476227],[46.267262,-106.477097],[46.267059,-106.481956],[46.26704,-106.482597],[46.266781,-106.489563],[46.266579,-106.495171],[46.266472,-106.49826],[46.266441,-106.500618],[46.26643,-106.507507],[46.26643,-106.509331],[46.26643,-106.527344],[46.266418,-106.530441],[46.266392,-106.531181],[46.266361,-106.53183],[46.2663,-106.53257],[46.266239,-106.533371],[46.265881,-106.536583],[46.265759,-106.538139],[46.265678,-106.539307],[46.265629,-106.54071],[46.265591,-106.542809],[46.265629,-106.545174],[46.265671,-106.546188],[46.265739,-106.547279],[46.2658,-106.548203],[46.265999,-106.550323],[46.26622,-106.55233],[46.266312,-106.553162],[46.266392,-106.554199],[46.266441,-106.555023],[46.266479,-106.55571],[46.266529,-106.556641],[46.266541,-106.557533],[46.266571,-106.558456],[46.266541,-106.57048],[46.266529,-106.586456],[46.266521,-106.590393],[46.266521,-106.60038],[46.26651,-106.604172],[46.266499,-106.609413],[46.266491,-106.614853],[46.266479,-106.620193],[46.26651,-106.623978],[46.266628,-106.627708],[46.26688,-106.631607],[46.26712,-106.634666],[46.267181,-106.635597],[46.2672,-106.636208],[46.26722,-106.637047],[46.267208,-106.638283],[46.267181,-106.639481],[46.266998,-106.642357],[46.266891,-106.643463],[46.266762,-106.644943],[46.26627,-106.650238],[46.266171,-106.651741],[46.266129,-106.652321],[46.26614,-106.653152],[46.26614,-106.653954],[46.26622,-106.654831],[46.266449,-106.657303],[46.266659,-106.659477],[46.26693,-106.662552],[46.267139,-106.66478],[46.267159,-106.665573],[46.267139,-106.666183],[46.26709,-106.666977],[46.266979,-106.667793],[46.26688,-106.668266],[46.26675,-106.668823],[46.26651,-106.669594],[46.26622,-106.670387],[46.265839,-106.671173],[46.265518,-106.671761],[46.265091,-106.672363],[46.264099,-106.673592],[46.260712,-106.677673],[46.259789,-106.678818],[46.259331,-106.679497],[46.258942,-106.680183],[46.258579,-106.680878],[46.258148,-106.682022],[46.257771,-106.683311],[46.25758,-106.684227],[46.257408,-106.685463],[46.257309,-106.687286],[46.257191,-106.691101],[46.257111,-106.692413],[46.256969,-106.693542],[46.256748,-106.694847],[46.256519,-106.695877],[46.255329,-106.699707],[46.255039,-106.700729],[46.254711,-106.702209],[46.254379,-106.704147],[46.253021,-106.716904],[46.252911,-106.718491],[46.252892,-106.72039],[46.25293,-106.721329],[46.253231,-106.724899],[46.253899,-106.731743],[46.255169,-106.74614],[46.255501,-106.749893],[46.255711,-106.752083],[46.255989,-106.755287],[46.256142,-106.758163],[46.256161,-106.760834],[46.256111,-106.763329],[46.256001,-106.76516],[46.25581,-106.767067],[46.25536,-106.770599],[46.254509,-106.777069],[46.253109,-106.787727],[46.25172,-106.798317],[46.250778,-106.805321],[46.250519,-106.807098],[46.25037,-106.808228],[46.250221,-106.80957],[46.250069,-106.810966],[46.249969,-106.813202],[46.250011,-106.815063],[46.250118,-106.817047],[46.250229,-106.81929],[46.25034,-106.821373],[46.250431,-106.823196],[46.250542,-106.82531],[46.250648,-106.828697],[46.250511,-106.8414],[46.250301,-106.853783],[46.250061,-106.870338],[46.250191,-106.87426],[46.250408,-106.877274],[46.250961,-106.883186],[46.25235,-106.897598],[46.25248,-106.898811],[46.252701,-106.900558],[46.25301,-106.902267],[46.253391,-106.903961],[46.256359,-106.914368],[46.25869,-106.922493],[46.259602,-106.925858],[46.260189,-106.92823],[46.260841,-106.931396],[46.261009,-106.932213],[46.262161,-106.938011],[46.26252,-106.939941],[46.26553,-106.958267],[46.26601,-106.961319],[46.266289,-106.963799],[46.26646,-106.966476],[46.266548,-106.968788],[46.266571,-106.971161],[46.266659,-106.987701],[46.266701,-106.994118],[46.266769,-107.000351],[46.266739,-107.003906],[46.266769,-107.007156],[46.266869,-107.027351],[46.266918,-107.035103],[46.26688,-107.036797],[46.266769,-107.038803],[46.266571,-107.041328],[46.26582,-107.049316],[46.265511,-107.053047],[46.265141,-107.057442],[46.264408,-107.065437],[46.264278,-107.067307],[46.26421,-107.069122],[46.26416,-107.07476],[46.26408,-107.082298],[46.263908,-107.097198],[46.263748,-107.117249],[46.263618,-107.125458],[46.263611,-107.129478],[46.26358,-107.131912],[46.263439,-107.143997],[46.263432,-107.14473],[46.263359,-107.149261],[46.26339,-107.152908],[46.263309,-107.156357],[46.262341,-107.172951],[46.26186,-107.181107],[46.26144,-107.187447],[46.261391,-107.18911],[46.261311,-107.190353],[46.261211,-107.191544],[46.260811,-107.198097],[46.260769,-107.199638],[46.26038,-107.205276],[46.25993,-107.213127],[46.259682,-107.217194],[46.259529,-107.218918],[46.259418,-107.22065],[46.25927,-107.22213],[46.25914,-107.222961],[46.25901,-107.223511],[46.25856,-107.224792],[46.25803,-107.226067],[46.257469,-107.227219],[46.256168,-107.228821],[46.255508,-107.229568],[46.253979,-107.23114],[46.25082,-107.234467],[46.250011,-107.235268],[46.249001,-107.236153],[46.24818,-107.236717],[46.247269,-107.237297],[46.24342,-107.239571],[46.24229,-107.240219],[46.240891,-107.240913],[46.239689,-107.241432],[46.235901,-107.242928],[46.23481,-107.243301],[46.231541,-107.244598],[46.228741,-107.245667],[46.22768,-107.246101],[46.22596,-107.24688],[46.22319,-107.248322],[46.221581,-107.249168],[46.218319,-107.250862],[46.216709,-107.25164],[46.215759,-107.252022],[46.208649,-107.254951],[46.20739,-107.255508],[46.206169,-107.256187],[46.203999,-107.257729],[46.20097,-107.259956],[46.198158,-107.261948],[46.193729,-107.265244],[46.19276,-107.266068],[46.192299,-107.266548],[46.187859,-107.271591],[46.180721,-107.279823],[46.177528,-107.283501],[46.176319,-107.284851],[46.17487,-107.286552],[46.17189,-107.29007],[46.170559,-107.29184],[46.17009,-107.292686],[46.169449,-107.294167],[46.168789,-107.295952],[46.168289,-107.297699],[46.167221,-107.300667],[46.166908,-107.30191],[46.166431,-107.303253],[46.165668,-107.305687],[46.16526,-107.307663],[46.165058,-107.309418],[46.164951,-107.311157],[46.165051,-107.313103],[46.165131,-107.317093],[46.1651,-107.319153],[46.165169,-107.320831],[46.165161,-107.321838],[46.16523,-107.324837],[46.165241,-107.328232],[46.165321,-107.330727],[46.165421,-107.332413],[46.16555,-107.334137],[46.165771,-107.337128],[46.16584,-107.338654],[46.165981,-107.340462],[46.166149,-107.342667],[46.166321,-107.345009],[46.16642,-107.345886],[46.16647,-107.346931],[46.16671,-107.350739],[46.166729,-107.352097],[46.166641,-107.353897],[46.16647,-107.355347],[46.16605,-107.357239],[46.165611,-107.358551],[46.165058,-107.360352],[46.164051,-107.363632],[46.163399,-107.365623],[46.16304,-107.366798],[46.162659,-107.368118],[46.16214,-107.369614],[46.161282,-107.372467],[46.160381,-107.375313],[46.160061,-107.376823],[46.159889,-107.378036],[46.159821,-107.379143],[46.15976,-107.380447],[46.159779,-107.381813],[46.159988,-107.383942],[46.160141,-107.385757],[46.16032,-107.3871],[46.160789,-107.392021],[46.16132,-107.397003],[46.161442,-107.397827],[46.16177,-107.401787],[46.162201,-107.405769],[46.162312,-107.407043],[46.162319,-107.408798],[46.162239,-107.410599],[46.161911,-107.412842],[46.160999,-107.416733],[46.16048,-107.418938],[46.159931,-107.421181],[46.159031,-107.424057],[46.15778,-107.427429],[46.15453,-107.43605],[46.152649,-107.440948],[46.149719,-107.448639],[46.144451,-107.462402],[46.1437,-107.464363],[46.143021,-107.466217],[46.14225,-107.468803],[46.142021,-107.46981],[46.141811,-107.470917],[46.14156,-107.472527],[46.141418,-107.473991],[46.141319,-107.478401],[46.141258,-107.485008],[46.141178,-107.488838],[46.141178,-107.49044],[46.141041,-107.493011],[46.140751,-107.495209],[46.13998,-107.499931],[46.139648,-107.502197],[46.138981,-107.506721],[46.138531,-107.509613],[46.138149,-107.512177],[46.137409,-107.516731],[46.13699,-107.520149],[46.136391,-107.524834],[46.135712,-107.532784],[46.135239,-107.536201],[46.13448,-107.539848],[46.133789,-107.542473],[46.1325,-107.546806],[46.132191,-107.547836],[46.131981,-107.548576],[46.13076,-107.553757],[46.130661,-107.554207],[46.13026,-107.556007],[46.12978,-107.558228],[46.129261,-107.560371],[46.128658,-107.562347],[46.127659,-107.565277],[46.126438,-107.568359],[46.12529,-107.57132],[46.123741,-107.575417],[46.122311,-107.578918],[46.121071,-107.58136],[46.120312,-107.582764],[46.119671,-107.584122],[46.118931,-107.585457],[46.118328,-107.587029],[46.116871,-107.589798],[46.115898,-107.591164],[46.11414,-107.593117],[46.112598,-107.594856],[46.105751,-107.602364],[46.10471,-107.603737],[46.103821,-107.605347],[46.103081,-107.60714],[46.102501,-107.609047],[46.10181,-107.612061],[46.101299,-107.613541],[46.100281,-107.615921],[46.099442,-107.61763],[46.09877,-107.619743],[46.09824,-107.622993],[46.097889,-107.625542],[46.097698,-107.626907],[46.097481,-107.628448],[46.097229,-107.629517],[46.096668,-107.631088],[46.094559,-107.634483],[46.093681,-107.636124],[46.09296,-107.638184],[46.092659,-107.63987],[46.092251,-107.643646],[46.091621,-107.650337],[46.091431,-107.651588],[46.091251,-107.652618],[46.09108,-107.65332],[46.09074,-107.654533],[46.090309,-107.655724],[46.089909,-107.656647],[46.089489,-107.657494],[46.08857,-107.659073],[46.08807,-107.659729],[46.086948,-107.661278],[46.084541,-107.664673],[46.08213,-107.668053],[46.081291,-107.669312],[46.0807,-107.670319],[46.07999,-107.671753],[46.079411,-107.673073],[46.078949,-107.674301],[46.07851,-107.675453],[46.077438,-107.677727],[46.076561,-107.679337],[46.07592,-107.680359],[46.074459,-107.682533],[46.071819,-107.686401],[46.07045,-107.688667],[46.069729,-107.690247],[46.069,-107.69207],[46.068611,-107.693176],[46.06831,-107.694298],[46.067379,-107.698174],[46.066399,-107.702187],[46.06575,-107.704964],[46.065552,-107.706299],[46.06546,-107.707047],[46.06501,-107.714561],[46.06485,-107.716202],[46.06451,-107.718071],[46.064171,-107.71962],[46.06374,-107.721207],[46.06319,-107.722794],[46.062481,-107.724503],[46.060791,-107.728279],[46.059891,-107.73053],[46.05928,-107.732338],[46.05875,-107.734177],[46.058041,-107.73661],[46.057301,-107.739227],[46.05629,-107.742683],[46.055389,-107.745827],[46.054939,-107.74736],[46.053661,-107.751846],[46.05349,-107.752457],[46.053009,-107.754066],[46.05204,-107.75753],[46.051529,-107.759239],[46.050289,-107.76368],[46.049671,-107.765869],[46.04932,-107.767593],[46.049122,-107.768883],[46.048981,-107.770172],[46.048809,-107.772926],[46.048649,-107.775887],[46.048458,-107.778961],[46.048279,-107.780502],[46.048069,-107.781982],[46.047821,-107.783058],[46.04755,-107.784058],[46.046928,-107.78582],[46.046329,-107.787163],[46.046188,-107.787514],[46.045761,-107.788422],[46.04327,-107.793503],[46.04166,-107.796707],[46.041061,-107.797691],[46.040409,-107.79863],[46.03941,-107.799873],[46.038071,-107.801109],[46.036831,-107.802101],[46.034901,-107.803627],[46.032822,-107.805237],[46.03183,-107.806091],[46.03088,-107.807007],[46.029888,-107.808243],[46.029171,-107.809303],[46.02874,-107.810013],[46.028069,-107.811348],[46.027431,-107.812943],[46.02692,-107.814552],[46.02618,-107.818161],[46.025661,-107.8237],[46.024681,-107.833038],[46.02449,-107.834373],[46.02425,-107.835617],[46.023621,-107.837997],[46.023151,-107.839417],[46.02272,-107.840553],[46.022228,-107.841591],[46.0215,-107.84301],[46.02066,-107.844551],[46.020481,-107.844887],[46.01952,-107.846626],[46.018471,-107.848534],[46.01762,-107.850319],[46.016998,-107.851738],[46.016491,-107.853149],[46.016109,-107.85424],[46.015652,-107.855888],[46.015369,-107.856934],[46.01519,-107.857918],[46.014801,-107.859871],[46.01458,-107.861549],[46.014469,-107.863083],[46.01442,-107.863533],[46.014332,-107.864433],[46.01432,-107.865311],[46.01429,-107.866348],[46.014389,-107.87088],[46.01429,-107.872704],[46.014111,-107.874107],[46.014019,-107.874634],[46.01363,-107.876266],[46.013401,-107.876984],[46.013,-107.878166],[46.012459,-107.879402],[46.011959,-107.880531],[46.011471,-107.881599],[46.01099,-107.88266],[46.010509,-107.883553],[46.01012,-107.884438],[46.009541,-107.885674],[46.00906,-107.886902],[46.00864,-107.888206],[46.007641,-107.891777],[46.00671,-107.895058],[46.00639,-107.896042],[46.005989,-107.897011],[46.004631,-107.90036],[46.004021,-107.902161],[46.003559,-107.903954],[46.003151,-107.906441],[46.002941,-107.90815],[46.002869,-107.91021],[46.00285,-107.910652],[46.002819,-107.914124],[46.00275,-107.916412],[46.002621,-107.919006],[46.00235,-107.921227],[46.001942,-107.923424],[46.001331,-107.925583],[46.000778,-107.927147],[46.000141,-107.928703],[45.998199,-107.933319],[45.99527,-107.940239],[45.994709,-107.941757],[45.99416,-107.94368],[45.99379,-107.945312],[45.993561,-107.946716],[45.993481,-107.94735],[45.992821,-107.952667],[45.992779,-107.953148],[45.99136,-107.965073],[45.98901,-107.981987],[45.988499,-107.984741],[45.98769,-107.988007],[45.987289,-107.989433],[45.98666,-107.991348],[45.98605,-107.993042],[45.98521,-107.99527],[45.984859,-107.996147],[45.983749,-107.999023],[45.982971,-108.000969],[45.978989,-108.011177],[45.97604,-108.018761],[45.973419,-108.025543],[45.972179,-108.028671],[45.967789,-108.039948],[45.967621,-108.040367],[45.96719,-108.041489],[45.966621,-108.04335],[45.96619,-108.045174],[45.96587,-108.046837],[45.964378,-108.058853],[45.96434,-108.059311],[45.963051,-108.069717],[45.96212,-108.077026],[45.96159,-108.08136],[45.960499,-108.090279],[45.959541,-108.097748],[45.959351,-108.098969],[45.95911,-108.100189],[45.958771,-108.10154],[45.958389,-108.102867],[45.958191,-108.10347],[45.957581,-108.105118],[45.956848,-108.106857],[45.952099,-108.118538],[45.951481,-108.12014],[45.94928,-108.125557],[45.947289,-108.130417],[45.944839,-108.136429],[45.94392,-108.138687],[45.941719,-108.14415],[45.93977,-108.148933],[45.939579,-108.149406],[45.937969,-108.153397],[45.93755,-108.154449],[45.93615,-108.157822],[45.93264,-108.166473],[45.932159,-108.167702],[45.931671,-108.169052],[45.930859,-108.171516],[45.92873,-108.179298],[45.92765,-108.183281],[45.926529,-108.187447],[45.92482,-108.193771],[45.923161,-108.199829],[45.919659,-108.212708],[45.916691,-108.22364],[45.914299,-108.232452],[45.91301,-108.237167],[45.912922,-108.237534],[45.910992,-108.244652],[45.910629,-108.245857],[45.910179,-108.247192],[45.90966,-108.248528],[45.909088,-108.249763],[45.908501,-108.250923],[45.90435,-108.258377],[45.89994,-108.266373],[45.898651,-108.269112],[45.897869,-108.271004],[45.897121,-108.273018],[45.896549,-108.274849],[45.896011,-108.276627],[45.895302,-108.279518],[45.894341,-108.283379],[45.892441,-108.291191],[45.891998,-108.292686],[45.891499,-108.294167],[45.89082,-108.295708],[45.888458,-108.300552],[45.887501,-108.302597],[45.887001,-108.303627],[45.886189,-108.30529],[45.884628,-108.308472],[45.884418,-108.308884],[45.882431,-108.312866],[45.881649,-108.314568],[45.880989,-108.31588],[45.879581,-108.318787],[45.878139,-108.321762],[45.875172,-108.327766],[45.873829,-108.330513],[45.873089,-108.332153],[45.872299,-108.333633],[45.868851,-108.340721],[45.865261,-108.348083],[45.862709,-108.353287],[45.861568,-108.355591],[45.86076,-108.357033],[45.86021,-108.357979],[45.8596,-108.358963],[45.858639,-108.360336],[45.857929,-108.361313],[45.857269,-108.362213],[45.856522,-108.363113],[45.855461,-108.364288],[45.854408,-108.365402],[45.850601,-108.369377],[45.849281,-108.370789],[45.84586,-108.374352],[45.844292,-108.375999],[45.840839,-108.379623],[45.838268,-108.382301],[45.837189,-108.383453],[45.836819,-108.383842],[45.834351,-108.386391],[45.830681,-108.390244],[45.830109,-108.3909],[45.829559,-108.391518],[45.82885,-108.392471],[45.82848,-108.393013],[45.828121,-108.393623],[45.827042,-108.395302],[45.82629,-108.3965],[45.8204,-108.405769],[45.817871,-108.409821],[45.81535,-108.413757],[45.815048,-108.41423],[45.814129,-108.415688],[45.81356,-108.416641],[45.812851,-108.417892],[45.812229,-108.419052],[45.811699,-108.420174],[45.808208,-108.426872],[45.807678,-108.42794],[45.80724,-108.428947],[45.806839,-108.429916],[45.806469,-108.430977],[45.805672,-108.433548],[45.80534,-108.434509],[45.80497,-108.435699],[45.804581,-108.436798],[45.804119,-108.437973],[45.798222,-108.452797],[45.79776,-108.453972],[45.797279,-108.455147],[45.79678,-108.456367],[45.796242,-108.457817],[45.795879,-108.459084],[45.79554,-108.460297],[45.79517,-108.461937],[45.79335,-108.469482],[45.79253,-108.472931],[45.7924,-108.473534],[45.79208,-108.474693],[45.791729,-108.475739],[45.791302,-108.47673],[45.790791,-108.477661],[45.790199,-108.478554],[45.789558,-108.479301],[45.78886,-108.47998],[45.788029,-108.480591],[45.787251,-108.48101],[45.786419,-108.4814],[45.782921,-108.482971],[45.77599,-108.486076],[45.77507,-108.486458],[45.774151,-108.486763],[45.773701,-108.486893],[45.77314,-108.487022],[45.772629,-108.487099],[45.77169,-108.487213],[45.770451,-108.487396],[45.769829,-108.487503],[45.769402,-108.487671],[45.767891,-108.488136],[45.768009,-108.488739],[45.768188,-108.489403],[45.768452,-108.490051],[45.768848,-108.490753],[45.769798,-108.49173],[45.770741,-108.492653],[45.771099,-108.492996],[45.772449,-108.494308],[45.773319,-108.495178],[45.77417,-108.49601],[45.77504,-108.496849],[45.775909,-108.497719],[45.77676,-108.498573],[45.777611,-108.49939],[45.7785,-108.500221],[45.779308,-108.501083],[45.78017,-108.501953],[45.781021,-108.502808],[45.78146,-108.503212],[45.781818,-108.503601],[45.782421,-108.502403],[45.78299,-108.501167],[45.783249,-108.500664],[45.78363,-108.499908],[45.78447,-108.500816],[45.783878,-108.502068],[45.78326,-108.503311],[45.782669,-108.504471],[45.782631,-108.504539],[45.78178,-108.503693],[45.781399,-108.503319],[45.780979,-108.502892],[45.780121,-108.502052],[45.779251,-108.501213],[45.778419,-108.500366],[45.777538,-108.499527],[45.77668,-108.498703],[45.775829,-108.497864],[45.774971,-108.496979],[45.774101,-108.496147],[45.773251,-108.495323],[45.772381,-108.494453],[45.771519,-108.493652],[45.770672,-108.492813],[45.769798,-108.49189],[45.76918,-108.491333],[45.76878,-108.490868],[45.768379,-108.490128],[45.768089,-108.489433],[45.767921,-108.488808],[45.76778,-108.488159],[45.766441,-108.488228],[45.76561,-108.488289],[45.765041,-108.48835],[45.764629,-108.488426],[45.76329,-108.489029],[45.762421,-108.489571],[45.7617,-108.490059],[45.76099,-108.490623],[45.760269,-108.491272],[45.759621,-108.491913],[45.758991,-108.492577],[45.758389,-108.493279],[45.757809,-108.494049],[45.757099,-108.495071],[45.756519,-108.49601],[45.755981,-108.496948],[45.755508,-108.497879],[45.75507,-108.498848],[45.754601,-108.499924],[45.75423,-108.500931],[45.75388,-108.502037],[45.753551,-108.503159],[45.753311,-108.504143],[45.75309,-108.505173],[45.752892,-108.506233],[45.752739,-108.507233],[45.752602,-108.508438],[45.75248,-108.50988],[45.752419,-108.511063],[45.752392,-108.513031],[45.752361,-108.518761],[45.752338,-108.52874],[45.752338,-108.529778],[45.7523,-108.540688],[45.7523,-108.542],[45.7523,-108.542709],[45.752289,-108.546547],[45.75227,-108.547401],[45.752209,-108.548332],[45.75211,-108.549187],[45.751949,-108.550102],[45.751709,-108.550888],[45.751541,-108.551453],[45.751331,-108.552017],[45.75095,-108.553131],[45.74984,-108.556183],[45.749699,-108.556648],[45.749538,-108.55732],[45.749439,-108.558083],[45.749359,-108.559021],[45.749352,-108.559868],[45.74939,-108.560654],[45.749699,-108.563606],[45.749779,-108.564522],[45.74979,-108.565643],[45.749802,-108.566208],[45.74976,-108.566772],[45.7495,-108.568024],[45.749168,-108.569107],[45.748791,-108.570007],[45.74844,-108.570763],[45.74778,-108.572113],[45.735748,-108.596962],[45.735279,-108.597878],[45.732578,-108.603477],[45.729191,-108.610527],[45.727009,-108.614983],[45.726749,-108.615501],[45.725201,-108.618698],[45.723598,-108.621971],[45.721298,-108.626122],[45.70969,-108.650032],[45.70562,-108.658363],[45.705349,-108.65892],[45.699532,-108.670921],[45.69878,-108.672462],[45.697788,-108.674294],[45.697029,-108.675697],[45.695148,-108.679062],[45.68718,-108.695686],[45.687031,-108.696007],[45.685631,-108.698952],[45.685322,-108.699707],[45.684952,-108.700813],[45.68425,-108.702858],[45.683262,-108.705719],[45.683109,-108.706177],[45.681881,-108.709892],[45.681301,-108.711647],[45.67894,-108.718559],[45.677799,-108.721672],[45.67659,-108.724907],[45.667488,-108.749046],[45.667191,-108.749947],[45.666939,-108.750717],[45.666698,-108.751602],[45.6665,-108.752541],[45.666279,-108.753532],[45.66457,-108.762238],[45.66431,-108.763443],[45.664181,-108.763931],[45.66378,-108.765823],[45.663719,-108.766144],[45.66367,-108.766609],[45.663681,-108.766937],[45.663738,-108.767303],[45.663872,-108.767769],[45.664131,-108.768539],[45.664188,-108.768753],[45.66423,-108.769073],[45.66423,-108.76931],[45.6642,-108.769562],[45.664162,-108.769814],[45.663879,-108.770798],[45.663811,-108.77095],[45.663601,-108.770737],[45.663342,-108.770447],[45.662281,-108.76931],[45.660912,-108.767632],[45.660141,-108.7668],[45.659489,-108.76606],[45.65852,-108.7649],[45.657509,-108.763733],[45.65723,-108.763428],[45.65554,-108.761597],[45.654591,-108.76046],[45.653481,-108.759117],[45.65284,-108.758423],[45.652519,-108.758087],[45.65202,-108.757698],[45.651642,-108.757431],[45.6511,-108.757133],[45.650681,-108.756943],[45.65015,-108.756737],[45.649719,-108.756653],[45.649231,-108.756569],[45.64872,-108.756561],[45.64822,-108.756592],[45.647739,-108.756668],[45.647388,-108.756737],[45.646568,-108.757027],[45.646309,-108.757149],[45.644379,-108.758003],[45.644161,-108.758133],[45.643909,-108.758331],[45.643661,-108.758614],[45.64344,-108.758904],[45.643269,-108.759193],[45.643108,-108.759529],[45.64278,-108.760307],[45.64267,-108.760551],[45.64249,-108.760887],[45.64233,-108.761124],[45.642052,-108.761436],[45.641781,-108.761703],[45.641472,-108.761909],[45.640862,-108.762253],[45.639931,-108.762756],[45.63937,-108.763153],[45.638931,-108.763496],[45.63842,-108.763977],[45.636459,-108.766197],[45.63567,-108.767067],[45.634972,-108.76783],[45.634178,-108.768707],[45.633678,-108.769279],[45.633492,-108.769478],[45.63324,-108.769783],[45.631321,-108.771896],[45.63023,-108.773117],[45.628792,-108.774719],[45.627121,-108.776573],[45.624981,-108.778954],[45.624699,-108.779282],[45.62204,-108.782227],[45.619709,-108.784782],[45.617359,-108.78743],[45.61533,-108.789673],[45.61409,-108.791061],[45.610241,-108.795341],[45.608662,-108.797081],[45.606361,-108.79966],[45.603039,-108.80336],[45.599461,-108.807358],[45.596889,-108.810188],[45.595909,-108.811317],[45.59446,-108.812881],[45.591751,-108.815933],[45.58992,-108.81797],[45.58931,-108.818626],[45.588501,-108.819527],[45.586868,-108.821358],[45.583099,-108.825523],[45.580551,-108.8284],[45.57793,-108.831261],[45.577702,-108.831551],[45.577229,-108.832077],[45.57663,-108.832657],[45.576149,-108.833153],[45.57542,-108.833771],[45.574799,-108.834244],[45.574181,-108.834679],[45.5732,-108.835274],[45.57225,-108.835739],[45.570572,-108.836372],[45.566841,-108.837769],[45.56102,-108.839882],[45.556671,-108.841454],[45.55637,-108.841583],[45.553261,-108.842743],[45.54948,-108.844131],[45.548168,-108.84465],[45.547199,-108.845001],[45.54475,-108.845871],[45.541531,-108.847076],[45.541271,-108.847183],[45.54044,-108.84745],[45.53949,-108.847816],[45.537941,-108.848381],[45.536091,-108.849083],[45.534191,-108.849762],[45.533539,-108.850014],[45.531181,-108.850899],[45.53001,-108.851334],[45.529678,-108.851463],[45.529331,-108.851608],[45.528889,-108.851807],[45.528419,-108.852097],[45.527729,-108.852547],[45.52681,-108.853271],[45.526218,-108.853867],[45.525822,-108.854317],[45.525452,-108.85479],[45.525108,-108.855263],[45.524719,-108.855827],[45.52449,-108.856232],[45.524029,-108.85704],[45.52388,-108.85743],[45.52367,-108.857857],[45.52351,-108.858231],[45.523338,-108.85865],[45.52317,-108.859123],[45.52298,-108.859718],[45.522541,-108.861137],[45.52232,-108.861847],[45.521832,-108.861908],[45.52182,-108.861923],[45.519951,-108.86219],[45.51931,-108.862297],[45.518108,-108.862518],[45.517639,-108.862587],[45.516819,-108.862717],[45.5163,-108.862823],[45.515461,-108.862961],[45.514179,-108.863083],[45.51305,-108.863167],[45.511921,-108.86319],[45.50938,-108.863197],[45.50819,-108.863197],[45.5005,-108.863136],[45.497349,-108.863136],[45.493679,-108.863129],[45.49313,-108.863098],[45.489079,-108.86306],[45.487862,-108.863083],[45.48772,-108.863068],[45.485359,-108.863037],[45.482819,-108.86306],[45.48222,-108.863022],[45.481991,-108.863029],[45.479141,-108.863029],[45.47776,-108.863037],[45.475521,-108.863022],[45.475201,-108.863022],[45.472469,-108.863022],[45.47068,-108.862984],[45.46719,-108.862968],[45.465919,-108.862984],[45.464581,-108.862953],[45.460838,-108.862923],[45.45937,-108.862923],[45.457851,-108.862877],[45.45694,-108.862907],[45.456081,-108.862938],[45.45536,-108.863007],[45.45472,-108.863083],[45.453918,-108.863167],[45.452019,-108.863564],[45.450401,-108.863907],[45.449459,-108.864143],[45.448761,-108.864227],[45.447281,-108.864357],[45.446159,-108.864433],[45.44379,-108.864571],[45.442478,-108.864647],[45.440269,-108.864761],[45.437462,-108.864952],[45.43684,-108.865044],[45.43634,-108.865173],[45.435669,-108.865471],[45.435341,-108.8657],[45.43483,-108.866051],[45.434341,-108.866547],[45.432541,-108.868973],[45.42889,-108.873932],[45.428379,-108.874634],[45.427929,-108.875191],[45.426609,-108.87664],[45.424992,-108.878166],[45.42276,-108.880402],[45.421959,-108.881172],[45.420311,-108.882812],[45.41906,-108.884087],[45.416,-108.887123],[45.413799,-108.88932],[45.40789,-108.895264],[45.401939,-108.901154],[45.40044,-108.902611],[45.399891,-108.903053],[45.398991,-108.903633],[45.396019,-108.905121],[45.394859,-108.905724],[45.394451,-108.905937],[45.39386,-108.90625],[45.392818,-108.906776],[45.391769,-108.907288],[45.391258,-108.907547],[45.390739,-108.907829],[45.39019,-108.908096],[45.389141,-108.908638],[45.386669,-108.909843],[45.384521,-108.910957],[45.3843,-108.911079],[45.38052,-108.91301],[45.377361,-108.914597],[45.37431,-108.916351],[45.36655,-108.920799],[45.36401,-108.922234],[45.3629,-108.922791],[45.36224,-108.922997],[45.361439,-108.923149],[45.36071,-108.923187],[45.359982,-108.923111],[45.35931,-108.922989],[45.358742,-108.922798],[45.35804,-108.922432],[45.357029,-108.921822],[45.355869,-108.921051],[45.353531,-108.919441],[45.352859,-108.919006],[45.351978,-108.918449],[45.350159,-108.917236],[45.348541,-108.916283],[45.34742,-108.915863],[45.34639,-108.915581],[45.34528,-108.915428],[45.343922,-108.915443],[45.342739,-108.915604],[45.341702,-108.915894],[45.340599,-108.916183],[45.339142,-108.916557],[45.33839,-108.916748],[45.33778,-108.916908],[45.337139,-108.917023],[45.33667,-108.917],[45.33622,-108.916962],[45.335869,-108.916878],[45.33532,-108.916733],[45.33485,-108.916389],[45.333031,-108.915337],[45.332001,-108.914688],[45.331211,-108.914352],[45.33041,-108.914169],[45.329639,-108.914093],[45.326309,-108.91407],[45.322842,-108.914032],[45.319248,-108.914093],[45.312061,-108.91407],[45.304741,-108.91407],[45.299129,-108.914124],[45.298092,-108.914101],[45.297611,-108.914177],[45.29673,-108.914223],[45.2957,-108.914253],[45.294659,-108.914268],[45.293579,-108.91423],[45.292889,-108.91423],[45.29248,-108.914253],[45.292091,-108.914299],[45.29187,-108.914368],[45.29174,-108.914383],[45.290981,-108.914627],[45.290241,-108.914902],[45.28981,-108.915199],[45.289051,-108.915863],[45.28825,-108.916489],[45.28767,-108.91687],[45.28714,-108.917183],[45.28653,-108.917412],[45.286091,-108.917542],[45.2854,-108.917664],[45.279369,-108.918053],[45.277431,-108.918159],[45.27634,-108.918228],[45.27549,-108.918289],[45.274799,-108.918282],[45.274559,-108.918243],[45.273899,-108.918137],[45.27356,-108.918098],[45.273281,-108.918022],[45.272831,-108.917862],[45.27232,-108.917679],[45.271912,-108.917427],[45.271141,-108.916962],[45.27047,-108.916473],[45.26873,-108.914993],[45.26709,-108.913597],[45.2649,-108.911789],[45.264389,-108.911346],[45.26363,-108.910721],[45.263378,-108.910477],[45.26263,-108.909859],[45.261711,-108.909332],[45.26141,-108.909187],[45.261021,-108.909012],[45.260571,-108.90889],[45.258671,-108.908524],[45.25771,-108.908234],[45.25737,-108.908073],[45.256741,-108.90789],[45.256191,-108.907654],[45.25573,-108.907417],[45.25507,-108.907043],[45.254269,-108.906487],[45.252281,-108.905128],[45.250408,-108.903877],[45.248669,-108.902649],[45.246849,-108.901443],[45.244049,-108.899551],[45.241329,-108.89769],[45.239429,-108.8964],[45.238239,-108.895477],[45.237091,-108.894493],[45.235641,-108.893227],[45.232899,-108.890717],[45.231781,-108.889801],[45.229519,-108.887787],[45.227509,-108.885986],[45.225849,-108.884537],[45.221882,-108.881027],[45.21888,-108.878357],[45.21637,-108.876137],[45.213848,-108.873917],[45.211689,-108.872009],[45.20858,-108.869308],[45.20554,-108.866623],[45.202641,-108.864021],[45.199829,-108.861603],[45.196789,-108.858902],[45.19405,-108.856483],[45.193352,-108.855881],[45.19202,-108.854691],[45.190449,-108.853317],[45.187511,-108.850731],[45.184391,-108.848007],[45.182911,-108.846672],[45.181938,-108.845833],[45.180321,-108.844414],[45.176899,-108.841393],[45.174858,-108.839569],[45.172771,-108.837738],[45.171848,-108.836929],[45.170471,-108.835709],[45.169949,-108.835243],[45.169159,-108.834412],[45.16851,-108.833679],[45.167271,-108.832047],[45.162201,-108.825203],[45.156422,-108.817383],[45.154812,-108.815224],[45.153881,-108.813843],[45.152908,-108.812309],[45.15168,-108.81012],[45.150928,-108.808609],[45.140911,-108.786743],[45.140499,-108.785919],[45.140091,-108.785004],[45.13953,-108.783783],[45.138802,-108.782417],[45.138229,-108.781464],[45.137329,-108.78022],[45.136082,-108.778748],[45.134201,-108.776649],[45.133492,-108.775719],[45.132938,-108.774696],[45.13242,-108.773537],[45.132069,-108.772507],[45.13179,-108.771637],[45.131569,-108.770668],[45.131451,-108.769562],[45.13139,-108.768097],[45.131351,-108.767197],[45.131271,-108.766083],[45.131039,-108.764557],[45.130829,-108.76355],[45.130569,-108.762482],[45.130211,-108.761436],[45.12973,-108.76033],[45.1287,-108.758774],[45.128132,-108.758133],[45.125919,-108.755867],[45.125149,-108.755074],[45.120239,-108.750153],[45.11845,-108.748329],[45.1166,-108.746109],[45.113979,-108.742897],[45.111992,-108.740517],[45.10722,-108.734718],[45.106419,-108.733803],[45.10564,-108.732971],[45.104141,-108.731621],[45.102852,-108.730583],[45.101749,-108.729668],[45.099529,-108.727829],[45.098911,-108.727226],[45.098389,-108.726662],[45.09729,-108.725143],[45.08569,-108.70916],[45.072929,-108.687401],[45.07217,-108.68573],[45.070061,-108.680573],[45.067131,-108.6735],[45.066078,-108.670937],[45.064869,-108.667923],[45.064121,-108.666161],[45.063969,-108.665787],[45.063622,-108.664948],[45.062489,-108.662193],[45.061859,-108.660667],[45.061249,-108.659698],[45.060669,-108.65905],[45.060261,-108.658661],[45.05991,-108.658333],[45.059368,-108.658073],[45.05891,-108.657829],[45.058411,-108.657639],[45.05743,-108.657173],[45.054958,-108.656067],[45.05267,-108.65506],[45.04837,-108.65316],[45.047562,-108.65274],[45.047031,-108.652382],[45.04567,-108.651337],[45.041821,-108.647949],[45.03677,-108.643478],[45.033131,-108.640266],[45.031929,-108.639183],[45.029308,-108.636864],[45.027908,-108.63562],[45.026249,-108.634178],[45.024231,-108.632347],[45.023319,-108.631622],[45.022308,-108.630951],[45.021259,-108.630386],[45.019161,-108.629387],[45.01622,-108.628029],[45.014069,-108.627029],[45.011971,-108.626022],[45.0098,-108.624977],[45.009201,-108.624741],[45.007771,-108.624077],[45.007278,-108.623863],[45.006371,-108.623428],[45.005299,-108.623016],[45.004341,-108.622726],[45.003151,-108.62252],[45.00177,-108.622414],[45.001011,-108.622452],[45.000332,-108.622543],[44.998871,-108.622803],[44.99728,-108.623154],[44.996578,-108.623291],[44.99501,-108.623421],[44.99408,-108.623337],[44.99192,-108.622864],[44.988918,-108.622597],[44.987701,-108.622498],[44.985291,-108.622276],[44.98457,-108.622253],[44.984039,-108.622208],[44.98315,-108.622147],[44.97818,-108.621719],[44.97784,-108.621719],[44.977699,-108.62159],[44.97683,-108.621559],[44.97662,-108.621559],[44.971401,-108.621391],[44.97126,-108.621384],[44.970741,-108.621368],[44.970341,-108.621361],[44.969269,-108.621292],[44.968658,-108.621323],[44.967991,-108.621353],[44.96701,-108.621384],[44.966888,-108.621513],[44.965931,-108.621536],[44.962379,-108.621536],[44.96014,-108.621536],[44.95882,-108.621536],[44.947811,-108.621468],[44.944099,-108.62146],[44.9426,-108.621384],[44.940201,-108.621262],[44.939819,-108.621239],[44.936199,-108.621002],[44.935699,-108.620987],[44.92971,-108.620903],[44.92712,-108.620903],[44.924839,-108.620903],[44.922581,-108.620773],[44.922352,-108.620697],[44.921871,-108.620644],[44.921791,-108.620613],[44.920841,-108.620277],[44.920738,-108.620209],[44.919651,-108.619453],[44.919189,-108.619003],[44.917919,-108.617767],[44.917252,-108.616837],[44.91394,-108.610847],[44.910881,-108.605423],[44.910702,-108.605141],[44.909828,-108.603813],[44.90921,-108.603127],[44.907471,-108.601883],[44.90691,-108.601624],[44.90686,-108.601517],[44.905849,-108.601196],[44.90414,-108.601196],[44.903191,-108.601311],[44.901562,-108.601517],[44.899731,-108.601517],[44.899071,-108.601387],[44.898491,-108.601097],[44.897758,-108.600548],[44.89687,-108.599617],[44.895981,-108.598358],[44.89502,-108.596786],[44.89444,-108.597717],[44.894169,-108.598091],[44.893559,-108.59903],[44.89333,-108.599388],[44.893101,-108.60006],[44.891819,-108.60553],[44.89167,-108.606216],[44.889481,-108.616081],[44.888592,-108.620087],[44.88839,-108.620781],[44.887009,-108.625679],[44.885979,-108.629868],[44.88591,-108.630409],[44.88343,-108.640587],[44.882648,-108.643791],[44.881191,-108.649117],[44.8811,-108.649147],[44.8811,-108.649384],[44.879261,-108.654762],[44.879021,-108.655457],[44.877861,-108.658867],[44.877769,-108.658867],[44.877171,-108.660988],[44.87706,-108.661118],[44.876049,-108.663887],[44.875481,-108.666138],[44.87495,-108.669762],[44.874619,-108.671242],[44.87458,-108.671722],[44.874569,-108.671913],[44.874569,-108.67218],[44.87455,-108.67289],[44.874512,-108.674767],[44.874371,-108.675789],[44.87434,-108.675987],[44.873859,-108.677513],[44.872742,-108.679207],[44.872379,-108.679604],[44.871071,-108.680603],[44.87096,-108.680794],[44.870659,-108.680847],[44.870251,-108.681053],[44.869499,-108.681396],[44.86924,-108.681488],[44.868839,-108.681633],[44.864922,-108.683067],[44.864811,-108.683243],[44.86451,-108.683327],[44.862801,-108.683884],[44.852901,-108.683907],[44.844189,-108.683884],[44.843761,-108.683884],[44.839458,-108.683853],[44.837521,-108.683884],[44.83654,-108.684013],[44.83548,-108.684357],[44.83448,-108.685089],[44.83363,-108.685707],[44.833519,-108.685966],[44.833359,-108.685997],[44.831291,-108.687477],[44.8297,-108.688629],[44.828671,-108.68924],[44.82378,-108.69062],[44.823761,-108.69075],[44.82346,-108.69072],[44.82045,-108.691521],[44.82045,-108.69165],[44.820129,-108.69165],[44.818619,-108.692039],[44.81723,-108.692009],[44.81715,-108.692001],[44.815639,-108.69165],[44.81485,-108.6912],[44.814159,-108.69104],[44.814072,-108.69075],[44.81266,-108.689583],[44.81226,-108.68924],[44.81123,-108.688087],[44.80941,-108.686043],[44.79818,-108.673447],[44.79789,-108.673363],[44.79784,-108.673103],[44.79163,-108.666122],[44.78981,-108.664078],[44.78801,-108.662064],[44.787762,-108.661781],[44.787552,-108.661583],[44.78746,-108.661499],[44.786709,-108.661003],[44.78616,-108.660767],[44.785591,-108.660683],[44.785061,-108.660622],[44.783119,-108.660583],[44.782921,-108.660583],[44.78199,-108.660591],[44.781689,-108.660606],[44.781059,-108.66082],[44.780479,-108.661247],[44.779888,-108.661827],[44.77916,-108.663002],[44.7784,-108.664864],[44.778271,-108.665138],[44.777699,-108.666817],[44.776829,-108.669662],[44.77409,-108.678589],[44.772751,-108.683456],[44.772541,-108.684227],[44.771832,-108.68708],[44.771778,-108.687263],[44.771641,-108.687798],[44.77132,-108.688942],[44.768471,-108.698967],[44.76799,-108.70079],[44.762661,-108.719078],[44.760689,-108.725517],[44.756821,-108.738419],[44.756569,-108.739349],[44.756069,-108.741173],[44.75589,-108.741798],[44.755589,-108.742882],[44.755112,-108.744598],[44.754601,-108.746361],[44.754059,-108.748177],[44.753731,-108.749153],[44.753479,-108.75013],[44.753021,-108.751617],[44.752899,-108.752052],[44.752651,-108.753052],[44.752312,-108.754539],[44.751881,-108.756058],[44.7514,-108.757599],[44.75098,-108.758926],[44.750549,-108.760368],[44.750278,-108.761322],[44.750149,-108.761757],[44.750038,-108.762161],[44.749691,-108.763489],[44.749458,-108.764183],[44.749222,-108.764778],[44.748798,-108.765961],[44.74847,-108.767036],[44.74789,-108.769119],[44.747601,-108.770088],[44.746529,-108.773773],[44.744652,-108.780022],[44.74374,-108.783073],[44.741638,-108.790123],[44.738819,-108.800034],[44.73275,-108.820686],[44.731449,-108.82518],[44.73127,-108.825783],[44.726959,-108.840591],[44.726299,-108.842781],[44.725971,-108.844093],[44.725071,-108.847237],[44.724689,-108.848534],[44.7243,-108.849792],[44.724079,-108.851303],[44.723919,-108.852524],[44.723339,-108.853981],[44.722931,-108.854584],[44.72237,-108.855247],[44.72171,-108.855797],[44.72081,-108.856102],[44.71999,-108.856422],[44.719009,-108.85746],[44.718479,-108.858521],[44.71838,-108.858788],[44.717911,-108.860138],[44.71701,-108.862534],[44.71619,-108.864609],[44.714748,-108.867653],[44.713131,-108.871147],[44.711189,-108.875366],[44.710529,-108.876747],[44.70219,-108.894531],[44.701569,-108.895821],[44.6992,-108.900917],[44.698002,-108.902863],[44.694981,-108.907204],[44.69376,-108.908951],[44.689899,-108.914642],[44.689529,-108.915199],[44.688129,-108.917236],[44.6875,-108.918091],[44.68655,-108.919273],[44.685749,-108.920067],[44.683929,-108.922112],[44.68383,-108.922142],[44.68137,-108.92466],[44.680752,-108.925346],[44.67889,-108.927261],[44.677799,-108.928436],[44.677132,-108.929153],[44.6735,-108.933037],[44.672878,-108.933731],[44.672699,-108.933929],[44.672501,-108.934143],[44.66787,-108.939003],[44.666279,-108.940727],[44.660912,-108.94648],[44.659279,-108.947998],[44.65723,-108.94931],[44.65707,-108.949371],[44.65588,-108.949852],[44.65329,-108.950577],[44.652039,-108.950996],[44.644112,-108.953102],[44.639629,-108.954323],[44.637821,-108.954872],[44.637699,-108.954903],[44.635399,-108.955513],[44.634411,-108.955688],[44.633202,-108.955887],[44.632938,-108.955902],[44.63176,-108.955933],[44.630501,-108.955933],[44.628132,-108.955917],[44.62495,-108.955803],[44.62418,-108.955963],[44.623058,-108.956444],[44.622211,-108.956871],[44.619492,-108.957878],[44.611679,-108.960747],[44.607971,-108.962158],[44.607029,-108.962517],[44.60387,-108.963737],[44.603249,-108.963966],[44.602909,-108.964111],[44.600609,-108.964783],[44.597462,-108.965599],[44.59671,-108.965767],[44.595348,-108.966072],[44.591789,-108.966949],[44.589939,-108.967453],[44.58812,-108.967957],[44.585739,-108.968613],[44.584499,-108.968887],[44.583309,-108.969177],[44.581379,-108.969757],[44.580238,-108.970383],[44.577511,-108.972153],[44.57682,-108.972542],[44.576248,-108.972878],[44.57486,-108.973747],[44.573849,-108.97438],[44.572762,-108.975212],[44.57188,-108.976112],[44.569511,-108.979012],[44.56889,-108.979698],[44.5681,-108.980186],[44.567009,-108.980499],[44.562531,-108.980637],[44.55949,-108.98056],[44.55592,-108.980492],[44.551849,-108.98056],[44.550819,-108.980766],[44.54969,-108.981331],[44.548901,-108.982018],[44.547989,-108.982979],[44.54723,-108.984207],[44.54636,-108.985657],[44.54348,-108.990532],[44.54248,-108.992043],[44.54229,-108.992317],[44.54216,-108.992531],[44.541519,-108.993553],[44.540531,-108.995598],[44.539959,-108.996887],[44.538811,-108.999527],[44.538288,-109.000687],[44.538109,-109.001099],[44.537689,-109.002159],[44.535881,-109.006493],[44.53487,-109.008812],[44.534069,-109.010788],[44.533871,-109.011452],[44.533661,-109.01223],[44.533562,-109.012863],[44.533409,-109.014587],[44.533409,-109.014839],[44.533401,-109.015427],[44.533401,-109.0158],[44.533379,-109.018883],[44.53336,-109.020264],[44.53336,-109.020607],[44.533371,-109.020828],[44.533379,-109.02269],[44.533379,-109.02285],[44.533379,-109.024742],[44.53339,-109.027229],[44.53339,-109.029793],[44.533379,-109.031151],[44.533379,-109.031761],[44.533379,-109.03231],[44.533371,-109.033188],[44.53339,-109.036842],[44.53339,-109.037003],[44.533379,-109.040314],[44.53339,-109.040627],[44.533401,-109.041222],[44.533421,-109.042358],[44.533421,-109.042458],[44.533421,-109.043617],[44.533421,-109.044739],[44.533401,-109.046257],[44.533409,-109.047279],[44.533401,-109.049782],[44.53339,-109.051308],[44.533379,-109.053558],[44.53336,-109.054298],[44.533249,-109.054764],[44.533051,-109.055183],[44.532768,-109.055672],[44.532341,-109.056107],[44.532028,-109.056229],[44.531761,-109.05629],[44.531158,-109.056328],[44.53091,-109.056328],[44.530418,-109.056328],[44.52935,-109.056313],[44.52824,-109.056328],[44.52771,-109.056297],[44.527142,-109.056282],[44.52634,-109.056267],[44.52607,-109.056267],[44.526051,-109.058189],[44.526031,-109.060112],[44.526031,-109.062073],[44.526051,-109.063942],[44.526039,-109.065887],[44.526039,-109.067772],[44.526031,-109.069733],[44.526039,-109.07106],[44.525879,-109.071411],[44.525631,-109.071648],[44.525299,-109.071762],[44.524948,-109.071823],[44.523441,-109.071831],[44.522751,-109.071854],[44.522499,-109.071854],[44.521671,-109.071877],[44.52013,-109.07193],[44.519642,-109.071907],[44.518719,-109.07193],[44.5182,-109.071953],[44.51799,-109.071999],[44.517891,-109.072083],[44.517731,-109.072212],[44.517479,-109.072563],[44.517269,-109.073273],[44.5172,-109.073723],[44.517109,-109.074257],[44.516979,-109.074913],[44.516781,-109.075958],[44.516731,-109.076233],[44.51664,-109.076897],[44.516628,-109.077507],[44.516651,-109.078087],[44.51667,-109.0783],[44.516781,-109.079109],[44.516941,-109.079781],[44.51704,-109.080261],[44.517139,-109.080948],[44.517151,-109.081833],[44.517059,-109.082893],[44.516998,-109.083817],[44.516899,-109.084793],[44.516651,-109.08757],[44.516331,-109.090767],[44.516201,-109.091957],[44.51593,-109.093773],[44.515789,-109.094482],[44.515572,-109.095413],[44.51532,-109.096489],[44.515209,-109.096947],[44.51429,-109.10096],[44.514191,-109.10141],[44.51403,-109.102097],[44.513939,-109.102562],[44.512871,-109.108238],[44.51223,-109.111633],[44.512199,-109.111847],[44.511951,-109.11319],[44.51162,-109.114983],[44.511311,-109.116364],[44.511021,-109.117973],[44.51088,-109.118843],[44.510849,-109.119331],[44.510849,-109.119827],[44.510899,-109.120361],[44.511211,-109.121384],[44.511742,-109.122452],[44.51218,-109.123573],[44.51231,-109.123833],[44.512711,-109.124802],[44.512989,-109.125671],[44.513168,-109.12719],[44.513199,-109.127823],[44.513149,-109.128922],[44.513081,-109.129753],[44.512829,-109.131592],[44.51263,-109.132347],[44.51239,-109.133209],[44.51207,-109.133972],[44.5116,-109.13485],[44.51136,-109.135651],[44.511238,-109.136368],[44.510799,-109.139153],[44.51049,-109.141006],[44.510021,-109.143356],[44.509941,-109.143913],[44.509769,-109.145287],[44.509739,-109.146523],[44.50975,-109.147179],[44.509819,-109.147858],[44.51001,-109.149437],[44.510078,-109.149971],[44.510101,-109.150528],[44.510151,-109.151978],[44.510151,-109.152977],[44.510159,-109.153358],[44.510208,-109.15435],[44.510281,-109.154968],[44.510441,-109.15596],[44.510639,-109.157082],[44.510799,-109.158058],[44.510811,-109.158287],[44.51078,-109.15905],[44.510681,-109.15995],[44.510399,-109.161003],[44.510189,-109.161621],[44.509911,-109.16246],[44.509651,-109.16346],[44.50946,-109.164551],[44.509251,-109.166458],[44.509201,-109.169098],[44.509159,-109.170761],[44.509232,-109.172096],[44.509159,-109.173073],[44.509041,-109.174103],[44.50893,-109.17466],[44.50869,-109.175407],[44.5084,-109.176117],[44.507931,-109.176826],[44.507568,-109.177383],[44.506931,-109.178238],[44.504589,-109.18148],[44.50264,-109.184311],[44.50182,-109.185493],[44.501431,-109.186058],[44.501041,-109.186684],[44.500881,-109.187088],[44.500679,-109.187889],[44.50074,-109.188843],[44.50079,-109.189636],[44.501011,-109.190369],[44.501228,-109.191757],[44.501339,-109.192802],[44.501381,-109.194702],[44.50106,-109.196571],[44.50058,-109.198174],[44.50042,-109.198647],[44.499989,-109.199852],[44.49987,-109.201378],[44.499821,-109.202171],[44.499809,-109.204102],[44.499851,-109.206459],[44.49987,-109.220016],[44.499908,-109.222717],[44.499989,-109.223747],[44.50071,-109.228477],[44.50119,-109.232193],[44.501362,-109.23307],[44.501678,-109.234734],[44.501789,-109.235291],[44.502151,-109.236816],[44.502499,-109.238091],[44.502789,-109.239639],[44.503639,-109.242996],[44.503948,-109.244423],[44.505161,-109.25071],[44.505299,-109.251907],[44.50536,-109.253242],[44.50499,-109.258614],[44.504841,-109.260361],[44.504688,-109.261467],[44.504299,-109.265472],[44.50375,-109.269417],[44.502819,-109.275703],[44.502289,-109.279182],[44.50182,-109.282097],[44.501339,-109.283974],[44.50108,-109.284607],[44.500721,-109.285553],[44.500198,-109.286743],[44.498058,-109.291542],[44.49781,-109.292252],[44.497459,-109.293503],[44.49707,-109.295723],[44.496811,-109.296707],[44.496471,-109.297653],[44.495468,-109.299797],[44.493469,-109.304031],[44.493011,-109.30555],[44.492809,-109.306473],[44.49247,-109.308167],[44.491879,-109.309669],[44.489571,-109.314178],[44.488781,-109.315903],[44.488159,-109.31778],[44.48777,-109.319481],[44.48753,-109.321472],[44.487469,-109.325684],[44.487419,-109.330269],[44.487419,-109.331207],[44.487419,-109.331863],[44.487411,-109.333977],[44.487221,-109.335274],[44.4869,-109.336731],[44.486111,-109.340401],[44.48592,-109.341377],[44.485821,-109.342178],[44.48579,-109.344177],[44.485809,-109.344368],[44.486141,-109.347382],[44.486149,-109.348427],[44.48616,-109.349136],[44.486111,-109.349701],[44.485859,-109.352448],[44.48584,-109.352654],[44.48531,-109.356583],[44.48259,-109.372513],[44.48204,-109.375717],[44.47987,-109.387573],[44.479099,-109.391777],[44.478931,-109.392677],[44.47879,-109.393379],[44.47681,-109.402458],[44.475269,-109.410477],[44.47506,-109.411568],[44.474892,-109.412468],[44.474361,-109.415199],[44.47303,-109.420387],[44.471519,-109.426361],[44.470348,-109.431061],[44.469219,-109.434067],[44.468739,-109.435387],[44.46793,-109.437317],[44.467609,-109.437843],[44.466419,-109.440491],[44.465981,-109.441353],[44.465199,-109.442863],[44.46487,-109.44352],[44.464611,-109.444023],[44.463612,-109.445839],[44.462891,-109.447411],[44.462521,-109.448776],[44.462479,-109.449638],[44.462479,-109.449677],[44.462471,-109.451393],[44.462471,-109.454323],[44.462471,-109.455788],[44.462471,-109.456467],[44.462471,-109.457497],[44.462471,-109.461281],[44.46246,-109.462067],[44.46246,-109.463181],[44.46246,-109.465424],[44.46246,-109.469063],[44.462448,-109.473068],[44.462448,-109.475403],[44.462448,-109.478249],[44.46246,-109.480118],[44.46249,-109.483391],[44.462521,-109.485947],[44.46254,-109.488022],[44.462509,-109.493263],[44.462509,-109.495758],[44.462509,-109.497803],[44.462509,-109.498978],[44.462509,-109.499611],[44.462509,-109.49987],[44.462509,-109.500366],[44.462509,-109.502312],[44.462521,-109.505608],[44.462521,-109.508583],[44.462551,-109.518013],[44.46254,-109.519737],[44.46254,-109.520653],[44.462448,-109.521446],[44.46225,-109.522247],[44.46212,-109.522682],[44.461849,-109.523247],[44.460812,-109.524673],[44.460251,-109.525513],[44.460049,-109.526009],[44.459949,-109.52626],[44.45974,-109.527359],[44.459721,-109.528481],[44.46019,-109.530647],[44.460499,-109.532028],[44.460621,-109.533173],[44.460621,-109.533447],[44.460529,-109.535172],[44.460209,-109.539192],[44.460331,-109.541473],[44.460289,-109.542587],[44.459999,-109.543663],[44.459549,-109.544937],[44.45929,-109.546043],[44.459259,-109.54631],[44.459221,-109.547462],[44.459629,-109.550003],[44.459969,-109.551659],[44.46014,-109.55307],[44.46003,-109.557053],[44.459949,-109.558479],[44.4599,-109.558769],[44.459221,-109.56115],[44.459179,-109.561432],[44.459251,-109.563713],[44.459389,-109.566269],[44.459591,-109.567673],[44.459728,-109.568199],[44.459961,-109.569],[44.4603,-109.570061],[44.460449,-109.57061],[44.460629,-109.571449],[44.460732,-109.572021],[44.46109,-109.574738],[44.461151,-109.575188],[44.461269,-109.576118],[44.46133,-109.576569],[44.461472,-109.5774],[44.461811,-109.578743],[44.462181,-109.57975],[44.463188,-109.58197],[44.463539,-109.583031],[44.463791,-109.584396],[44.46386,-109.585243],[44.463871,-109.586082],[44.463799,-109.586906],[44.46365,-109.588623],[44.46294,-109.594841],[44.462631,-109.596199],[44.46204,-109.597702],[44.46133,-109.599098],[44.460838,-109.600372],[44.460579,-109.601463],[44.46051,-109.60231],[44.46072,-109.604271],[44.460979,-109.605949],[44.46143,-109.607559],[44.461578,-109.608063],[44.461941,-109.609413],[44.46273,-109.614326],[44.463291,-109.617767],[44.464409,-109.624229],[44.464451,-109.624458],[44.46484,-109.626877],[44.465,-109.627831],[44.465179,-109.628967],[44.465351,-109.630074],[44.465641,-109.631149],[44.466091,-109.632111],[44.467072,-109.63356],[44.467541,-109.634506],[44.467831,-109.63559],[44.467911,-109.636726],[44.467758,-109.638443],[44.467739,-109.640152],[44.467758,-109.640717],[44.467781,-109.642151],[44.467621,-109.64328],[44.467129,-109.644867],[44.466808,-109.645943],[44.466671,-109.647057],[44.466881,-109.650192],[44.46677,-109.651611],[44.466702,-109.651894],[44.466179,-109.653412],[44.464512,-109.658363],[44.463951,-109.660271],[44.463631,-109.661377],[44.463379,-109.662209],[44.463348,-109.662354],[44.462891,-109.664253],[44.46257,-109.666496],[44.462509,-109.668213],[44.462509,-109.668419],[44.46257,-109.669632],[44.462841,-109.671631],[44.462891,-109.671898],[44.462959,-109.672333],[44.463169,-109.673592],[44.46347,-109.675232],[44.463631,-109.676643],[44.463741,-109.678932],[44.464142,-109.681168],[44.46447,-109.682838],[44.464611,-109.684273],[44.46455,-109.686279],[44.46452,-109.687691],[44.464691,-109.689087],[44.464931,-109.690208],[44.465359,-109.691513],[44.466091,-109.692879],[44.467171,-109.694588],[44.467751,-109.695793],[44.46817,-109.697098],[44.468281,-109.697647],[44.468342,-109.697929],[44.468472,-109.699364],[44.468441,-109.700203],[44.46841,-109.70079],[44.468159,-109.702179],[44.467739,-109.703484],[44.467159,-109.704674],[44.465611,-109.70694],[44.465199,-109.707573],[44.464939,-109.708023],[44.464722,-109.708511],[44.464531,-109.709023],[44.46418,-109.710403],[44.463879,-109.711807],[44.4636,-109.712593],[44.46352,-109.71283],[44.463181,-109.713516],[44.462769,-109.714127],[44.462139,-109.714844],[44.460838,-109.715683],[44.459869,-109.716232],[44.459141,-109.716797],[44.458809,-109.717148],[44.458462,-109.717644],[44.458241,-109.717987],[44.457909,-109.718697],[44.457771,-109.719048],[44.457432,-109.720299],[44.457279,-109.721184],[44.45694,-109.723068],[44.456329,-109.72583],[44.456051,-109.727242],[44.456009,-109.727531],[44.45594,-109.728416],[44.455898,-109.728973],[44.455959,-109.730392],[44.45623,-109.732071],[44.456539,-109.733452],[44.457001,-109.734734],[44.4575,-109.735626],[44.458099,-109.736389],[44.458851,-109.737022],[44.45985,-109.737846],[44.46096,-109.73877],[44.46151,-109.73954],[44.462009,-109.740532],[44.462212,-109.741348],[44.462341,-109.742477],[44.462299,-109.743347],[44.46209,-109.744461],[44.461689,-109.745483],[44.461128,-109.74633],[44.460449,-109.746964],[44.459671,-109.747353],[44.459251,-109.747459],[44.458248,-109.747688],[44.45726,-109.748047],[44.45631,-109.748596],[44.45541,-109.749359],[44.454609,-109.750267],[44.453911,-109.751297],[44.453239,-109.752731],[44.453201,-109.752831],[44.453041,-109.753227],[44.452881,-109.753777],[44.45282,-109.754059],[44.45274,-109.754639],[44.452709,-109.755234],[44.452801,-109.756378],[44.4529,-109.756813],[44.453011,-109.757156],[44.453171,-109.757599],[44.453381,-109.758141],[44.45348,-109.758377],[44.45385,-109.759308],[44.454071,-109.759903],[44.454601,-109.761757],[44.455029,-109.762848],[44.455101,-109.763023],[44.455509,-109.76371],[44.45575,-109.764107],[44.456902,-109.76535],[44.457729,-109.766182],[44.458302,-109.76696],[44.458698,-109.767891],[44.4589,-109.768913],[44.45903,-109.770752],[44.459099,-109.771988],[44.459061,-109.772881],[44.458889,-109.773788],[44.458679,-109.774437],[44.458542,-109.774841],[44.458389,-109.775352],[44.458099,-109.776016],[44.45779,-109.776627],[44.45665,-109.778633],[44.45639,-109.77906],[44.455238,-109.780739],[44.45454,-109.781807],[44.4538,-109.783203],[44.453239,-109.784737],[44.45285,-109.786369],[44.45266,-109.788033],[44.452599,-109.789421],[44.452648,-109.79026],[44.452702,-109.790817],[44.45277,-109.791382],[44.453049,-109.792763],[44.45319,-109.793243],[44.453339,-109.793716],[44.45356,-109.794434],[44.453899,-109.79557],[44.454269,-109.797462],[44.454418,-109.798317],[44.45446,-109.798912],[44.45443,-109.799492],[44.454399,-109.799767],[44.454288,-109.800346],[44.45414,-109.800873],[44.453659,-109.802132],[44.453239,-109.803459],[44.452919,-109.805054],[44.452789,-109.806396],[44.452789,-109.806549],[44.452782,-109.80777],[44.45285,-109.809319],[44.453041,-109.81057],[44.45359,-109.81266],[44.453918,-109.815193],[44.454441,-109.819252],[44.454491,-109.820084],[44.45454,-109.822052],[44.454601,-109.822617],[44.454681,-109.823174],[44.454739,-109.823433],[44.455318,-109.825546],[44.455551,-109.82663],[44.455639,-109.827759],[44.455521,-109.828873],[44.455219,-109.829933],[44.454651,-109.831017],[44.45438,-109.831512],[44.45311,-109.833687],[44.452869,-109.834183],[44.45277,-109.834457],[44.452629,-109.835007],[44.452572,-109.835602],[44.452591,-109.836197],[44.452801,-109.837181],[44.452831,-109.837288],[44.45319,-109.838013],[44.453339,-109.838242],[44.45372,-109.838577],[44.45393,-109.838768],[44.4543,-109.838943],[44.455669,-109.839302],[44.456039,-109.839523],[44.457008,-109.840492],[44.457741,-109.841461],[44.458431,-109.842873],[44.458771,-109.843857],[44.459179,-109.846313],[44.459301,-109.847702],[44.45927,-109.848831],[44.459,-109.851646],[44.458851,-109.854141],[44.45892,-109.857613],[44.4589,-109.858223],[44.45874,-109.860573],[44.45874,-109.860863],[44.458889,-109.861977],[44.459171,-109.86274],[44.459438,-109.863159],[44.459579,-109.863373],[44.460281,-109.86396],[44.460659,-109.864128],[44.461842,-109.86441],[44.46207,-109.864464],[44.462471,-109.864563],[44.462631,-109.864594],[44.46339,-109.864937],[44.464241,-109.865631],[44.464859,-109.866371],[44.46677,-109.868874],[44.467461,-109.869888],[44.468811,-109.872993],[44.469261,-109.874229],[44.469421,-109.874748],[44.469528,-109.875298],[44.469761,-109.876671],[44.470039,-109.877724],[44.471008,-109.879883],[44.471611,-109.88131],[44.471729,-109.881699],[44.47208,-109.882858],[44.47237,-109.884521],[44.47245,-109.885368],[44.472469,-109.886177],[44.472401,-109.887604],[44.472321,-109.888344],[44.47216,-109.889236],[44.471889,-109.89032],[44.471241,-109.89209],[44.47036,-109.894318],[44.47023,-109.894852],[44.470119,-109.895683],[44.470181,-109.896523],[44.470421,-109.897308],[44.470531,-109.897552],[44.47086,-109.898064],[44.47094,-109.898163],[44.47147,-109.89859],[44.472271,-109.898819],[44.472889,-109.898712],[44.474091,-109.898193],[44.474892,-109.898041],[44.476109,-109.898079],[44.47691,-109.898376],[44.4776,-109.899002],[44.47802,-109.899643],[44.47839,-109.90065],[44.478519,-109.901077],[44.478619,-109.902344],[44.47876,-109.904343],[44.47897,-109.905739],[44.479351,-109.907059],[44.479858,-109.908287],[44.48032,-109.909111],[44.480492,-109.909401],[44.48156,-109.910728],[44.484131,-109.913521],[44.484589,-109.914124],[44.484859,-109.914558],[44.4851,-109.915039],[44.485298,-109.915543],[44.485661,-109.916908],[44.485821,-109.917648],[44.485889,-109.917961],[44.486019,-109.918587],[44.486382,-109.919647],[44.486912,-109.920517],[44.487061,-109.9207],[44.487389,-109.921013],[44.48774,-109.921249],[44.488609,-109.921799],[44.48896,-109.922043],[44.489128,-109.922203],[44.489731,-109.922943],[44.490921,-109.925591],[44.49152,-109.927063],[44.491959,-109.928627],[44.492222,-109.92984],[44.49276,-109.932297],[44.49308,-109.9338],[44.493179,-109.93428],[44.493279,-109.934738],[44.493519,-109.936127],[44.49353,-109.936378],[44.49371,-109.938118],[44.49395,-109.939507],[44.495022,-109.942886],[44.496399,-109.947113],[44.497231,-109.949913],[44.49733,-109.950172],[44.497822,-109.951118],[44.498638,-109.952026],[44.49931,-109.952713],[44.499741,-109.953331],[44.500721,-109.955078],[44.501362,-109.956306],[44.501808,-109.957542],[44.501968,-109.958183],[44.502171,-109.959198],[44.502239,-109.959801],[44.50227,-109.96048],[44.502281,-109.960938],[44.502171,-109.962357],[44.501911,-109.963676],[44.50174,-109.964233],[44.500839,-109.967232],[44.50021,-109.969208],[44.498959,-109.973244],[44.49752,-109.978279],[44.496811,-109.980667],[44.49622,-109.982498],[44.495979,-109.983879],[44.495831,-109.984993],[44.49548,-109.986031],[44.494942,-109.987251],[44.494541,-109.988579],[44.49435,-109.989983],[44.49424,-109.991707],[44.49416,-109.992599],[44.494061,-109.993172],[44.493839,-109.994034],[44.493649,-109.994553],[44.49324,-109.995537],[44.49255,-109.997108],[44.492081,-109.998016],[44.491581,-109.99868],[44.491138,-109.999153],[44.49086,-109.999451],[44.490829,-109.999481],[44.490238,-110.000313],[44.490009,-110.000664],[44.489681,-110.001266],[44.489399,-110.001747],[44.489231,-110.002037],[44.48912,-110.002258],[44.488998,-110.002487],[44.48856,-110.003822],[44.488178,-110.004967],[44.488121,-110.005249],[44.488071,-110.005531],[44.488029,-110.005821],[44.487999,-110.006111],[44.48798,-110.006416],[44.487942,-110.00676],[44.487881,-110.007111],[44.487808,-110.007469],[44.48764,-110.008148],[44.487549,-110.008476],[44.48745,-110.008797],[44.487411,-110.009171],[44.487381,-110.009567],[44.48735,-110.009972],[44.487259,-110.010353],[44.487122,-110.010727],[44.486969,-110.011101],[44.486622,-110.011841],[44.486439,-110.012199],[44.48624,-110.01252],[44.486031,-110.012833],[44.485859,-110.013161],[44.485741,-110.013519],[44.485691,-110.013924],[44.48568,-110.01432],[44.48571,-110.014717],[44.485722,-110.015129],[44.485649,-110.015503],[44.4855,-110.015831],[44.48531,-110.016129],[44.485081,-110.016434],[44.484859,-110.016747],[44.484619,-110.01709],[44.484379,-110.017418],[44.48415,-110.017754],[44.483952,-110.01812],[44.48378,-110.018517],[44.48365,-110.018951],[44.483521,-110.019386],[44.483391,-110.019859],[44.483261,-110.020332],[44.48312,-110.020813],[44.48299,-110.021294],[44.482849,-110.021751],[44.482731,-110.022186],[44.482609,-110.022614],[44.482479,-110.023041],[44.482349,-110.023468],[44.48222,-110.023888],[44.48209,-110.024323],[44.48196,-110.02475],[44.481838,-110.025169],[44.481739,-110.025589],[44.48167,-110.026016],[44.481621,-110.026451],[44.481541,-110.026863],[44.4814,-110.027229],[44.48122,-110.027527],[44.480991,-110.027779],[44.480728,-110.028023],[44.48048,-110.028297],[44.48027,-110.028618],[44.48008,-110.028969],[44.479912,-110.029358],[44.479752,-110.029762],[44.479519,-110.03035],[44.47937,-110.0308],[44.47929,-110.031273],[44.47924,-110.031708],[44.479221,-110.032143],[44.479179,-110.032593],[44.47916,-110.033043],[44.47913,-110.033493],[44.479111,-110.033951],[44.479092,-110.034401],[44.479061,-110.034859],[44.479031,-110.035316],[44.479012,-110.035767],[44.478989,-110.036201],[44.47897,-110.036629],[44.47897,-110.037064],[44.478981,-110.039589],[44.478989,-110.040024],[44.478989,-110.040443],[44.479,-110.040863],[44.479012,-110.041283],[44.479019,-110.041672],[44.479,-110.042084],[44.47897,-110.042679],[44.478951,-110.043114],[44.478851,-110.043648],[44.47876,-110.044121],[44.478649,-110.044479],[44.47847,-110.044739],[44.477341,-110.045883],[44.476978,-110.046204],[44.476791,-110.046547],[44.47665,-110.047127],[44.476452,-110.047752],[44.476051,-110.048683],[44.47554,-110.049858],[44.475231,-110.050774],[44.474781,-110.052078],[44.4744,-110.053421],[44.47369,-110.055923],[44.473431,-110.056709],[44.47332,-110.057053],[44.473091,-110.057617],[44.472771,-110.058067],[44.47245,-110.05864],[44.472118,-110.059334],[44.472,-110.059692],[44.471748,-110.060226],[44.471272,-110.060997],[44.470928,-110.061562],[44.470791,-110.061897],[44.470669,-110.0625],[44.4706,-110.062958],[44.47052,-110.063217],[44.470329,-110.063553],[44.469879,-110.064011],[44.469391,-110.064491],[44.469059,-110.06488],[44.468849,-110.065338],[44.468712,-110.065628],[44.468609,-110.065941],[44.468571,-110.066254],[44.468521,-110.066513],[44.46846,-110.066803],[44.46838,-110.067017],[44.468288,-110.067207],[44.468159,-110.06736],[44.46804,-110.067467],[44.467892,-110.067589],[44.467682,-110.067772],[44.467468,-110.067947],[44.467258,-110.068352],[44.46711,-110.068588],[44.467018,-110.068748],[44.4669,-110.069031],[44.466751,-110.069267],[44.466549,-110.069679],[44.466431,-110.069946],[44.46637,-110.070236],[44.466351,-110.070541],[44.466351,-110.070862],[44.4664,-110.071182],[44.46666,-110.072144],[44.46674,-110.072472],[44.466759,-110.07283],[44.466759,-110.073196],[44.466721,-110.073547],[44.466511,-110.074577],[44.466461,-110.074921],[44.466419,-110.075974],[44.46637,-110.076317],[44.466309,-110.076668],[44.466129,-110.077332],[44.466061,-110.077667],[44.465851,-110.079117],[44.465839,-110.079483],[44.465839,-110.079842],[44.46579,-110.080566],[44.465778,-110.08094],[44.465832,-110.082069],[44.46582,-110.082443],[44.465759,-110.082817],[44.465519,-110.083931],[44.465488,-110.08432],[44.465488,-110.084702],[44.46553,-110.085457],[44.465542,-110.085831],[44.465488,-110.086563],[44.465511,-110.086906],[44.46558,-110.087242],[44.465801,-110.087914],[44.46587,-110.08828],[44.466049,-110.089462],[44.466091,-110.089867],[44.466091,-110.090279],[44.465912,-110.092209],[44.4659,-110.09256],[44.46595,-110.092888],[44.466011,-110.093208],[44.466049,-110.093513],[44.466011,-110.093773],[44.465912,-110.094017],[44.46579,-110.094254],[44.465221,-110.09523],[44.46489,-110.096069],[44.464588,-110.096748],[44.464512,-110.097153],[44.46447,-110.097633],[44.464409,-110.097977],[44.464069,-110.098824],[44.464008,-110.099083],[44.463909,-110.099609],[44.4636,-110.100456],[44.463379,-110.101212],[44.4631,-110.102364],[44.462971,-110.102707],[44.462631,-110.103287],[44.462528,-110.1036],[44.462509,-110.103928],[44.462509,-110.104279],[44.462471,-110.10463],[44.462379,-110.104958],[44.462151,-110.105598],[44.462029,-110.105904],[44.461868,-110.106201],[44.461689,-110.106491],[44.461529,-110.106789],[44.461449,-110.107117],[44.461399,-110.107452],[44.4613,-110.107773],[44.461159,-110.108101],[44.460979,-110.108391],[44.460831,-110.108727],[44.460239,-110.109657],[44.460072,-110.110001],[44.45974,-110.111137],[44.45961,-110.111504],[44.459301,-110.11216],[44.459221,-110.112923],[44.459259,-110.113243],[44.459351,-110.113564],[44.459869,-110.114647],[44.460178,-110.115143],[44.460312,-110.115433],[44.460979,-110.117157],[44.46133,-110.117989],[44.4617,-110.118759],[44.462139,-110.119568],[44.462311,-110.120163],[44.462429,-110.120422],[44.46278,-110.120827],[44.462952,-110.121094],[44.463051,-110.121399],[44.463112,-110.121742],[44.46315,-110.122108],[44.463181,-110.122833],[44.46323,-110.123199],[44.46347,-110.124237],[44.463638,-110.125298],[44.463718,-110.125633],[44.463829,-110.125938],[44.46447,-110.127411],[44.464619,-110.128067],[44.464699,-110.128693],[44.464882,-110.129288],[44.465191,-110.130013],[44.465641,-110.130661],[44.465981,-110.131058],[44.466499,-110.131729],[44.466869,-110.132393],[44.46711,-110.133034],[44.467442,-110.133957],[44.46796,-110.135048],[44.46846,-110.136261],[44.468609,-110.136681],[44.46888,-110.137543],[44.46904,-110.137947],[44.470051,-110.140053],[44.470219,-110.140411],[44.470371,-110.140793],[44.47049,-110.141167],[44.470558,-110.141586],[44.470631,-110.142464],[44.47073,-110.143379],[44.470909,-110.144333],[44.471161,-110.145264],[44.471931,-110.147903],[44.472618,-110.15049],[44.47295,-110.151863],[44.473049,-110.152344],[44.473228,-110.153297],[44.47345,-110.154251],[44.473598,-110.154701],[44.473759,-110.155128],[44.473942,-110.155533],[44.47414,-110.155922],[44.474361,-110.156288],[44.474621,-110.156631],[44.474899,-110.156914],[44.47522,-110.157143],[44.475571,-110.157303],[44.475941,-110.157417],[44.476311,-110.157494],[44.476662,-110.157516],[44.477291,-110.157516],[44.477581,-110.1576],[44.477852,-110.157753],[44.478279,-110.15815],[44.478882,-110.15876],[44.479149,-110.158997],[44.480309,-110.159897],[44.480839,-110.160347],[44.481369,-110.160851],[44.481621,-110.161118],[44.48185,-110.161423],[44.482071,-110.161751],[44.482479,-110.162468],[44.482719,-110.162781],[44.482979,-110.163071],[44.483212,-110.163391],[44.483379,-110.16378],[44.483521,-110.164192],[44.48373,-110.164612],[44.48399,-110.164917],[44.484859,-110.165703],[44.485119,-110.166054],[44.485291,-110.166473],[44.485619,-110.167908],[44.485809,-110.168327],[44.48608,-110.168663],[44.486401,-110.168892],[44.487091,-110.169273],[44.487411,-110.169533],[44.487659,-110.169838],[44.488239,-110.171043],[44.48888,-110.172234],[44.489059,-110.172653],[44.489151,-110.173103],[44.489201,-110.173988],[44.489239,-110.174469],[44.489311,-110.174919],[44.48941,-110.175377],[44.489449,-110.175903],[44.489471,-110.176903],[44.489578,-110.177902],[44.489609,-110.178413],[44.489632,-110.182152],[44.48962,-110.182693],[44.489479,-110.183762],[44.48946,-110.184319],[44.48946,-110.184883],[44.489399,-110.18602],[44.489422,-110.188217],[44.489399,-110.188782],[44.48941,-110.189339],[44.489441,-110.189873],[44.489578,-110.190918],[44.489799,-110.191963],[44.48988,-110.192543],[44.489929,-110.193108],[44.48999,-110.194221],[44.490139,-110.195763],[44.490219,-110.196259],[44.490379,-110.197151],[44.49049,-110.19751],[44.49065,-110.197807],[44.49086,-110.198051],[44.491138,-110.19825],[44.491459,-110.198441],[44.491791,-110.198601],[44.49213,-110.198723],[44.492489,-110.198807],[44.492851,-110.198868],[44.493198,-110.198883],[44.4939,-110.198822],[44.49424,-110.198723],[44.494579,-110.198593],[44.49493,-110.198433],[44.49588,-110.197853],[44.496201,-110.197723],[44.496529,-110.197701],[44.496861,-110.1978],[44.49715,-110.197998],[44.49741,-110.198318],[44.497581,-110.198692],[44.497681,-110.199097],[44.497711,-110.199562],[44.497589,-110.201408],[44.497669,-110.201797],[44.49786,-110.202133],[44.4981,-110.202278],[44.498379,-110.202301],[44.498661,-110.202164],[44.49894,-110.201881],[44.499229,-110.201538],[44.500149,-110.200577],[44.50045,-110.200233],[44.500721,-110.199837],[44.501759,-110.198143],[44.502281,-110.197357],[44.50341,-110.195847],[44.503609,-110.195648],[44.503841,-110.195557],[44.503948,-110.195557],[44.504059,-110.195587],[44.50415,-110.195641],[44.504238,-110.19574],[44.504379,-110.195976],[44.504429,-110.196289],[44.504429,-110.196457],[44.504398,-110.196617],[44.504299,-110.196938],[44.503231,-110.199364],[44.50272,-110.200592],[44.50214,-110.201714],[44.501911,-110.202087],[44.500839,-110.203453],[44.500591,-110.203819],[44.500381,-110.204231],[44.499859,-110.205582],[44.499321,-110.206818],[44.49918,-110.207237],[44.499142,-110.20768],[44.499229,-110.208099],[44.49939,-110.208488],[44.499649,-110.208801],[44.49995,-110.209084],[44.500519,-110.209686],[44.500771,-110.210037],[44.501209,-110.210823],[44.501461,-110.211746],[44.50153,-110.212227],[44.501579,-110.21273],[44.501591,-110.213722],[44.50156,-110.214211],[44.501431,-110.215172],[44.50135,-110.215637],[44.50124,-110.216103],[44.500389,-110.219421],[44.50029,-110.219856],[44.50024,-110.220284],[44.500278,-110.220703],[44.500401,-110.221077],[44.50058,-110.221451],[44.500992,-110.222214],[44.50116,-110.222618],[44.501289,-110.223083],[44.501469,-110.223999],[44.50148,-110.224533],[44.50161,-110.224953],[44.501732,-110.225433],[44.501961,-110.225807],[44.50211,-110.22625],[44.50222,-110.226723],[44.5023,-110.227173],[44.502399,-110.227631],[44.502449,-110.228104],[44.502609,-110.228996],[44.502659,-110.229431],[44.502659,-110.229874],[44.502571,-110.230698],[44.50256,-110.231117],[44.502651,-110.231522],[44.502831,-110.231888],[44.503269,-110.232567],[44.50346,-110.232964],[44.50362,-110.233383],[44.503731,-110.233833],[44.503792,-110.234306],[44.504002,-110.236794],[44.504162,-110.237747],[44.504261,-110.23822],[44.50433,-110.238693],[44.504299,-110.240051],[44.504341,-110.240433],[44.50444,-110.240791],[44.504601,-110.241096],[44.50481,-110.241379],[44.50552,-110.242218],[44.505741,-110.242538],[44.505951,-110.242867],[44.506142,-110.24321],[44.50631,-110.243568],[44.50658,-110.244324],[44.50668,-110.24469],[44.506771,-110.245064],[44.506828,-110.245422],[44.50684,-110.245781],[44.50679,-110.24614],[44.50658,-110.246849],[44.506512,-110.247223],[44.506519,-110.247597],[44.506611,-110.247963],[44.506771,-110.248283],[44.506989,-110.248543],[44.507229,-110.248734],[44.5075,-110.248817],[44.507778,-110.248833],[44.508621,-110.248581],[44.508911,-110.248611],[44.509171,-110.248749],[44.509399,-110.248978],[44.50959,-110.249268],[44.50967,-110.249657],[44.50967,-110.250053],[44.50959,-110.250427],[44.509418,-110.250763],[44.50922,-110.251053],[44.508961,-110.251266],[44.50872,-110.251518],[44.508492,-110.251823],[44.50827,-110.252182],[44.508091,-110.252602],[44.50779,-110.253487],[44.507641,-110.253922],[44.507431,-110.254311],[44.506981,-110.255074],[44.506531,-110.25589],[44.506321,-110.256317],[44.505951,-110.25724],[44.505619,-110.258179],[44.505482,-110.258667],[44.505161,-110.259613],[44.504902,-110.26059],[44.504711,-110.261574],[44.50465,-110.262047],[44.504589,-110.263],[44.504589,-110.263382],[44.504581,-110.263924],[44.504601,-110.264832],[44.5047,-110.266586],[44.504711,-110.267448],[44.504688,-110.267883],[44.5047,-110.26828],[44.504749,-110.268646],[44.504829,-110.269012],[44.50494,-110.269341],[44.505081,-110.26963],[44.505951,-110.271088],[44.506161,-110.271523],[44.506248,-110.271744],[44.50631,-110.272217],[44.506302,-110.272461],[44.50626,-110.272888],[44.506142,-110.273689],[44.506119,-110.2742],[44.506149,-110.274719],[44.506279,-110.275337],[44.506371,-110.275681],[44.506561,-110.276138],[44.50676,-110.276497],[44.506882,-110.276627],[44.5075,-110.277428],[44.508041,-110.278053],[44.508202,-110.278214],[44.508369,-110.278343],[44.508549,-110.278442],[44.508968,-110.278557],[44.51049,-110.278778],[44.510841,-110.27877],[44.51125,-110.278664],[44.511471,-110.278557],[44.5121,-110.278183],[44.513229,-110.27726],[44.513531,-110.277039],[44.513851,-110.276833],[44.514179,-110.276657],[44.514778,-110.276421],[44.515282,-110.276314],[44.515549,-110.276283],[44.51609,-110.276268],[44.516689,-110.276314],[44.5173,-110.276421],[44.517811,-110.276588],[44.518162,-110.276749],[44.518749,-110.277077],[44.51918,-110.277382],[44.519749,-110.277847],[44.520729,-110.278831],[44.521759,-110.279823],[44.52235,-110.280418],[44.522671,-110.280724],[44.523979,-110.281761],[44.524132,-110.281853],[44.52425,-110.281967],[44.524891,-110.282654],[44.525261,-110.283073],[44.52581,-110.283813],[44.526909,-110.285622],[44.527592,-110.286858],[44.527779,-110.287178],[44.527981,-110.287468],[44.52816,-110.287804],[44.52869,-110.288689],[44.528851,-110.288979],[44.528992,-110.289291],[44.529079,-110.289612],[44.529148,-110.289932],[44.52919,-110.29026],[44.529209,-110.290604],[44.52919,-110.290939],[44.529129,-110.291283],[44.529049,-110.291634],[44.52895,-110.291962],[44.528301,-110.293671],[44.528111,-110.294243],[44.528049,-110.294487],[44.528019,-110.294746],[44.528042,-110.294991],[44.528111,-110.295212],[44.528332,-110.295631],[44.52845,-110.29583],[44.52887,-110.296417],[44.52903,-110.296608],[44.52951,-110.297043],[44.529701,-110.297119],[44.529881,-110.297157],[44.530079,-110.297157],[44.53046,-110.297073],[44.531219,-110.296822],[44.53294,-110.296188],[44.533138,-110.296097],[44.533539,-110.295853],[44.534409,-110.295151],[44.53471,-110.295013],[44.535061,-110.294922],[44.535389,-110.294983],[44.53577,-110.29493],[44.535931,-110.294952],[44.53611,-110.294937],[44.53643,-110.294868],[44.536572,-110.294807],[44.5368,-110.294647],[44.53698,-110.294456],[44.537102,-110.29425],[44.537201,-110.294006],[44.537251,-110.2938],[44.537289,-110.293427],[44.537281,-110.293243],[44.537189,-110.292374],[44.537182,-110.291748],[44.53735,-110.291183],[44.537472,-110.290894],[44.537609,-110.290627],[44.537769,-110.290382],[44.538239,-110.289749],[44.53841,-110.289551],[44.538589,-110.289383],[44.538792,-110.289261],[44.53899,-110.289162],[44.539211,-110.289093],[44.53968,-110.289009],[44.54039,-110.289017],[44.541061,-110.289131],[44.541721,-110.289337],[44.54237,-110.289658],[44.542759,-110.289886],[44.543461,-110.290451],[44.543911,-110.290894],[44.544201,-110.291199],[44.545391,-110.292587],[44.546421,-110.293892],[44.546501,-110.294029],[44.54781,-110.295853],[44.548382,-110.296677],[44.549099,-110.297836],[44.550209,-110.299751],[44.55088,-110.301018],[44.55183,-110.302902],[44.552631,-110.304581],[44.553291,-110.306023],[44.554501,-110.308746],[44.55489,-110.309608],[44.555538,-110.311249],[44.556889,-110.3144],[44.557529,-110.315971],[44.557812,-110.316589],[44.558601,-110.318497],[44.558949,-110.319412],[44.559361,-110.320396],[44.559608,-110.321136],[44.559719,-110.321564],[44.559811,-110.321983],[44.559879,-110.322433],[44.55994,-110.322891],[44.560001,-110.323792],[44.55999,-110.324249],[44.559959,-110.324692],[44.559921,-110.325127],[44.55986,-110.325562],[44.559509,-110.327766],[44.55846,-110.334373],[44.5583,-110.335732],[44.55822,-110.336662],[44.558159,-110.337608],[44.558071,-110.34095],[44.55798,-110.345161],[44.557968,-110.347],[44.557911,-110.347488],[44.557899,-110.348396],[44.557869,-110.348846],[44.557819,-110.351158],[44.557819,-110.351601],[44.55785,-110.352043],[44.557899,-110.352463],[44.557991,-110.352859],[44.5583,-110.354027],[44.558819,-110.355812],[44.558929,-110.356178],[44.559132,-110.356903],[44.559231,-110.357246],[44.55933,-110.357597],[44.55954,-110.358307],[44.559639,-110.358673],[44.559738,-110.359039],[44.559849,-110.359413],[44.559959,-110.359787],[44.560059,-110.360184],[44.560169,-110.360573],[44.56028,-110.360947],[44.560398,-110.361351],[44.560509,-110.361771],[44.560631,-110.362198],[44.560799,-110.362633],[44.560902,-110.363037],[44.561031,-110.363457],[44.561272,-110.364311],[44.561378,-110.364731],[44.561501,-110.365128],[44.561611,-110.365509],[44.561741,-110.365883],[44.56184,-110.366226],[44.561878,-110.366623],[44.562019,-110.366951],[44.562069,-110.367126],[44.562328,-110.368057],[44.56245,-110.368446],[44.562561,-110.36882],[44.56266,-110.369179],[44.562771,-110.369507],[44.562859,-110.36985],[44.56292,-110.370049],[44.563049,-110.370506],[44.563141,-110.370827],[44.56324,-110.371147],[44.56332,-110.37146],[44.563381,-110.371788],[44.563469,-110.372093],[44.56356,-110.372391],[44.563648,-110.372688],[44.56374,-110.372993],[44.56382,-110.373299],[44.5639,-110.373589],[44.563992,-110.373871],[44.564072,-110.374153],[44.56414,-110.37442],[44.56422,-110.374687],[44.564301,-110.374962],[44.564381,-110.375229],[44.564461,-110.375504],[44.564529,-110.375763],[44.56461,-110.37603],[44.56469,-110.376297],[44.56477,-110.376579],[44.56485,-110.376846],[44.56493,-110.377129],[44.56501,-110.377403],[44.565079,-110.377693],[44.565159,-110.377953],[44.56525,-110.37822],[44.565319,-110.378487],[44.565399,-110.378761],[44.565479,-110.379044],[44.565559,-110.379318],[44.565639,-110.379601],[44.565731,-110.379898],[44.565811,-110.380203],[44.56591,-110.380493],[44.566021,-110.380783],[44.566139,-110.381073],[44.56702,-110.382973],[44.567039,-110.383011],[44.567059,-110.383057],[44.5672,-110.383362],[44.567322,-110.383682],[44.56744,-110.38401],[44.567539,-110.384323],[44.567631,-110.384644],[44.567711,-110.384949],[44.56778,-110.385246],[44.567841,-110.385567],[44.567902,-110.385887],[44.567921,-110.3862],[44.567909,-110.386513],[44.56789,-110.386803],[44.56786,-110.387093],[44.56786,-110.38736],[44.567879,-110.387604],[44.567921,-110.387817],[44.56797,-110.387993],[44.56815,-110.388283],[44.56789,-110.388489],[44.567638,-110.38868],[44.56739,-110.38887],[44.56715,-110.389053],[44.566929,-110.389221],[44.566711,-110.389389],[44.566502,-110.389549],[44.56628,-110.389717],[44.566078,-110.389877],[44.565861,-110.390053],[44.565071,-110.390663],[44.56496,-110.390747],[44.56472,-110.390938],[44.564461,-110.391144],[44.56419,-110.39135],[44.5639,-110.391563],[44.56361,-110.391792],[44.563301,-110.392036],[44.563,-110.392273],[44.562691,-110.392509],[44.56237,-110.392754],[44.56208,-110.39299],[44.56176,-110.393219],[44.561569,-110.393356],[44.561161,-110.393707],[44.560848,-110.393951],[44.56052,-110.394203],[44.5602,-110.394447],[44.559879,-110.394707],[44.559559,-110.394981],[44.559238,-110.395264],[44.558949,-110.395576],[44.55867,-110.395912],[44.558411,-110.396278],[44.55817,-110.396683],[44.557949,-110.397087],[44.557751,-110.397522],[44.557579,-110.397987],[44.557419,-110.398468],[44.557289,-110.398956],[44.557171,-110.399452],[44.557072,-110.399948],[44.556969,-110.400429],[44.556862,-110.400902],[44.55677,-110.401382],[44.556671,-110.401863],[44.556561,-110.402351],[44.556438,-110.402832],[44.556389,-110.403038],[44.55632,-110.403313],[44.556229,-110.403801],[44.556129,-110.404289],[44.555988,-110.404747],[44.555801,-110.405182],[44.555599,-110.405586],[44.555351,-110.40596],[44.555069,-110.406281],[44.55479,-110.406563],[44.554501,-110.406776],[44.553768,-110.407288],[44.553638,-110.407387],[44.553371,-110.407578],[44.553101,-110.407784],[44.55283,-110.407982],[44.55254,-110.408188],[44.55225,-110.408386],[44.551949,-110.408623],[44.55175,-110.408752],[44.551628,-110.408836],[44.551319,-110.409073],[44.551029,-110.409317],[44.550751,-110.409576],[44.550499,-110.409866],[44.550381,-110.410027],[44.5499,-110.410912],[44.54974,-110.411301],[44.54961,-110.411713],[44.5495,-110.412163],[44.549309,-110.413551],[44.549301,-110.414017],[44.549278,-110.414513],[44.549252,-110.414978],[44.54921,-110.415443],[44.54911,-110.415909],[44.548962,-110.416351],[44.548771,-110.416763],[44.548531,-110.41713],[44.548241,-110.417427],[44.54792,-110.417686],[44.547562,-110.417862],[44.54718,-110.417961],[44.546791,-110.417992],[44.546398,-110.418007],[44.546001,-110.418053],[44.545609,-110.418152],[44.54541,-110.418251],[44.545238,-110.418327],[44.544891,-110.418549],[44.544552,-110.4188],[44.544209,-110.41906],[44.543869,-110.419312],[44.543541,-110.419563],[44.543209,-110.419823],[44.5429,-110.420067],[44.542591,-110.420341],[44.542309,-110.420647],[44.542061,-110.420998],[44.541821,-110.421371],[44.54163,-110.421761],[44.541458,-110.422142],[44.541321,-110.422531],[44.54118,-110.42292],[44.541039,-110.423332],[44.540909,-110.423759],[44.540771,-110.424187],[44.540619,-110.424652],[44.540459,-110.425133],[44.540298,-110.425613],[44.540131,-110.426117],[44.53997,-110.42662],[44.539791,-110.427132],[44.539619,-110.427628],[44.539452,-110.428108],[44.539261,-110.428581],[44.539051,-110.429024],[44.538811,-110.429443],[44.53857,-110.429817],[44.538311,-110.430161],[44.538052,-110.430481],[44.537781,-110.430771],[44.53751,-110.431061],[44.537251,-110.431343],[44.536499,-110.432167],[44.53632,-110.432457],[44.536221,-110.432579],[44.536098,-110.432732],[44.535881,-110.433006],[44.535671,-110.433273],[44.535469,-110.433533],[44.535259,-110.433762],[44.535061,-110.433968],[44.53484,-110.434128],[44.534599,-110.434242],[44.534328,-110.434311],[44.53405,-110.434334],[44.533749,-110.434334],[44.533482,-110.434341],[44.533138,-110.434387],[44.532902,-110.434502],[44.532669,-110.434624],[44.532379,-110.434799],[44.531792,-110.435173],[44.531429,-110.435387],[44.53117,-110.435547],[44.53091,-110.435722],[44.530521,-110.435951],[44.53035,-110.43605],[44.53006,-110.436188],[44.529758,-110.43631],[44.529449,-110.436409],[44.529251,-110.436447],[44.52914,-110.436493],[44.528339,-110.436562],[44.528179,-110.436569],[44.52784,-110.436577],[44.527519,-110.4366],[44.52718,-110.436653],[44.52684,-110.436707],[44.526508,-110.436798],[44.526169,-110.436897],[44.525822,-110.436974],[44.525471,-110.436974],[44.52512,-110.436897],[44.52478,-110.436737],[44.52446,-110.436493],[44.524181,-110.436157],[44.52393,-110.435783],[44.523739,-110.435333],[44.52359,-110.434837],[44.523499,-110.434334],[44.52346,-110.433807],[44.523449,-110.433281],[44.52346,-110.432747],[44.52343,-110.432228],[44.523338,-110.431717],[44.52319,-110.431252],[44.522991,-110.430817],[44.522732,-110.430473],[44.522511,-110.430206],[44.522209,-110.429993],[44.521881,-110.42984],[44.52121,-110.429611],[44.520889,-110.429466],[44.52058,-110.429298],[44.52029,-110.429047],[44.520031,-110.428741],[44.519821,-110.42836],[44.519661,-110.427933],[44.519489,-110.427467],[44.519329,-110.427017],[44.519169,-110.426552],[44.519001,-110.426086],[44.518848,-110.425636],[44.518688,-110.425194],[44.518459,-110.424751],[44.518181,-110.424393],[44.517872,-110.424057],[44.517551,-110.423729],[44.51725,-110.423347],[44.516998,-110.42292],[44.51685,-110.42244],[44.516739,-110.421913],[44.516659,-110.421356],[44.516548,-110.42083],[44.51638,-110.420326],[44.516151,-110.419907],[44.515862,-110.41954],[44.515541,-110.419228],[44.515339,-110.419037],[44.515209,-110.418922],[44.51487,-110.418617],[44.514542,-110.418312],[44.51421,-110.418007],[44.51387,-110.41774],[44.513512,-110.417557],[44.513119,-110.41748],[44.51273,-110.417519],[44.512348,-110.417633],[44.511971,-110.417793],[44.5116,-110.417931],[44.51123,-110.418083],[44.510872,-110.418213],[44.510509,-110.418327],[44.510139,-110.418419],[44.509781,-110.418503],[44.50943,-110.418617],[44.50909,-110.418793],[44.508759,-110.419022],[44.50843,-110.41925],[44.50808,-110.419472],[44.50774,-110.419693],[44.507401,-110.419907],[44.50703,-110.420097],[44.50668,-110.420303],[44.506329,-110.420509],[44.505989,-110.420708],[44.505638,-110.420898],[44.505291,-110.421097],[44.504951,-110.421303],[44.504601,-110.421471],[44.504238,-110.421623],[44.503868,-110.421722],[44.50349,-110.421783],[44.503101,-110.421768],[44.502708,-110.4217],[44.502319,-110.421593],[44.50193,-110.421471],[44.501541,-110.421349],[44.50116,-110.421227],[44.500771,-110.421097],[44.500381,-110.420982],[44.499989,-110.42086],[44.499611,-110.420753],[44.499222,-110.420631],[44.498829,-110.420517],[44.498451,-110.420403],[44.49818,-110.420326],[44.498058,-110.420303],[44.497688,-110.42025],[44.497318,-110.420303],[44.496971,-110.420448],[44.496639,-110.42067],[44.496319,-110.420914],[44.495979,-110.42115],[44.495682,-110.42141],[44.495369,-110.421661],[44.49506,-110.421913],[44.494431,-110.422409],[44.494129,-110.422668],[44.493801,-110.422913],[44.493481,-110.423157],[44.49316,-110.423424],[44.49284,-110.423691],[44.492569,-110.424011],[44.49234,-110.424393],[44.492149,-110.42482],[44.492001,-110.425278],[44.49184,-110.425743],[44.491661,-110.426193],[44.491421,-110.42659],[44.49115,-110.426941],[44.490841,-110.427238],[44.490528,-110.427521],[44.490219,-110.427803],[44.489929,-110.428093],[44.48962,-110.428383],[44.48933,-110.428703],[44.489029,-110.429031],[44.48872,-110.429367],[44.488419,-110.429718],[44.488121,-110.430077],[44.487831,-110.430443],[44.487541,-110.430801],[44.487251,-110.43116],[44.486969,-110.431503],[44.486679,-110.431831],[44.486359,-110.432114],[44.486019,-110.432358],[44.485661,-110.432587],[44.485321,-110.432831],[44.484982,-110.433113],[44.484661,-110.433411],[44.484348,-110.433731],[44.484039,-110.434059],[44.48373,-110.434387],[44.483429,-110.434708],[44.483109,-110.435043],[44.4828,-110.435364],[44.482479,-110.435699],[44.482151,-110.436028],[44.481831,-110.436371],[44.481491,-110.436707],[44.481159,-110.437057],[44.480831,-110.437408],[44.480499,-110.437752],[44.480171,-110.438103],[44.479839,-110.438438],[44.479519,-110.438766],[44.479198,-110.439102],[44.47887,-110.439438],[44.478561,-110.439774],[44.478249,-110.440117],[44.47797,-110.440514],[44.477699,-110.440903],[44.477451,-110.441322],[44.477211,-110.44175],[44.476978,-110.442207],[44.476768,-110.44268],[44.476582,-110.443176],[44.476398,-110.443687],[44.476231,-110.444206],[44.476082,-110.444763],[44.475929,-110.44532],[44.475769,-110.445892],[44.475609,-110.446457],[44.475441,-110.447052],[44.4753,-110.447617],[44.47514,-110.448196],[44.474979,-110.448761],[44.474831,-110.449318],[44.474682,-110.449867],[44.474529,-110.450409],[44.47438,-110.450943],[44.474201,-110.451447],[44.47401,-110.451958],[44.473808,-110.452454],[44.47361,-110.452942],[44.473412,-110.453438],[44.473202,-110.453934],[44.472988,-110.45443],[44.472778,-110.454918],[44.472561,-110.455406],[44.472351,-110.455879],[44.472111,-110.456306],[44.471821,-110.456673],[44.471512,-110.456993],[44.471199,-110.457268],[44.470871,-110.45752],[44.470551,-110.457817],[44.470261,-110.458168],[44.470009,-110.458557],[44.46981,-110.458977],[44.46965,-110.45945],[44.46954,-110.459938],[44.469479,-110.460449],[44.469471,-110.460983],[44.469479,-110.461517],[44.46944,-110.462059],[44.46936,-110.462593],[44.469231,-110.463089],[44.46904,-110.463547],[44.46883,-110.463966],[44.468571,-110.464348],[44.46833,-110.464722],[44.46809,-110.465111],[44.467899,-110.465561],[44.467739,-110.466042],[44.467651,-110.466553],[44.467579,-110.467056],[44.46751,-110.467583],[44.467449,-110.468109],[44.46735,-110.46862],[44.467209,-110.469109],[44.46703,-110.469551],[44.46674,-110.4702],[44.466648,-110.470421],[44.466511,-110.470879],[44.46637,-110.471336],[44.466251,-110.471809],[44.466091,-110.47226],[44.465931,-110.472702],[44.465729,-110.473137],[44.465511,-110.473549],[44.46526,-110.473938],[44.464989,-110.474297],[44.464729,-110.47467],[44.464451,-110.475052],[44.46418,-110.475433],[44.463909,-110.4758],[44.463631,-110.476173],[44.463379,-110.476547],[44.463139,-110.476952],[44.462921,-110.477386],[44.462719,-110.477837],[44.462509,-110.478287],[44.462299,-110.478737],[44.46207,-110.479187],[44.461842,-110.479622],[44.461571,-110.480019],[44.461288,-110.48037],[44.460979,-110.48069],[44.460678,-110.481003],[44.460381,-110.481339],[44.460091,-110.481697],[44.45985,-110.482101],[44.459671,-110.482536],[44.45948,-110.483009],[44.459309,-110.48349],[44.45916,-110.483978],[44.459091,-110.484169],[44.458988,-110.484451],[44.458809,-110.484932],[44.458641,-110.485413],[44.458469,-110.485909],[44.45829,-110.486397],[44.458111,-110.4869],[44.457939,-110.487396],[44.45779,-110.487907],[44.457611,-110.488419],[44.45742,-110.488953],[44.45723,-110.489471],[44.457039,-110.48999],[44.456841,-110.490494],[44.45665,-110.49102],[44.45644,-110.491508],[44.45623,-110.491982],[44.456009,-110.492447],[44.455769,-110.492897],[44.45554,-110.493347],[44.455299,-110.493797],[44.455051,-110.494232],[44.454811,-110.494667],[44.454578,-110.495102],[44.45435,-110.495537],[44.454121,-110.495987],[44.45393,-110.496468],[44.453739,-110.496964],[44.453602,-110.497467],[44.453499,-110.497993],[44.453381,-110.498489],[44.45327,-110.498993],[44.453159,-110.499481],[44.453049,-110.499977],[44.45295,-110.500481],[44.452869,-110.500977],[44.452839,-110.501503],[44.452808,-110.502151],[44.452862,-110.502533],[44.45293,-110.503029],[44.453018,-110.503517],[44.453159,-110.50399],[44.45332,-110.50444],[44.453499,-110.504868],[44.453709,-110.505272],[44.453941,-110.505653],[44.454189,-110.506012],[44.454441,-110.506393],[44.4547,-110.50676],[44.45496,-110.507133],[44.45525,-110.507446],[44.45557,-110.507736],[44.45591,-110.507957],[44.45628,-110.508133],[44.456409,-110.508186],[44.456631,-110.508263],[44.456989,-110.508392],[44.457352,-110.508507],[44.457722,-110.508636],[44.45808,-110.508774],[44.458462,-110.508911],[44.458832,-110.509048],[44.459202,-110.509193],[44.459549,-110.509361],[44.459888,-110.50959],[44.46019,-110.509903],[44.460461,-110.510246],[44.46072,-110.510658],[44.46096,-110.51107],[44.461201,-110.511467],[44.461441,-110.511879],[44.461681,-110.512283],[44.461929,-110.512657],[44.4622,-110.513039],[44.462479,-110.513397],[44.462769,-110.513748],[44.46307,-110.514091],[44.463379,-110.51442],[44.463482,-110.514526],[44.463699,-110.514732],[44.46402,-110.51503],[44.464352,-110.51532],[44.464699,-110.515587],[44.465069,-110.515846],[44.465431,-110.516098],[44.465801,-110.516319],[44.466179,-110.51651],[44.466549,-110.516693],[44.46693,-110.516869],[44.467312,-110.517029],[44.46769,-110.517189],[44.468071,-110.517349],[44.468441,-110.51754],[44.4688,-110.517761],[44.469151,-110.518044],[44.46946,-110.518387],[44.469749,-110.518768],[44.470001,-110.519188],[44.47023,-110.51963],[44.470451,-110.520081],[44.470669,-110.520531],[44.47089,-110.520988],[44.4711,-110.521439],[44.47131,-110.521873],[44.471531,-110.522301],[44.471741,-110.522743],[44.471951,-110.523163],[44.472172,-110.523613],[44.472389,-110.52404],[44.472599,-110.524483],[44.47282,-110.52491],[44.472912,-110.52507],[44.473061,-110.525307],[44.473331,-110.525688],[44.473629,-110.526009],[44.473961,-110.526283],[44.474129,-110.526382],[44.474319,-110.526497],[44.474689,-110.526657],[44.475071,-110.526802],[44.475441,-110.526962],[44.475819,-110.52713],[44.47617,-110.527344],[44.476471,-110.527641],[44.476719,-110.528008],[44.47691,-110.528427],[44.477051,-110.528893],[44.47715,-110.529373],[44.477211,-110.529869],[44.477261,-110.530388],[44.477291,-110.53093],[44.477291,-110.531487],[44.477291,-110.532043],[44.477261,-110.5326],[44.47723,-110.53315],[44.4772,-110.533691],[44.477161,-110.534233],[44.477131,-110.53476],[44.4771,-110.535294],[44.477058,-110.535843],[44.47702,-110.536392],[44.47699,-110.536926],[44.476959,-110.537483],[44.476921,-110.537987],[44.47691,-110.538513],[44.476952,-110.539017],[44.477032,-110.539513],[44.47715,-110.539993],[44.477299,-110.540466],[44.477428,-110.54097],[44.477489,-110.541183],[44.47752,-110.541428],[44.477558,-110.541687],[44.477558,-110.541992],[44.47752,-110.542282],[44.47747,-110.542503],[44.477348,-110.542976],[44.477188,-110.543449],[44.47702,-110.543907],[44.47686,-110.54438],[44.476719,-110.544853],[44.47657,-110.545326],[44.476421,-110.545799],[44.47625,-110.546257],[44.476082,-110.546722],[44.47591,-110.54718],[44.47575,-110.547653],[44.47562,-110.548126],[44.475529,-110.548622],[44.475422,-110.549103],[44.475319,-110.549568],[44.47517,-110.550018],[44.474991,-110.550453],[44.474751,-110.550827],[44.474461,-110.551178],[44.474171,-110.551529],[44.473888,-110.551903],[44.473579,-110.552231],[44.473289,-110.552567],[44.473011,-110.552902],[44.47274,-110.553223],[44.472481,-110.553551],[44.47221,-110.553864],[44.47192,-110.554153],[44.471619,-110.554413],[44.471279,-110.554611],[44.470928,-110.554741],[44.47057,-110.554802],[44.470211,-110.554817],[44.469849,-110.554848],[44.469471,-110.554863],[44.469109,-110.554893],[44.468731,-110.554878],[44.468361,-110.554848],[44.467999,-110.554779],[44.46764,-110.55471],[44.467289,-110.554657],[44.466949,-110.554657],[44.46661,-110.554703],[44.466282,-110.554787],[44.46595,-110.554893],[44.465641,-110.555054],[44.465328,-110.555229],[44.465012,-110.555412],[44.46468,-110.55558],[44.464329,-110.55571],[44.46397,-110.555801],[44.4636,-110.555832],[44.463242,-110.555817],[44.462872,-110.555801],[44.462509,-110.555771],[44.462151,-110.555763],[44.461781,-110.555717],[44.46143,-110.55571],[44.461079,-110.55571],[44.460739,-110.555779],[44.460411,-110.555893],[44.460091,-110.556091],[44.459789,-110.556343],[44.459511,-110.556641],[44.459251,-110.556961],[44.458988,-110.557297],[44.458721,-110.557617],[44.45845,-110.557938],[44.458149,-110.558197],[44.45784,-110.558441],[44.45752,-110.558662],[44.45686,-110.559067],[44.456551,-110.559273],[44.45623,-110.559464],[44.455921,-110.559662],[44.455631,-110.559898],[44.455349,-110.560188],[44.455109,-110.560516],[44.454891,-110.560883],[44.454681,-110.561256],[44.454472,-110.561653],[44.45425,-110.562019],[44.454041,-110.562393],[44.453831,-110.562752],[44.453609,-110.563103],[44.45335,-110.5634],[44.45306,-110.563637],[44.452751,-110.563843],[44.452419,-110.563957],[44.452099,-110.564003],[44.451771,-110.563988],[44.451439,-110.563927],[44.451118,-110.563843],[44.450802,-110.563744],[44.450489,-110.563599],[44.450169,-110.563454],[44.449848,-110.563293],[44.44952,-110.563133],[44.4492,-110.562958],[44.44886,-110.56282],[44.448509,-110.562714],[44.448151,-110.562668],[44.447788,-110.562691],[44.44743,-110.562759],[44.44706,-110.562866],[44.44672,-110.563072],[44.446381,-110.563301],[44.446072,-110.563599],[44.445782,-110.56395],[44.445518,-110.564346],[44.44529,-110.564781],[44.445091,-110.565247],[44.444881,-110.565697],[44.444649,-110.566116],[44.44437,-110.566498],[44.444069,-110.566803],[44.443729,-110.567009],[44.44339,-110.567207],[44.443069,-110.567429],[44.442768,-110.56768],[44.442501,-110.567963],[44.442249,-110.568283],[44.44202,-110.568626],[44.44183,-110.568993],[44.441662,-110.569397],[44.441509,-110.569817],[44.441391,-110.570267],[44.44125,-110.570732],[44.44112,-110.571182],[44.441002,-110.571632],[44.440868,-110.572083],[44.440762,-110.572533],[44.44067,-110.57299],[44.44059,-110.573433],[44.440521,-110.573883],[44.440418,-110.574318],[44.440281,-110.574753],[44.440102,-110.575203],[44.439899,-110.57563],[44.43969,-110.57605],[44.43943,-110.576447],[44.439171,-110.576843],[44.438919,-110.577217],[44.438679,-110.577599],[44.438461,-110.577988],[44.43824,-110.578369],[44.43803,-110.578751],[44.437832,-110.57914],[44.437618,-110.579536],[44.437401,-110.579933],[44.43718,-110.58033],[44.436939,-110.580727],[44.436691,-110.581131],[44.436432,-110.58152],[44.43615,-110.581909],[44.435879,-110.582291],[44.4356,-110.582657],[44.43539,-110.582932],[44.435032,-110.583359],[44.434731,-110.583679],[44.434441,-110.583977],[44.434132,-110.584244],[44.4338,-110.58448],[44.43346,-110.584679],[44.433109,-110.584846],[44.432751,-110.584991],[44.432369,-110.585114],[44.431999,-110.585167],[44.431622,-110.585197],[44.43124,-110.585182],[44.430882,-110.585136],[44.430531,-110.58506],[44.430191,-110.584938],[44.429859,-110.584778],[44.429539,-110.584579],[44.429531,-110.584557],[44.42923,-110.584328],[44.428928,-110.58403],[44.428661,-110.583679],[44.42841,-110.583298],[44.4282,-110.582878],[44.42802,-110.582443],[44.427879,-110.58197],[44.427761,-110.58149],[44.427689,-110.581001],[44.427639,-110.580513],[44.427589,-110.580002],[44.42754,-110.579514],[44.42749,-110.579041],[44.427429,-110.57859],[44.427319,-110.578163],[44.42717,-110.577744],[44.426991,-110.57737],[44.426781,-110.577026],[44.426552,-110.576721],[44.426281,-110.576447],[44.425991,-110.576241],[44.42585,-110.576157],[44.425678,-110.576073],[44.425362,-110.57592],[44.425041,-110.57579],[44.424709,-110.575653],[44.424389,-110.575508],[44.424068,-110.575371],[44.423752,-110.575241],[44.423439,-110.575104],[44.42313,-110.574966],[44.422821,-110.574837],[44.422508,-110.574699],[44.422192,-110.574562],[44.42189,-110.574432],[44.421581,-110.574303],[44.421291,-110.574181],[44.421009,-110.574074],[44.42075,-110.573967],[44.420502,-110.573883],[44.42025,-110.573799],[44.42001,-110.57373],[44.41975,-110.573669],[44.419491,-110.573608],[44.419231,-110.573563],[44.418961,-110.573532],[44.418701,-110.573509],[44.41843,-110.573517],[44.418091,-110.573624],[44.417728,-110.573822],[44.41753,-110.57399],[44.417351,-110.574181],[44.417198,-110.574379],[44.417061,-110.5746],[44.416828,-110.574966],[44.416672,-110.575241],[44.416569,-110.575409],[44.41655,-110.575447],[44.41642,-110.575684],[44.416279,-110.575897],[44.41613,-110.576118],[44.41597,-110.576302],[44.415791,-110.576462],[44.415611,-110.576607],[44.415421,-110.576759],[44.415211,-110.576912],[44.415009,-110.577072],[44.414829,-110.577263],[44.41465,-110.577477],[44.414501,-110.577713],[44.41436,-110.577927],[44.41399,-110.578568],[44.414249,-110.578827],[44.414452,-110.579033],[44.414661,-110.579231],[44.414921,-110.579483],[44.415211,-110.57975],[44.415501,-110.580017],[44.415791,-110.580299],[44.41608,-110.580582],[44.4165,-110.5811],[44.41663,-110.581299],[44.41687,-110.581734],[44.417122,-110.582161],[44.417358,-110.582588],[44.41753,-110.582893],[44.41761,-110.583023],[44.41785,-110.583458],[44.418098,-110.583893],[44.41835,-110.584343],[44.418598,-110.584763],[44.418831,-110.585182],[44.419079,-110.585602],[44.41935,-110.585991],[44.419682,-110.586288],[44.42004,-110.586479],[44.420422,-110.586563],[44.420799,-110.586578],[44.421169,-110.586578],[44.421539,-110.586578],[44.42189,-110.586578],[44.42223,-110.586601],[44.422539,-110.586693],[44.422821,-110.586868],[44.423111,-110.587128],[44.42334,-110.587471],[44.423512,-110.587883],[44.423611,-110.588333],[44.423649,-110.588814],[44.423618,-110.589333],[44.42355,-110.589867],[44.42345,-110.590378],[44.423321,-110.590851],[44.423149,-110.591263],[44.42292,-110.591599],[44.422642,-110.591873],[44.422329,-110.592033],[44.421989,-110.592133],[44.421638,-110.592117],[44.42144,-110.592072],[44.421291,-110.592003],[44.42091,-110.591881],[44.420521,-110.591743],[44.420139,-110.591621],[44.419731,-110.591583],[44.419338,-110.591621],[44.418961,-110.591743],[44.418591,-110.591919],[44.418228,-110.592171],[44.4179,-110.592491],[44.417599,-110.59288],[44.417339,-110.59333],[44.417122,-110.593842],[44.41695,-110.594398],[44.416851,-110.594978],[44.416801,-110.595558],[44.416809,-110.596123],[44.41687,-110.596657],[44.416981,-110.597183],[44.41713,-110.597656],[44.417332,-110.598106],[44.417542,-110.598534],[44.41777,-110.598969],[44.417992,-110.599403],[44.418209,-110.599854],[44.418449,-110.600304],[44.418671,-110.600761],[44.418911,-110.601227],[44.41917,-110.6017],[44.419411,-110.602173],[44.419651,-110.602631],[44.419891,-110.603104],[44.42012,-110.603577],[44.420349,-110.604073],[44.420582,-110.604561],[44.420799,-110.605057],[44.421021,-110.605553],[44.42123,-110.606056],[44.42144,-110.606567],[44.42165,-110.607079],[44.421848,-110.607597],[44.42205,-110.608131],[44.422241,-110.608658],[44.422428,-110.609177],[44.422619,-110.609711],[44.422798,-110.610229],[44.422989,-110.610764],[44.42318,-110.61129],[44.423382,-110.611816],[44.42358,-110.612373],[44.423779,-110.61293],[44.423981,-110.61348],[44.424179,-110.614029],[44.424381,-110.614563],[44.424568,-110.615097],[44.424759,-110.615623],[44.42495,-110.616158],[44.42514,-110.616676],[44.425339,-110.617218],[44.425541,-110.617752],[44.425751,-110.618279],[44.425961,-110.618782],[44.426159,-110.619278],[44.426361,-110.619759],[44.426571,-110.620232],[44.426788,-110.620712],[44.42701,-110.621193],[44.427219,-110.621674],[44.427429,-110.622139],[44.427639,-110.622597],[44.427849,-110.623062],[44.428082,-110.623543],[44.428299,-110.624023],[44.428532,-110.624519],[44.428761,-110.625031],[44.428989,-110.625542],[44.429218,-110.626053],[44.429451,-110.626556],[44.429668,-110.627037],[44.429901,-110.627533],[44.430111,-110.628014],[44.43034,-110.628487],[44.430561,-110.628967],[44.430771,-110.629448],[44.430988,-110.629921],[44.43121,-110.630386],[44.431419,-110.630867],[44.431641,-110.631363],[44.43187,-110.631844],[44.432388,-110.633003],[44.432529,-110.633301],[44.432739,-110.633774],[44.432949,-110.634247],[44.43314,-110.634727],[44.433311,-110.635223],[44.433472,-110.635712],[44.433601,-110.636223],[44.433708,-110.636719],[44.433811,-110.63723],[44.433891,-110.637749],[44.433949,-110.638268],[44.43399,-110.638786],[44.43401,-110.639297],[44.434021,-110.639793],[44.43401,-110.640297],[44.43399,-110.640793],[44.43396,-110.641296],[44.433929,-110.641823],[44.433899,-110.642372],[44.433861,-110.642952],[44.433819,-110.643539],[44.433781,-110.644142],[44.433739,-110.644737],[44.433701,-110.64534],[44.43367,-110.645927],[44.433632,-110.6465],[44.43359,-110.647057],[44.433559,-110.647636],[44.433529,-110.648216],[44.433529,-110.648781],[44.433559,-110.649353],[44.43362,-110.64991],[44.43367,-110.650467],[44.43372,-110.651016],[44.433769,-110.651558],[44.4338,-110.652077],[44.433769,-110.652588],[44.433659,-110.653069],[44.433491,-110.653503],[44.43325,-110.653839],[44.432968,-110.654099],[44.432652,-110.654289],[44.432301,-110.654457],[44.431961,-110.654617],[44.431622,-110.654793],[44.431309,-110.655006],[44.431049,-110.655312],[44.43084,-110.655678],[44.430698,-110.656097],[44.430611,-110.65654],[44.430599,-110.657013],[44.43066,-110.657463],[44.430779,-110.65789],[44.43095,-110.658287],[44.431171,-110.658684],[44.431339,-110.659073],[44.431511,-110.659508],[44.431622,-110.659973],[44.43166,-110.660454],[44.431629,-110.660919],[44.431541,-110.661369],[44.431389,-110.661789],[44.43119,-110.662163],[44.430962,-110.662498],[44.43071,-110.662827],[44.43047,-110.66317],[44.430248,-110.663559],[44.430069,-110.663979],[44.429932,-110.664436],[44.429829,-110.664917],[44.429779,-110.665421],[44.429779,-110.665909],[44.429821,-110.666397],[44.429909,-110.666847],[44.430031,-110.667313],[44.430161,-110.667763],[44.430271,-110.668221],[44.430351,-110.668709],[44.430359,-110.669197],[44.430302,-110.669693],[44.430222,-110.670158],[44.430149,-110.670624],[44.43013,-110.671082],[44.430161,-110.671539],[44.430241,-110.671989],[44.430389,-110.672401],[44.430592,-110.672813],[44.430779,-110.673187],[44.430969,-110.673576],[44.431171,-110.673973],[44.4314,-110.674309],[44.43166,-110.674599],[44.431961,-110.674812],[44.432308,-110.67495],[44.432659,-110.675056],[44.43301,-110.675163],[44.433361,-110.675247],[44.433731,-110.675362],[44.434101,-110.675461],[44.434479,-110.675507],[44.434849,-110.675499],[44.4352,-110.675453],[44.435551,-110.675346],[44.435902,-110.67524],[44.436241,-110.675133],[44.436588,-110.675018],[44.436932,-110.674919],[44.437271,-110.674797],[44.437599,-110.674698],[44.43792,-110.674591],[44.43824,-110.674477],[44.438549,-110.674423],[44.43885,-110.674408],[44.43914,-110.674477],[44.439411,-110.674606],[44.439659,-110.67482],[44.439911,-110.675072],[44.44014,-110.675346],[44.440361,-110.675621],[44.440609,-110.675858],[44.440868,-110.676033],[44.441151,-110.676147],[44.441441,-110.676193],[44.441738,-110.676163],[44.442032,-110.676132],[44.442329,-110.676147],[44.442619,-110.676239],[44.44289,-110.676407],[44.443138,-110.676651],[44.443359,-110.676949],[44.443581,-110.677292],[44.443821,-110.677597],[44.444111,-110.677834],[44.44442,-110.677963],[44.444759,-110.678017],[44.44508,-110.678001],[44.445412,-110.677963],[44.445728,-110.677917],[44.446041,-110.677872],[44.446362,-110.677834],[44.446671,-110.677803],[44.44698,-110.677773],[44.447289,-110.677803],[44.44759,-110.67791],[44.447868,-110.678101],[44.44812,-110.678368],[44.448318,-110.678711],[44.448471,-110.679123],[44.44857,-110.679558],[44.448601,-110.680023],[44.448601,-110.680496],[44.44857,-110.680977],[44.44854,-110.681458],[44.448528,-110.681953],[44.448559,-110.682426],[44.448662,-110.682892],[44.448818,-110.683319],[44.449051,-110.683678],[44.449341,-110.68396],[44.449638,-110.684196],[44.44997,-110.684387],[44.450291,-110.684563],[44.4506,-110.684738],[44.450909,-110.684914],[44.451221,-110.685097],[44.4515,-110.68531],[44.451771,-110.685577],[44.451981,-110.685928],[44.452129,-110.686333],[44.452229,-110.686737],[44.452259,-110.68718],[44.452221,-110.687599],[44.452141,-110.688011],[44.451988,-110.688393],[44.45179,-110.688728],[44.451542,-110.689003],[44.45126,-110.689209],[44.450951,-110.689346],[44.450619,-110.689453],[44.450291,-110.689552],[44.44997,-110.689651],[44.449669,-110.689774],[44.449402,-110.689949],[44.44915,-110.69017],[44.448929,-110.690437],[44.448738,-110.690742],[44.448589,-110.691093],[44.448479,-110.691437],[44.44841,-110.691803],[44.448399,-110.692139],[44.44841,-110.692467],[44.448441,-110.69278],[44.448509,-110.693077],[44.448608,-110.69339],[44.448719,-110.693733],[44.448841,-110.694092],[44.44894,-110.694473],[44.44899,-110.69487],[44.449001,-110.695297],[44.44894,-110.695717],[44.448818,-110.696136],[44.448639,-110.696518],[44.448399,-110.696861],[44.4482,-110.697067],[44.44812,-110.697159],[44.447849,-110.697449],[44.447571,-110.697746],[44.447289,-110.698051],[44.447262,-110.698097],[44.447048,-110.69838],[44.44685,-110.698761],[44.446701,-110.699173],[44.44659,-110.699608],[44.446548,-110.700073],[44.44656,-110.700523],[44.446621,-110.700974],[44.446739,-110.701401],[44.446819,-110.701607],[44.446899,-110.70182],[44.447102,-110.70224],[44.4473,-110.702667],[44.447491,-110.703087],[44.447659,-110.703506],[44.4478,-110.703957],[44.447899,-110.704391],[44.447979,-110.704842],[44.448021,-110.705276],[44.44804,-110.705719],[44.44804,-110.706146],[44.448009,-110.706573],[44.44796,-110.707024],[44.447868,-110.707458],[44.447769,-110.707893],[44.44767,-110.708321],[44.44759,-110.708763],[44.447552,-110.709198],[44.447529,-110.709648],[44.44751,-110.710114],[44.447498,-110.710564],[44.447479,-110.710991],[44.447441,-110.711433],[44.447392,-110.711853],[44.447311,-110.712257],[44.447189,-110.712646],[44.447029,-110.712997],[44.446819,-110.713318],[44.44656,-110.713562],[44.44627,-110.713722],[44.445969,-110.713821],[44.445641,-110.713867],[44.44529,-110.713867],[44.444962,-110.713852],[44.44463,-110.713837],[44.444302,-110.71386],[44.443989,-110.713951],[44.443699,-110.714119],[44.443451,-110.714371],[44.44323,-110.714684],[44.443062,-110.71505],[44.442928,-110.715439],[44.44281,-110.715843],[44.44268,-110.716232],[44.442551,-110.716614],[44.442402,-110.71698],[44.442249,-110.717339],[44.442089,-110.717682],[44.442032,-110.717812],[44.44191,-110.718002],[44.44173,-110.7183],[44.441639,-110.71846],[44.441551,-110.71859],[44.44141,-110.71888],[44.441269,-110.71917],[44.44112,-110.719429],[44.440941,-110.719673],[44.44072,-110.719917],[44.440498,-110.720177],[44.440289,-110.720444],[44.44009,-110.720711],[44.439892,-110.72097],[44.439659,-110.721237],[44.439461,-110.721497],[44.43927,-110.721817],[44.43911,-110.722198],[44.438961,-110.722588],[44.43882,-110.722977],[44.43866,-110.723381],[44.438499,-110.723763],[44.43832,-110.724121],[44.43811,-110.724442],[44.437859,-110.724716],[44.43763,-110.724968],[44.437382,-110.725227],[44.43716,-110.725563],[44.437,-110.725937],[44.436901,-110.726341],[44.436859,-110.726768],[44.43689,-110.727203],[44.43697,-110.727623],[44.437111,-110.727997],[44.43729,-110.728348],[44.437519,-110.728661],[44.43774,-110.728973],[44.43792,-110.729332],[44.438042,-110.729729],[44.43811,-110.730186],[44.438099,-110.730652],[44.438019,-110.731087],[44.437881,-110.731491],[44.437691,-110.731827],[44.43745,-110.732117],[44.43718,-110.732422],[44.436878,-110.732719],[44.436569,-110.73304],[44.436249,-110.733368],[44.435921,-110.733704],[44.4356,-110.734016],[44.43528,-110.734352],[44.43499,-110.734688],[44.43486,-110.734871],[44.434731,-110.735046],[44.434521,-110.735474],[44.434349,-110.735931],[44.434231,-110.736427],[44.43417,-110.736954],[44.434151,-110.737488],[44.43412,-110.738037],[44.434101,-110.738579],[44.434071,-110.739128],[44.43404,-110.739677],[44.434021,-110.740227],[44.43399,-110.740791],[44.433971,-110.741364],[44.433941,-110.741928],[44.43391,-110.742508],[44.43388,-110.74308],[44.433861,-110.743637],[44.433811,-110.744186],[44.433739,-110.74472],[44.43362,-110.745216],[44.433441,-110.745689],[44.43322,-110.746117],[44.432949,-110.746498],[44.432652,-110.746811],[44.432331,-110.747093],[44.43169,-110.747597],[44.431389,-110.747879],[44.431122,-110.748222],[44.430882,-110.748596],[44.430679,-110.749031],[44.430519,-110.749496],[44.430408,-110.750008],[44.430359,-110.750526],[44.430359,-110.751053],[44.430408,-110.751579],[44.430511,-110.752083],[44.430618,-110.752571],[44.43074,-110.753059],[44.430859,-110.753563],[44.430981,-110.754066],[44.431099,-110.75457],[44.431221,-110.755081],[44.431339,-110.755577],[44.43145,-110.756073],[44.431561,-110.756561],[44.431641,-110.757057],[44.43169,-110.757584],[44.43169,-110.758118],[44.431648,-110.758652],[44.431599,-110.759201],[44.431549,-110.759758],[44.431499,-110.760307],[44.43145,-110.760872],[44.4314,-110.761414],[44.431332,-110.761917],[44.43121,-110.762398],[44.431061,-110.762848],[44.43087,-110.76326],[44.43066,-110.763657],[44.43045,-110.764038],[44.430241,-110.764442],[44.43008,-110.764877],[44.429951,-110.765343],[44.429871,-110.765793],[44.42981,-110.766273],[44.42979,-110.766762],[44.429779,-110.767273],[44.429798,-110.767776],[44.42984,-110.768303],[44.429909,-110.768806],[44.429989,-110.769318],[44.430111,-110.769814],[44.430241,-110.770287],[44.430401,-110.770752],[44.430561,-110.77121],[44.430729,-110.77166],[44.430889,-110.77211],[44.431049,-110.772583],[44.43121,-110.773033],[44.431381,-110.773483],[44.43153,-110.773941],[44.43166,-110.774406],[44.431759,-110.77491],[44.431839,-110.775414],[44.431889,-110.775917],[44.431911,-110.776443],[44.431911,-110.776947],[44.431919,-110.777473],[44.431919,-110.778008],[44.431961,-110.778519],[44.432011,-110.779053],[44.432079,-110.779549],[44.432171,-110.780037],[44.43227,-110.780533],[44.432381,-110.781013],[44.432468,-110.781487],[44.432571,-110.781967],[44.432671,-110.782448],[44.43277,-110.782928],[44.432831,-110.783409],[44.432869,-110.783882],[44.43288,-110.78434],[44.432899,-110.784798],[44.43293,-110.78524],[44.432999,-110.785683],[44.43309,-110.786118],[44.433189,-110.786552],[44.4333,-110.786987],[44.433411,-110.787437],[44.433521,-110.787888],[44.43364,-110.788322],[44.43375,-110.788757],[44.433849,-110.789192],[44.43396,-110.789627],[44.434071,-110.790062],[44.434181,-110.790489],[44.434299,-110.790916],[44.434429,-110.791328],[44.434601,-110.791718],[44.434799,-110.792084],[44.435009,-110.792427],[44.43523,-110.792793],[44.43544,-110.793137],[44.43565,-110.793518],[44.43581,-110.793907],[44.435921,-110.794342],[44.435989,-110.794777],[44.43602,-110.795227],[44.436031,-110.79567],[44.436039,-110.796097],[44.436062,-110.796539],[44.436119,-110.796967],[44.436218,-110.797363],[44.436378,-110.797737],[44.436569,-110.798088],[44.436798,-110.798393],[44.437069,-110.798653],[44.437389,-110.798843],[44.437691,-110.798981],[44.438042,-110.799057],[44.43837,-110.799187],[44.438702,-110.799332],[44.439018,-110.799507],[44.439331,-110.799713],[44.43964,-110.799942],[44.439941,-110.800201],[44.440231,-110.800499],[44.440529,-110.800789],[44.44083,-110.801079],[44.441151,-110.801331],[44.441471,-110.801552],[44.441811,-110.801727],[44.442169,-110.801903],[44.442532,-110.802032],[44.44289,-110.802193],[44.443241,-110.802338],[44.443569,-110.802513],[44.44389,-110.802719],[44.444191,-110.802963],[44.44445,-110.803207],[44.444691,-110.803497],[44.444801,-110.803642],[44.445099,-110.804077],[44.445271,-110.804367],[44.44545,-110.804657],[44.445641,-110.804916],[44.445839,-110.805161],[44.446041,-110.805367],[44.44627,-110.805557],[44.44651,-110.805733],[44.446781,-110.805862],[44.447071,-110.805992],[44.44738,-110.806137],[44.447491,-110.806213],[44.447681,-110.806313],[44.447971,-110.806534],[44.44825,-110.806824],[44.44849,-110.80719],[44.448719,-110.807564],[44.44891,-110.80793],[44.44912,-110.808296],[44.449249,-110.808472],[44.449841,-110.809349],[44.450081,-110.809662],[44.450329,-110.809967],[44.4506,-110.810226],[44.450871,-110.810493],[44.45113,-110.810722],[44.451401,-110.810959],[44.451672,-110.811188],[44.45195,-110.811409],[44.452221,-110.811653],[44.45248,-110.811913],[44.452721,-110.81221],[44.45295,-110.812523],[44.453152,-110.812851],[44.453331,-110.813187],[44.453659,-110.813812],[44.453751,-110.814056],[44.453999,-110.814713],[44.454109,-110.815117],[44.454208,-110.815582],[44.454319,-110.816261],[44.45433,-110.816887],[44.454311,-110.817558],[44.454239,-110.818192],[44.45409,-110.818893],[44.454021,-110.819153],[44.453812,-110.819733],[44.453449,-110.820396],[44.453129,-110.820877],[44.4524,-110.82193],[44.452061,-110.82251],[44.45187,-110.823349],[44.45187,-110.824158],[44.451981,-110.824806],[44.452301,-110.825546],[44.45295,-110.826721],[44.453411,-110.827759],[44.453701,-110.828506],[44.454109,-110.829521],[44.454529,-110.830513],[44.454849,-110.831581],[44.455059,-110.832687],[44.455212,-110.833672],[44.45533,-110.834198],[44.455639,-110.835518],[44.455921,-110.836349],[44.456581,-110.837784],[44.457211,-110.838753],[44.45816,-110.84005],[44.459339,-110.841652],[44.459991,-110.842407],[44.460369,-110.842972],[44.46059,-110.8433],[44.46072,-110.843521],[44.46085,-110.843811],[44.461109,-110.844437],[44.46133,-110.845261],[44.461479,-110.846123],[44.46159,-110.846939],[44.461651,-110.847328],[44.461781,-110.848],[44.462059,-110.849007],[44.46249,-110.850143],[44.463001,-110.85125],[44.463161,-110.851509],[44.46357,-110.852127],[44.464069,-110.852707],[44.464619,-110.853233],[44.46508,-110.85363],[44.465778,-110.854118],[44.466919,-110.854881],[44.46785,-110.855507],[44.46854,-110.856056],[44.469349,-110.85675],[44.47047,-110.857651],[44.47102,-110.857826],[44.471531,-110.857887],[44.471889,-110.857857],[44.47226,-110.85778],[44.472672,-110.857597],[44.473759,-110.856758],[44.4743,-110.856354],[44.474861,-110.85601],[44.475609,-110.855598],[44.476311,-110.855263],[44.477131,-110.854919],[44.477871,-110.854691],[44.479561,-110.854172],[44.480492,-110.853912],[44.480572,-110.853889],[44.48127,-110.853539],[44.4818,-110.853203],[44.482391,-110.852814],[44.482811,-110.85247],[44.483059,-110.852257],[44.484192,-110.851379],[44.48481,-110.850838],[44.485458,-110.850273],[44.485901,-110.850014],[44.48634,-110.849854],[44.48708,-110.849663],[44.488129,-110.849442],[44.488548,-110.849312],[44.489029,-110.849113],[44.489479,-110.848824],[44.48991,-110.848419],[44.49041,-110.847862],[44.49102,-110.84697],[44.492249,-110.845131],[44.492649,-110.844543],[44.49361,-110.843086],[44.493999,-110.842499],[44.494461,-110.842018],[44.49482,-110.841667],[44.495392,-110.841293],[44.49601,-110.841042],[44.49646,-110.840927],[44.497452,-110.84079],[44.498119,-110.840569],[44.498718,-110.840172],[44.499222,-110.839668],[44.501469,-110.8367],[44.50185,-110.836258],[44.502319,-110.835762],[44.50288,-110.835327],[44.506329,-110.833603],[44.507011,-110.833366],[44.50758,-110.833237],[44.50798,-110.83326],[44.508492,-110.833359],[44.509701,-110.833992],[44.509911,-110.834106],[44.510151,-110.83416],[44.510529,-110.83419],[44.510841,-110.83416],[44.511238,-110.834],[44.5116,-110.833771],[44.5126,-110.833107],[44.513531,-110.832314],[44.51387,-110.83194],[44.51416,-110.831627],[44.514839,-110.830681],[44.515461,-110.829651],[44.51609,-110.828484],[44.51717,-110.82653],[44.517448,-110.825996],[44.517818,-110.825531],[44.51815,-110.825233],[44.518532,-110.824989],[44.518799,-110.82489],[44.519089,-110.824883],[44.519341,-110.824883],[44.519642,-110.824951],[44.519878,-110.825043],[44.520088,-110.825157],[44.520359,-110.825363],[44.520599,-110.825562],[44.520809,-110.825821],[44.521061,-110.826233],[44.521568,-110.827072],[44.521629,-110.827179],[44.522259,-110.828247],[44.522301,-110.828323],[44.522861,-110.829323],[44.523579,-110.830437],[44.524429,-110.831871],[44.52491,-110.832542],[44.525581,-110.833366],[44.526501,-110.834328],[44.526871,-110.834686],[44.52729,-110.834999],[44.52758,-110.835152],[44.527981,-110.835251],[44.5284,-110.835297],[44.5289,-110.83522],[44.529308,-110.835083],[44.529659,-110.8349],[44.5299,-110.834686],[44.530151,-110.83445],[44.530411,-110.834106],[44.530628,-110.833733],[44.53096,-110.832977],[44.531239,-110.832153],[44.532829,-110.827583],[44.533039,-110.826981],[44.533539,-110.825493],[44.533741,-110.824608],[44.53384,-110.824173],[44.533859,-110.823448],[44.533749,-110.822342],[44.53373,-110.821426],[44.53381,-110.820869],[44.533932,-110.82032],[44.534111,-110.819794],[44.534321,-110.819321],[44.534489,-110.818893],[44.53474,-110.81842],[44.535019,-110.817993],[44.535301,-110.817642],[44.535709,-110.817131],[44.54488,-110.809532],[44.546558,-110.808144],[44.548382,-110.806641],[44.54987,-110.805458],[44.550049,-110.805359],[44.55035,-110.805267],[44.550861,-110.805359],[44.551281,-110.805557],[44.551659,-110.805817],[44.552341,-110.806374],[44.552681,-110.806618],[44.552929,-110.806778],[44.55357,-110.80706],[44.553959,-110.807213],[44.555599,-110.807533],[44.55645,-110.807747],[44.55735,-110.808121],[44.558819,-110.809052],[44.563042,-110.811813],[44.566219,-110.813873],[44.56884,-110.815643],[44.56982,-110.81633],[44.570381,-110.816856],[44.571209,-110.817993],[44.5728,-110.820457],[44.573009,-110.820747],[44.573601,-110.821678],[44.574162,-110.822723],[44.574631,-110.823593],[44.574989,-110.824257],[44.57621,-110.826538],[44.577209,-110.828003],[44.57806,-110.828987],[44.5798,-110.830704],[44.580189,-110.830872],[44.580608,-110.83094],[44.581001,-110.830963],[44.581409,-110.830833],[44.581772,-110.830643],[44.582878,-110.829903],[44.583309,-110.829773],[44.58374,-110.829697],[44.584591,-110.829582],[44.585609,-110.829491],[44.586639,-110.829483],[44.586849,-110.829483],[44.58707,-110.829521],[44.588421,-110.829964],[44.58889,-110.830101],[44.589272,-110.830177],[44.589741,-110.830231],[44.591141,-110.830238],[44.592579,-110.830353],[44.595749,-110.830811],[44.597431,-110.831093],[44.598179,-110.831337],[44.599129,-110.83194],[44.5998,-110.832611],[44.600288,-110.833359],[44.600811,-110.834412],[44.601151,-110.834961],[44.601681,-110.835579],[44.602211,-110.836273],[44.60247,-110.836563],[44.60268,-110.836967],[44.602798,-110.837334],[44.602909,-110.837761],[44.603321,-110.839363],[44.60342,-110.839706],[44.60358,-110.840103],[44.60379,-110.840446],[44.604099,-110.841011],[44.604301,-110.841499],[44.604679,-110.842644],[44.60508,-110.843613],[44.60537,-110.844147],[44.605759,-110.844612],[44.606171,-110.845062],[44.60664,-110.845413],[44.60704,-110.845703],[44.607651,-110.846039],[44.608101,-110.846283],[44.608341,-110.846428],[44.60854,-110.84668],[44.608669,-110.846916],[44.608761,-110.847183],[44.608849,-110.847519],[44.608952,-110.84803],[44.609032,-110.848297],[44.609131,-110.848511],[44.609371,-110.848824],[44.609631,-110.84903],[44.610069,-110.84935],[44.610329,-110.849648],[44.61153,-110.850906],[44.61179,-110.851311],[44.61203,-110.851753],[44.612179,-110.852081],[44.612461,-110.85302],[44.612629,-110.853333],[44.61274,-110.8535],[44.612942,-110.853683],[44.613258,-110.853851],[44.614189,-110.85424],[44.614429,-110.854309],[44.614731,-110.854279],[44.61504,-110.854134],[44.61528,-110.854027],[44.61554,-110.853996],[44.61573,-110.854027],[44.616631,-110.854523],[44.617249,-110.85495],[44.61747,-110.855087],[44.61771,-110.855232],[44.61797,-110.855392],[44.618191,-110.855553],[44.618439,-110.855713],[44.61871,-110.855827],[44.618999,-110.855927],[44.619289,-110.856033],[44.619598,-110.856117],[44.619919,-110.856232],[44.620251,-110.856354],[44.62056,-110.856522],[44.620869,-110.856728],[44.621159,-110.856956],[44.621441,-110.857224],[44.6217,-110.857483],[44.62225,-110.858002],[44.62252,-110.858276],[44.622799,-110.858551],[44.623081,-110.85881],[44.623348,-110.859032],[44.623638,-110.8592],[44.62373,-110.859238],[44.623932,-110.859322],[44.624222,-110.85939],[44.624279,-110.859398],[44.624512,-110.859428],[44.624802,-110.859413],[44.62508,-110.859337],[44.625359,-110.85923],[44.625629,-110.859077],[44.625889,-110.858887],[44.62616,-110.858711],[44.626431,-110.858513],[44.62672,-110.858276],[44.627289,-110.857849],[44.62759,-110.857643],[44.62788,-110.85743],[44.62817,-110.857208],[44.628448,-110.857002],[44.628731,-110.856789],[44.629009,-110.856567],[44.629261,-110.856331],[44.629478,-110.856056],[44.629681,-110.855766],[44.629879,-110.855476],[44.63007,-110.855179],[44.63028,-110.854897],[44.630379,-110.854729],[44.630508,-110.854599],[44.630619,-110.854492],[44.630718,-110.854408],[44.630871,-110.854347],[44.631001,-110.854286],[44.63118,-110.854263],[44.631351,-110.854263],[44.631531,-110.854286],[44.631691,-110.854317],[44.63184,-110.854408],[44.631989,-110.854523],[44.632118,-110.85463],[44.63224,-110.854759],[44.632359,-110.854927],[44.632488,-110.855164],[44.63258,-110.855347],[44.632641,-110.855553],[44.632702,-110.855812],[44.632801,-110.856148],[44.63287,-110.856483],[44.632961,-110.856796],[44.633099,-110.857201],[44.63324,-110.85743],[44.633301,-110.857536],[44.633541,-110.857803],[44.633801,-110.857986],[44.634079,-110.858109],[44.63435,-110.858208],[44.634628,-110.858292],[44.634899,-110.858368],[44.635159,-110.858414],[44.63541,-110.858398],[44.635639,-110.858337],[44.635849,-110.858253],[44.63604,-110.858124],[44.636581,-110.85762],[44.636768,-110.857437],[44.636978,-110.857277],[44.637218,-110.857147],[44.637482,-110.857071],[44.63776,-110.857094],[44.63805,-110.857224],[44.638309,-110.857483],[44.638531,-110.857803],[44.638721,-110.858177],[44.638882,-110.858566],[44.63903,-110.85894],[44.63916,-110.859299],[44.639309,-110.85965],[44.639439,-110.859993],[44.639568,-110.860321],[44.639721,-110.860626],[44.639912,-110.860893],[44.640148,-110.861076],[44.6404,-110.861191],[44.640678,-110.861183],[44.64082,-110.861107],[44.640949,-110.861061],[44.64119,-110.86084],[44.641411,-110.86058],[44.641609,-110.860298],[44.641819,-110.860039],[44.64204,-110.85981],[44.642281,-110.859619],[44.642529,-110.859459],[44.642792,-110.859329],[44.643349,-110.859154],[44.64389,-110.859108],[44.644531,-110.858978],[44.645,-110.858749],[44.645409,-110.858421],[44.645802,-110.859161],[44.64603,-110.859871],[44.646141,-110.86039],[44.64624,-110.86097],[44.646278,-110.86145],[44.646271,-110.862053],[44.646191,-110.862877],[44.646049,-110.86499],[44.646091,-110.865532],[44.646118,-110.866013],[44.646191,-110.866417],[44.64674,-110.869308],[44.646729,-110.869797],[44.64666,-110.87027],[44.646519,-110.870781],[44.646278,-110.871231],[44.646049,-110.871536],[44.64566,-110.871841],[44.64513,-110.872047],[44.644581,-110.872208],[44.644421,-110.872269],[44.644138,-110.872391],[44.643799,-110.872551],[44.643372,-110.872879],[44.643002,-110.873291],[44.64267,-110.87381],[44.642399,-110.874496],[44.642109,-110.875397],[44.642071,-110.875542],[44.6418,-110.876472],[44.641399,-110.877747],[44.641319,-110.878052],[44.641041,-110.879173],[44.64061,-110.881317],[44.640339,-110.882584],[44.640079,-110.88401],[44.64003,-110.885002],[44.64006,-110.885811],[44.64011,-110.88649],[44.640221,-110.887337],[44.640331,-110.888344],[44.640381,-110.88913],[44.640369,-110.889969],[44.640251,-110.891724],[44.64019,-110.892677],[44.640259,-110.89344],[44.64043,-110.894501],[44.64064,-110.895172],[44.640888,-110.89579],[44.641441,-110.89666],[44.641762,-110.897041],[44.642311,-110.897682],[44.64259,-110.898079],[44.642818,-110.898567],[44.642979,-110.899063],[44.643089,-110.899696],[44.643089,-110.90036],[44.642971,-110.902161],[44.64291,-110.903267],[44.64291,-110.904129],[44.643009,-110.904831],[44.64307,-110.905151],[44.643181,-110.905708],[44.643452,-110.906929],[44.643509,-110.907379],[44.64349,-110.90818],[44.643429,-110.910248],[44.64349,-110.911087],[44.643768,-110.912857],[44.64378,-110.913918],[44.643791,-110.914291],[44.643829,-110.915199],[44.64386,-110.91539],[44.644371,-110.918373],[44.644642,-110.919861],[44.644661,-110.920036],[44.644711,-110.920403],[44.644791,-110.921577],[44.644791,-110.921707],[44.644798,-110.922157],[44.644821,-110.923149],[44.644939,-110.924377],[44.644989,-110.924698],[44.6451,-110.925484],[44.645401,-110.926689],[44.645721,-110.927643],[44.646599,-110.929604],[44.647598,-110.931824],[44.648331,-110.933403],[44.648659,-110.934128],[44.648769,-110.934563],[44.648849,-110.934914],[44.648899,-110.935837],[44.648899,-110.937553],[44.648899,-110.938843],[44.648911,-110.940117],[44.648918,-110.943077],[44.648998,-110.944794],[44.649391,-110.94825],[44.64941,-110.94838],[44.649471,-110.94899],[44.649551,-110.949989],[44.649559,-110.950897],[44.649551,-110.952118],[44.649609,-110.952957],[44.649712,-110.95372],[44.64991,-110.954407],[44.650242,-110.955139],[44.6507,-110.955803],[44.651199,-110.956299],[44.651649,-110.956581],[44.65218,-110.956779],[44.652802,-110.956833],[44.653511,-110.956757],[44.654831,-110.956642],[44.6553,-110.956657],[44.655731,-110.956718],[44.656219,-110.956963],[44.65675,-110.957283],[44.65786,-110.95816],[44.659302,-110.959541],[44.66016,-110.960449],[44.660851,-110.961128],[44.661381,-110.961678],[44.66143,-110.961723],[44.661751,-110.962044],[44.66206,-110.962349],[44.66235,-110.962677],[44.662621,-110.963028],[44.662739,-110.963226],[44.662861,-110.963417],[44.663059,-110.963837],[44.663239,-110.964272],[44.663269,-110.96434],[44.66341,-110.964699],[44.663502,-110.964943],[44.663601,-110.965187],[44.663891,-110.96595],[44.66407,-110.96637],[44.66428,-110.966789],[44.664391,-110.966972],[44.66452,-110.967194],[44.664791,-110.967567],[44.664841,-110.967644],[44.66507,-110.967957],[44.665359,-110.968361],[44.665661,-110.968773],[44.665951,-110.96917],[44.66626,-110.969566],[44.66655,-110.969994],[44.66684,-110.970421],[44.66711,-110.970879],[44.66737,-110.971352],[44.66761,-110.97184],[44.66785,-110.972328],[44.66806,-110.972809],[44.668251,-110.973297],[44.668442,-110.973793],[44.66861,-110.974297],[44.66877,-110.974823],[44.668911,-110.975349],[44.669029,-110.975883],[44.66914,-110.976433],[44.66922,-110.976982],[44.669258,-110.977547],[44.669258,-110.978111],[44.66922,-110.978668],[44.669128,-110.97921],[44.66901,-110.979736],[44.668861,-110.980247],[44.668678,-110.980721],[44.668468,-110.981163],[44.66827,-110.98159],[44.668159,-110.98185],[44.668091,-110.982018],[44.667931,-110.98243],[44.667789,-110.982857],[44.66766,-110.983276],[44.667549,-110.983711],[44.66745,-110.984131],[44.667339,-110.98455],[44.667229,-110.98497],[44.66711,-110.985397],[44.666981,-110.985817],[44.666851,-110.986237],[44.66671,-110.986656],[44.666561,-110.987083],[44.666401,-110.987503],[44.666248,-110.987923],[44.666088,-110.988327],[44.66592,-110.988739],[44.665741,-110.989143],[44.665562,-110.989517],[44.665371,-110.989906],[44.665161,-110.990257],[44.664921,-110.990593],[44.66465,-110.990868],[44.66436,-110.991119],[44.664051,-110.991333],[44.663731,-110.991493],[44.663391,-110.991608],[44.663029,-110.991661],[44.662682,-110.991669],[44.662319,-110.991623],[44.661968,-110.991524],[44.66161,-110.991386],[44.661251,-110.991257],[44.660889,-110.991142],[44.66053,-110.991013],[44.66016,-110.990883],[44.659801,-110.990761],[44.659439,-110.990646],[44.658989,-110.990517],[44.658741,-110.990463],[44.65839,-110.990402],[44.658039,-110.990379],[44.657669,-110.990387],[44.65731,-110.990417],[44.65694,-110.990479],[44.656582,-110.990578],[44.656342,-110.990646],[44.656231,-110.990692],[44.655899,-110.990837],[44.65556,-110.991013],[44.655239,-110.991219],[44.654911,-110.99144],[44.65461,-110.991692],[44.654308,-110.991966],[44.654011,-110.992271],[44.65374,-110.992592],[44.653469,-110.992943],[44.65321,-110.993317],[44.652981,-110.993713],[44.65276,-110.994141],[44.65255,-110.994583],[44.65237,-110.995041],[44.652199,-110.995499],[44.652061,-110.995972],[44.651939,-110.996452],[44.65184,-110.996933],[44.651741,-110.997421],[44.651661,-110.99791],[44.651569,-110.998413],[44.651489,-110.998909],[44.651402,-110.999413],[44.651299,-110.999924],[44.651192,-111.000427],[44.651081,-111.000961],[44.65094,-111.00148],[44.650841,-111.001877],[44.65081,-111.001999],[44.650478,-111.003197],[44.650082,-111.004547],[44.649899,-111.005318],[44.649841,-111.006104],[44.64996,-111.007553],[44.650089,-111.008598],[44.650131,-111.009361],[44.64994,-111.013138],[44.649929,-111.013573],[44.649879,-111.014816],[44.649799,-111.016937],[44.64978,-111.017281],[44.64975,-111.018059],[44.649792,-111.019073],[44.649872,-111.019661],[44.651138,-111.028427],[44.651199,-111.029289],[44.651211,-111.030121],[44.651051,-111.031914],[44.650951,-111.032898],[44.65086,-111.033943],[44.65086,-111.03466],[44.650928,-111.035187],[44.65107,-111.035629],[44.651409,-111.036652],[44.651821,-111.037819],[44.65218,-111.03907],[44.652691,-111.041557],[44.653172,-111.04409],[44.653221,-111.04467],[44.653259,-111.04509],[44.653252,-111.045532],[44.653198,-111.046219],[44.653091,-111.04686],[44.652592,-111.048813],[44.652111,-111.050774],[44.651958,-111.05146],[44.651741,-111.052757],[44.651569,-111.053978],[44.651459,-111.055168],[44.651428,-111.055618],[44.651402,-111.056198],[44.651371,-111.057243],[44.651402,-111.057991],[44.651428,-111.058388],[44.65147,-111.058647],[44.651482,-111.058746],[44.651539,-111.059067],[44.651611,-111.059357],[44.651699,-111.0597],[44.651798,-111.060013],[44.65192,-111.060349],[44.652061,-111.060699],[44.652538,-111.061813],[44.652729,-111.062233],[44.652828,-111.062477],[44.652931,-111.062737],[44.653069,-111.063118],[44.653118,-111.06324],[44.653271,-111.063751],[44.653412,-111.064377],[44.653481,-111.064827],[44.65353,-111.0653],[44.653549,-111.065643],[44.653568,-111.067101],[44.653542,-111.068489],[44.653542,-111.069092],[44.653561,-111.069366],[44.653599,-111.069794],[44.653641,-111.070129],[44.65366,-111.070221],[44.653858,-111.071533],[44.655491,-111.081146],[44.65659,-111.087982],[44.65696,-111.089813],[44.657188,-111.091507],[44.65728,-111.091927],[44.657619,-111.093437],[44.657761,-111.094032],[44.658001,-111.095001],[44.658508,-111.09671],[44.658619,-111.097069],[44.65863,-111.097107],[44.658669,-111.097298],[44.65868,-111.097382],[44.658691,-111.098503],[44.658691,-111.099693],[44.659599,-111.099678],[44.660488,-111.099663],[44.661381,-111.099678],[44.662239,-111.099678],[44.663059,-111.099678],[44.663891,-111.099693],[44.664768,-111.099762],[44.665039,-111.099777],[44.665821,-111.099854],[44.66663,-111.099876],[44.6679,-111.099983],[44.672428,-111.100227],[44.67329,-111.100288],[44.673599,-111.100304],[44.674431,-111.100357],[44.674931,-111.100388],[44.679779,-111.100677],[44.683048,-111.100906],[44.68676,-111.101089],[44.687119,-111.101112],[44.69006,-111.101357],[44.696659,-111.101768],[44.70068,-111.10202],[44.7034,-111.102188],[44.704411,-111.102249],[44.711048,-111.102623],[44.711559,-111.102654],[44.712261,-111.102692],[44.71302,-111.10273],[44.713589,-111.102737],[44.713928,-111.102753],[44.71434,-111.102798],[44.714901,-111.102837],[44.71545,-111.102867],[44.71587,-111.10289],[44.71653,-111.102943],[44.717289,-111.102982],[44.718189,-111.103058],[44.719082,-111.103203],[44.719952,-111.103416],[44.720791,-111.103706],[44.7216,-111.104042],[44.72242,-111.104446],[44.723251,-111.104912],[44.723911,-111.105293],[44.73175,-111.109734],[44.732491,-111.11013],[44.733109,-111.110481],[44.7341,-111.111053],[44.734989,-111.111557],[44.73568,-111.111938],[44.736462,-111.112343],[44.737331,-111.112694],[44.738281,-111.112984],[44.739269,-111.113152],[44.740261,-111.11322],[44.741291,-111.113228],[44.743301,-111.11322],[44.74522,-111.113228],[44.746181,-111.113243],[44.747131,-111.113243],[44.748081,-111.113251],[44.74905,-111.113251],[44.751949,-111.113243],[44.75293,-111.113258],[44.753868,-111.113258],[44.75499,-111.113274],[44.756039,-111.113258],[44.759232,-111.113274],[44.761311,-111.113274],[44.76236,-111.113258],[44.76342,-111.113274],[44.764481,-111.113281],[44.7654,-111.113281],[44.765961,-111.113281],[44.766121,-111.113289],[44.76701,-111.113281],[44.769272,-111.113281],[44.769291,-111.113289],[44.770069,-111.113297],[44.770229,-111.113297],[44.770569,-111.113289],[44.771099,-111.113297],[44.774181,-111.113281],[44.774288,-111.113274],[44.777,-111.113274],[44.77721,-111.113274],[44.77943,-111.113274],[44.779949,-111.113274],[44.780331,-111.113274],[44.78167,-111.113274],[44.781891,-111.113274],[44.78516,-111.113289],[44.785809,-111.113243],[44.786461,-111.113152],[44.787079,-111.112991],[44.787659,-111.112762],[44.788231,-111.112473],[44.788799,-111.112106],[44.789341,-111.111687],[44.789688,-111.111366],[44.789841,-111.111229],[44.790321,-111.110733],[44.790741,-111.110283],[44.791111,-111.109863],[44.791359,-111.109596],[44.794189,-111.106567],[44.7957,-111.10495],[44.796169,-111.104439],[44.796421,-111.104263],[44.796612,-111.104141],[44.796921,-111.104019],[44.79715,-111.103958],[44.79781,-111.103928],[44.798031,-111.103973],[44.798241,-111.104027],[44.798531,-111.104156],[44.79884,-111.104393],[44.799171,-111.104698],[44.799412,-111.105003],[44.799641,-111.105362],[44.799881,-111.105858],[44.800659,-111.10778],[44.800819,-111.108124],[44.800961,-111.108337],[44.801109,-111.108528],[44.801338,-111.108803],[44.801571,-111.109009],[44.801899,-111.109207],[44.802071,-111.109291],[44.802139,-111.109329],[44.80246,-111.109383],[44.802719,-111.10939],[44.803051,-111.109352],[44.803341,-111.109238],[44.80357,-111.109108],[44.803791,-111.108948],[44.80397,-111.10878],[44.804131,-111.108597],[44.804291,-111.108391],[44.804451,-111.108109],[44.804649,-111.107674],[44.804798,-111.10714],[44.80489,-111.106613],[44.805531,-111.102623],[44.805809,-111.101624],[44.806252,-111.100647],[44.80777,-111.097656],[44.807949,-111.097397],[44.80854,-111.096542],[44.808849,-111.096184],[44.809212,-111.095757],[44.810169,-111.094902],[44.810551,-111.094643],[44.81078,-111.09449],[44.811501,-111.094116],[44.812462,-111.093773],[44.820839,-111.090729],[44.82209,-111.090073],[44.822769,-111.0895],[44.823299,-111.08905],[44.82436,-111.087723],[44.829021,-111.080017],[44.829639,-111.079178],[44.830341,-111.078423],[44.83115,-111.077759],[44.832062,-111.077187],[44.841629,-111.0718],[44.848492,-111.067947],[44.849609,-111.067047],[44.850639,-111.065948],[44.851131,-111.065247],[44.852669,-111.062492],[44.855431,-111.057564],[44.855831,-111.056847],[44.856251,-111.056084],[44.8573,-111.054314],[44.859829,-111.049561],[44.860451,-111.048729],[44.86084,-111.048233],[44.861671,-111.047493],[44.864601,-111.045639],[44.86731,-111.044182],[44.868198,-111.043999],[44.868809,-111.043953],[44.869431,-111.044067],[44.871101,-111.044647],[44.872452,-111.045143],[44.874939,-111.046127],[44.875469,-111.046379],[44.875679,-111.046509],[44.87598,-111.046692],[44.876389,-111.047089],[44.87677,-111.047623],[44.878342,-111.050278],[44.878799,-111.050819],[44.87915,-111.051117],[44.879608,-111.051407],[44.880032,-111.05159],[44.880661,-111.051727],[44.881538,-111.051826],[44.882389,-111.05201],[44.884079,-111.052856],[44.885738,-111.05381],[44.886189,-111.054024],[44.886551,-111.054131],[44.886929,-111.05423],[44.887241,-111.054314],[44.88763,-111.054382],[44.887909,-111.054428],[44.888458,-111.054413],[44.889629,-111.054337],[44.89341,-111.054161],[44.893909,-111.054153],[44.899979,-111.05381],[44.90287,-111.05365],[44.90963,-111.053284],[44.91185,-111.053146],[44.918491,-111.052841],[44.922359,-111.052589],[44.923382,-111.052773],[44.92453,-111.05294],[44.92561,-111.053169],[44.927811,-111.053772],[44.928539,-111.053932],[44.932041,-111.054779],[44.940029,-111.056831],[44.94846,-111.05896],[44.950081,-111.059357],[44.952011,-111.059898],[44.952709,-111.060226],[44.953449,-111.060677],[44.954201,-111.061302],[44.954929,-111.062057],[44.955521,-111.062843],[44.956612,-111.064484],[44.958179,-111.066856],[44.958481,-111.067284],[44.96381,-111.075394],[44.96434,-111.076088],[44.965,-111.076782],[44.965729,-111.077393],[44.966511,-111.077904],[44.967331,-111.078293],[44.967449,-111.078323],[44.968231,-111.078552],[44.97094,-111.078743],[44.971111,-111.078751],[44.971149,-111.078751],[44.971279,-111.078758],[44.97168,-111.078773],[44.97411,-111.078903],[44.974899,-111.078941],[44.977539,-111.079063],[44.977718,-111.079063],[44.978779,-111.079117],[44.979889,-111.07917],[44.981041,-111.079231],[44.98214,-111.079277],[44.98428,-111.079391],[44.985352,-111.079437],[44.98608,-111.079483],[44.98637,-111.079491],[44.987381,-111.079536],[44.9883,-111.079582],[44.989422,-111.079643],[44.990471,-111.079689],[44.99152,-111.079727],[44.996941,-111.080009],[44.9991,-111.080101],[45.000118,-111.080162],[45.00111,-111.0802],[45.002079,-111.080254],[45.003021,-111.080276],[45.00465,-111.080368],[45.005268,-111.080406],[45.00655,-111.08046],[45.009022,-111.080582],[45.009838,-111.080673],[45.010639,-111.080856],[45.011341,-111.081131],[45.011822,-111.081383],[45.011921,-111.081444],[45.012131,-111.081551],[45.012291,-111.081657],[45.01255,-111.081848],[45.013,-111.082207],[45.0131,-111.082298],[45.013729,-111.082916],[45.014351,-111.083702],[45.01696,-111.087303],[45.01767,-111.088287],[45.019852,-111.091316],[45.020569,-111.092293],[45.02079,-111.092598],[45.022812,-111.095413],[45.02351,-111.096458],[45.024071,-111.097427],[45.024578,-111.098381],[45.025082,-111.099449],[45.025551,-111.100639],[45.026009,-111.101913],[45.026489,-111.103142],[45.027199,-111.105087],[45.027592,-111.106033],[45.028069,-111.107002],[45.028648,-111.107986],[45.02932,-111.108932],[45.029758,-111.109383],[45.030079,-111.109741],[45.030689,-111.110336],[45.031319,-111.110962],[45.03281,-111.112122],[45.033581,-111.112732],[45.034302,-111.113419],[45.034771,-111.113968],[45.034901,-111.114159],[45.035049,-111.114326],[45.03566,-111.115257],[45.03635,-111.116226],[45.037029,-111.11718],[45.037701,-111.118118],[45.03838,-111.119102],[45.038761,-111.119698],[45.039021,-111.120209],[45.03928,-111.120842],[45.040501,-111.124184],[45.040989,-111.125542],[45.041939,-111.128159],[45.042389,-111.129379],[45.042641,-111.129967],[45.04285,-111.130348],[45.043159,-111.130859],[45.043419,-111.131187],[45.043732,-111.1315],[45.04443,-111.132103],[45.044682,-111.132317],[45.045139,-111.132843],[45.045319,-111.13308],[45.045551,-111.133461],[45.04591,-111.134216],[45.04623,-111.13504],[45.047871,-111.139343],[45.048061,-111.139847],[45.04879,-111.141769],[45.049271,-111.143028],[45.04966,-111.144043],[45.049702,-111.144157],[45.050838,-111.147186],[45.052059,-111.150391],[45.05246,-111.151459],[45.052761,-111.152252],[45.053051,-111.152946],[45.053329,-111.153557],[45.053631,-111.154213],[45.053928,-111.154808],[45.054451,-111.155739],[45.054619,-111.156029],[45.054829,-111.156387],[45.055222,-111.156998],[45.055321,-111.15715],[45.05629,-111.158592],[45.05682,-111.159393],[45.058071,-111.161247],[45.059021,-111.162682],[45.059479,-111.163383],[45.060921,-111.165619],[45.061481,-111.166817],[45.061852,-111.168083],[45.06192,-111.168503],[45.062019,-111.169083],[45.062092,-111.170082],[45.062111,-111.171211],[45.06216,-111.172432],[45.062279,-111.17366],[45.0625,-111.174858],[45.062832,-111.176041],[45.063129,-111.17691],[45.063229,-111.177208],[45.0648,-111.181229],[45.065128,-111.182114],[45.0653,-111.182541],[45.06543,-111.182922],[45.066299,-111.185417],[45.066792,-111.18676],[45.067451,-111.188347],[45.067791,-111.189377],[45.067928,-111.189827],[45.069839,-111.194946],[45.070091,-111.19548],[45.070278,-111.195862],[45.070461,-111.196167],[45.070862,-111.196823],[45.0723,-111.198792],[45.07428,-111.2015],[45.074821,-111.202263],[45.074829,-111.202293],[45.07489,-111.202362],[45.074928,-111.202423],[45.074989,-111.202499],[45.075802,-111.203613],[45.07795,-111.206551],[45.07856,-111.207237],[45.079491,-111.207916],[45.079979,-111.208153],[45.080299,-111.20826],[45.08062,-111.208359],[45.082771,-111.208687],[45.083328,-111.208893],[45.084461,-111.209579],[45.088169,-111.212334],[45.08913,-111.212952],[45.090271,-111.213463],[45.09351,-111.214691],[45.09837,-111.21714],[45.099739,-111.217827],[45.09977,-111.217842],[45.101349,-111.218826],[45.10154,-111.218979],[45.104252,-111.22113],[45.10614,-111.222221],[45.107368,-111.222733],[45.114052,-111.224777],[45.114399,-111.224907],[45.11549,-111.225319],[45.115829,-111.225479],[45.116039,-111.225578],[45.11631,-111.225723],[45.11697,-111.226044],[45.117279,-111.226189],[45.117882,-111.226479],[45.118099,-111.226608],[45.118511,-111.226822],[45.12122,-111.228409],[45.12505,-111.230682],[45.125481,-111.23098],[45.127289,-111.232559],[45.12812,-111.233093],[45.132889,-111.235138],[45.13792,-111.23658],[45.138481,-111.236763],[45.13876,-111.236847],[45.138969,-111.236977],[45.139118,-111.237068],[45.139309,-111.237213],[45.139469,-111.237373],[45.139622,-111.237541],[45.13982,-111.237808],[45.139938,-111.237999],[45.14006,-111.23822],[45.140228,-111.238579],[45.140518,-111.239326],[45.140732,-111.239899],[45.140961,-111.240356],[45.141232,-111.240761],[45.14164,-111.241257],[45.14365,-111.243553],[45.14492,-111.244957],[45.14547,-111.245453],[45.14613,-111.245857],[45.146389,-111.24601],[45.146599,-111.246101],[45.146839,-111.246178],[45.147591,-111.246338],[45.14835,-111.246368],[45.149849,-111.246147],[45.153271,-111.245621],[45.153931,-111.245613],[45.154301,-111.24559],[45.154839,-111.245659],[45.155449,-111.245811],[45.155819,-111.245934],[45.156139,-111.24604],[45.15625,-111.246101],[45.15683,-111.246399],[45.156811,-111.246468],[45.156979,-111.246559],[45.15918,-111.248444],[45.159729,-111.248756],[45.160309,-111.248947],[45.160931,-111.249023],[45.161579,-111.248947],[45.16222,-111.248833],[45.16309,-111.248543],[45.16346,-111.248413],[45.16473,-111.247726],[45.165779,-111.246933],[45.167389,-111.245338],[45.167591,-111.245148],[45.16806,-111.244713],[45.168339,-111.244499],[45.16856,-111.244347],[45.168961,-111.24411],[45.169418,-111.243927],[45.169708,-111.243858],[45.174068,-111.243187],[45.17577,-111.242973],[45.176159,-111.242912],[45.176659,-111.242821],[45.177311,-111.242577],[45.17799,-111.242188],[45.178391,-111.241913],[45.179119,-111.241302],[45.179829,-111.240753],[45.179852,-111.240738],[45.180511,-111.240341],[45.18222,-111.239647],[45.18372,-111.239143],[45.18541,-111.238564],[45.18605,-111.238426],[45.1866,-111.238327],[45.187019,-111.238258],[45.187672,-111.238213],[45.18906,-111.238159],[45.18977,-111.23806],[45.19054,-111.237953],[45.19265,-111.237633],[45.194172,-111.23735],[45.194538,-111.237259],[45.195969,-111.237091],[45.196411,-111.23703],[45.196918,-111.236977],[45.197399,-111.237022],[45.19762,-111.237083],[45.19783,-111.237137],[45.198071,-111.237228],[45.198261,-111.23732],[45.198441,-111.237427],[45.19873,-111.23761],[45.211479,-111.246986],[45.212151,-111.247414],[45.212631,-111.247673],[45.213181,-111.247887],[45.217381,-111.249413],[45.219799,-111.25029],[45.220718,-111.250504],[45.220829,-111.250526],[45.221279,-111.250633],[45.22271,-111.250793],[45.222931,-111.250801],[45.223919,-111.250809],[45.225891,-111.250816],[45.22599,-111.250816],[45.226299,-111.250816],[45.227539,-111.250809],[45.227619,-111.250801],[45.228989,-111.250809],[45.231739,-111.250816],[45.23225,-111.250862],[45.232441,-111.25087],[45.23278,-111.250862],[45.235229,-111.25087],[45.236729,-111.25087],[45.237041,-111.250877],[45.2374,-111.25087],[45.237869,-111.250877],[45.239029,-111.250877],[45.239491,-111.250877],[45.24213,-111.250893],[45.242729,-111.250893],[45.24295,-111.250893],[45.243271,-111.250893],[45.24424,-111.250908],[45.244461,-111.250923],[45.244831,-111.250954],[45.245461,-111.251038],[45.245892,-111.251122],[45.24612,-111.251167],[45.246269,-111.251213],[45.24678,-111.251343],[45.247509,-111.251579],[45.247761,-111.251678],[45.248081,-111.251801],[45.24873,-111.252098],[45.249378,-111.252434],[45.250011,-111.252747],[45.250889,-111.25322],[45.25127,-111.253433],[45.251331,-111.253464],[45.25185,-111.253723],[45.252041,-111.253799],[45.25222,-111.253883],[45.252419,-111.25396],[45.253071,-111.254181],[45.253769,-111.254318],[45.25452,-111.254372],[45.256741,-111.254417],[45.257278,-111.254433],[45.25927,-111.254471],[45.259911,-111.25444],[45.260471,-111.254341],[45.260571,-111.254333],[45.2612,-111.254173],[45.263721,-111.253487],[45.264149,-111.253387],[45.264629,-111.253273],[45.26469,-111.253723],[45.264759,-111.25412],[45.264851,-111.254494],[45.26495,-111.254837],[45.26498,-111.254913],[45.265629,-111.256828],[45.26572,-111.257103],[45.265751,-111.257217],[45.265862,-111.257553],[45.265949,-111.257896],[45.266048,-111.258324],[45.266159,-111.258827],[45.26627,-111.259438],[45.26638,-111.260139],[45.26646,-111.260918],[45.266529,-111.261703],[45.266548,-111.262306],[45.26656,-111.262917],[45.26656,-111.263527],[45.266529,-111.264053],[45.266521,-111.264214],[45.266411,-111.26561],[45.266369,-111.266312],[45.26638,-111.266663],[45.266411,-111.267029],[45.266491,-111.26738],[45.266602,-111.267738],[45.266739,-111.268127],[45.266869,-111.268478],[45.267151,-111.269257],[45.267448,-111.270073],[45.267689,-111.270897],[45.267792,-111.271393],[45.267849,-111.271721],[45.26791,-111.272232],[45.267948,-111.272568],[45.26799,-111.273407],[45.268028,-111.274384],[45.268059,-111.275032],[45.268082,-111.275864],[45.2682,-111.278709],[45.26823,-111.279587],[45.26823,-111.280197],[45.26823,-111.280502],[45.268211,-111.281197],[45.268188,-111.281403],[45.268101,-111.28231],[45.267948,-111.283234],[45.26778,-111.284172],[45.267529,-111.285408],[45.267239,-111.286873],[45.266941,-111.288399],[45.26651,-111.29055],[45.266251,-111.29174],[45.266159,-111.292068],[45.26598,-111.292427],[45.26593,-111.292549],[45.265678,-111.292908],[45.26535,-111.293289],[45.264912,-111.293571],[45.2645,-111.29377],[45.264198,-111.293907],[45.263889,-111.294067],[45.26347,-111.294327],[45.262989,-111.294724],[45.262772,-111.294952],[45.262508,-111.29525],[45.26236,-111.295464],[45.26215,-111.295792],[45.261971,-111.29612],[45.261822,-111.29644],[45.2617,-111.296753],[45.261532,-111.297272],[45.261421,-111.297684],[45.261391,-111.297859],[45.261311,-111.298439],[45.261292,-111.298599],[45.26128,-111.298668],[45.261261,-111.299156],[45.261261,-111.299683],[45.261318,-111.30204],[45.26141,-111.304916],[45.261429,-111.305901],[45.261372,-111.306831],[45.261261,-111.307709],[45.261181,-111.308487],[45.261059,-111.30928],[45.26088,-111.310654],[45.260849,-111.310921],[45.260841,-111.311081],[45.260849,-111.311172],[45.260841,-111.31144],[45.260841,-111.311829],[45.26091,-111.31237],[45.260971,-111.312668],[45.261059,-111.312943],[45.26115,-111.31324],[45.261292,-111.313553],[45.261452,-111.31385],[45.261631,-111.31411],[45.261768,-111.314301],[45.262001,-111.314522],[45.262199,-111.314713],[45.262379,-111.314842],[45.26305,-111.315277],[45.26347,-111.315529],[45.264221,-111.316032],[45.264912,-111.316467],[45.265362,-111.316757],[45.266041,-111.3172],[45.26664,-111.317596],[45.266941,-111.317833],[45.267071,-111.317963],[45.26717,-111.318039],[45.267361,-111.31826],[45.26749,-111.318481],[45.26757,-111.318626],[45.267731,-111.319031],[45.267792,-111.319229],[45.267841,-111.319427],[45.267879,-111.319656],[45.267921,-111.319977],[45.267941,-111.320297],[45.267971,-111.320877],[45.26799,-111.321228],[45.268051,-111.322227],[45.268089,-111.32251],[45.26815,-111.322807],[45.26828,-111.323196],[45.268631,-111.324081],[45.26878,-111.324448],[45.269112,-111.325272],[45.26918,-111.325439],[45.269241,-111.32563],[45.269299,-111.32589],[45.269329,-111.326111],[45.26936,-111.326347],[45.269379,-111.32663],[45.269379,-111.326874],[45.269371,-111.327133],[45.269341,-111.327477],[45.26931,-111.328033],[45.26931,-111.3284],[45.269321,-111.328682],[45.269341,-111.328987],[45.269379,-111.329308],[45.26944,-111.329521],[45.269539,-111.329811],[45.26968,-111.330116],[45.269821,-111.330292],[45.27,-111.330513],[45.270199,-111.330673],[45.270409,-111.330803],[45.270641,-111.330872],[45.270821,-111.33091],[45.27108,-111.330887],[45.27132,-111.330833],[45.2715,-111.330772],[45.27219,-111.330383],[45.2729,-111.330009],[45.27309,-111.329948],[45.273312,-111.32988],[45.273609,-111.329857],[45.273861,-111.32988],[45.274101,-111.329933],[45.274319,-111.329971],[45.274681,-111.330132],[45.274979,-111.330353],[45.275291,-111.330643],[45.275551,-111.330978],[45.275791,-111.331467],[45.275959,-111.331779],[45.276051,-111.332024],[45.27615,-111.332352],[45.276211,-111.332703],[45.276249,-111.333076],[45.27626,-111.333412],[45.276279,-111.333672],[45.27626,-111.333977],[45.276241,-111.33432],[45.276169,-111.334663],[45.27586,-111.336151],[45.275761,-111.336609],[45.275669,-111.337181],[45.275639,-111.337486],[45.275631,-111.337753],[45.27565,-111.33815],[45.275681,-111.338463],[45.275761,-111.33886],[45.275829,-111.339104],[45.275909,-111.33931],[45.276081,-111.339684],[45.276279,-111.340057],[45.276409,-111.340271],[45.276772,-111.340813],[45.277359,-111.341362],[45.277988,-111.341873],[45.27858,-111.3424],[45.278721,-111.342583],[45.27887,-111.342812],[45.278992,-111.343086],[45.279049,-111.3433],[45.279099,-111.343559],[45.279121,-111.343773],[45.27911,-111.343964],[45.279099,-111.3442],[45.279079,-111.344322],[45.279049,-111.344437],[45.279011,-111.344566],[45.27895,-111.344727],[45.278919,-111.34481],[45.278851,-111.34494],[45.278641,-111.345207],[45.278461,-111.345444],[45.27829,-111.345581],[45.27824,-111.345627],[45.278069,-111.345741],[45.277901,-111.345901],[45.277802,-111.346024],[45.27742,-111.346474],[45.277328,-111.346603],[45.277248,-111.346809],[45.277199,-111.346992],[45.277168,-111.347122],[45.277161,-111.347458],[45.277168,-111.347778],[45.27721,-111.348099],[45.277382,-111.348969],[45.27758,-111.349892],[45.277802,-111.350792],[45.277981,-111.35125],[45.278141,-111.351562],[45.27858,-111.352203],[45.278881,-111.352676],[45.279202,-111.353142],[45.279411,-111.353371],[45.27961,-111.353554],[45.28014,-111.353813],[45.28075,-111.354027],[45.2813,-111.354263],[45.281712,-111.3545],[45.281872,-111.354683],[45.282028,-111.354919],[45.282299,-111.355553],[45.282539,-111.356323],[45.28273,-111.356987],[45.282749,-111.357307],[45.282742,-111.357597],[45.282589,-111.358307],[45.282551,-111.358597],[45.28252,-111.358887],[45.282509,-111.359108],[45.282539,-111.35936],[45.2826,-111.359627],[45.282688,-111.359909],[45.28302,-111.36071],[45.283352,-111.361588],[45.283661,-111.362457],[45.283871,-111.362938],[45.284039,-111.363281],[45.28418,-111.363457],[45.28455,-111.363983],[45.285061,-111.364662],[45.285389,-111.365158],[45.285561,-111.365433],[45.285709,-111.365738],[45.285858,-111.366058],[45.286018,-111.366562],[45.286079,-111.366783],[45.28611,-111.366867],[45.28616,-111.367142],[45.286221,-111.367554],[45.286259,-111.367981],[45.286282,-111.36837],[45.28627,-111.368813],[45.286221,-111.369293],[45.28616,-111.369667],[45.286079,-111.370033],[45.286018,-111.369987],[45.285992,-111.369972],[45.285931,-111.369926],[45.28582,-111.369858],[45.285641,-111.369713],[45.28561,-111.369682],[45.285591,-111.369659],[45.285542,-111.369652],[45.2854,-111.369614],[45.285271,-111.36956],[45.285118,-111.369476],[45.28508,-111.369438],[45.285049,-111.3694],[45.285019,-111.369347],[45.284939,-111.369247],[45.284901,-111.369102],[45.284889,-111.369034],[45.284851,-111.368919],[45.284821,-111.368881],[45.284729,-111.36882],[45.284599,-111.36866],[45.284512,-111.368584],[45.284409,-111.368477],[45.28437,-111.368423],[45.284328,-111.368362],[45.284321,-111.368317],[45.284309,-111.368263],[45.284321,-111.368202],[45.28437,-111.368103],[45.284389,-111.368057],[45.2845,-111.367973],[45.284569,-111.36792],[45.284698,-111.367897],[45.28476,-111.367897],[45.284828,-111.367912],[45.284908,-111.36792],[45.285069,-111.367882],[45.285301,-111.367767],[45.28537,-111.367699],[45.285549,-111.3675],[45.285568,-111.367554],[45.285599,-111.36763],[45.285622,-111.367706],[45.285629,-111.367859],[45.28561,-111.367996],[45.285591,-111.368217],[45.285561,-111.368446],[45.285488,-111.368767],[45.28548,-111.368881],[45.285461,-111.369072],[45.285461,-111.369164],[45.28548,-111.369339],[45.2855,-111.369423],[45.28553,-111.369499],[45.285549,-111.36956],[45.285591,-111.369621],[45.285591,-111.369659],[45.28561,-111.369682],[45.285641,-111.369713],[45.28582,-111.369858],[45.285931,-111.369926],[45.285992,-111.369972],[45.286018,-111.369987],[45.286079,-111.370033],[45.28616,-111.369667],[45.286221,-111.369293],[45.28627,-111.368813],[45.286282,-111.36837],[45.286259,-111.367981],[45.286221,-111.367554],[45.28616,-111.367142],[45.28611,-111.366867],[45.286079,-111.366783],[45.286018,-111.366562],[45.285858,-111.366058],[45.285709,-111.365738],[45.285561,-111.365433],[45.285389,-111.365158],[45.285061,-111.364662],[45.28455,-111.363983],[45.28418,-111.363457],[45.284039,-111.363281],[45.283871,-111.362938],[45.283661,-111.362457],[45.283352,-111.361588],[45.28302,-111.36071],[45.282688,-111.359909],[45.2826,-111.359627],[45.282539,-111.35936],[45.282509,-111.359108],[45.28252,-111.358887],[45.282551,-111.358597],[45.282589,-111.358307],[45.282742,-111.357597],[45.282749,-111.357307],[45.28273,-111.356987],[45.282539,-111.356323],[45.282299,-111.355553],[45.282028,-111.354919],[45.281872,-111.354683],[45.281712,-111.3545],[45.2813,-111.354263],[45.28075,-111.354027],[45.28014,-111.353813],[45.27961,-111.353554],[45.279411,-111.353371],[45.279202,-111.353142],[45.278881,-111.352676],[45.27858,-111.352203],[45.278141,-111.351562],[45.277981,-111.35125],[45.277802,-111.350792],[45.27758,-111.349892],[45.277382,-111.348969],[45.27721,-111.348099],[45.277168,-111.347778],[45.277161,-111.347458],[45.277168,-111.347122],[45.277199,-111.346992],[45.277248,-111.346809],[45.277328,-111.346603],[45.27742,-111.346474],[45.277802,-111.346024],[45.277901,-111.345901],[45.278069,-111.345741],[45.27824,-111.345627],[45.27829,-111.345581],[45.278461,-111.345444],[45.278641,-111.345207],[45.278851,-111.34494],[45.278919,-111.34481],[45.27895,-111.344727],[45.279011,-111.344566],[45.279049,-111.344437],[45.279079,-111.344322],[45.279099,-111.3442],[45.27911,-111.343964],[45.279121,-111.343773],[45.279099,-111.343559],[45.279049,-111.3433],[45.278992,-111.343086],[45.27887,-111.342812],[45.278721,-111.342583],[45.27858,-111.3424],[45.277988,-111.341873],[45.277359,-111.341362],[45.276772,-111.340813],[45.276409,-111.340271],[45.276279,-111.340057],[45.276081,-111.339684],[45.275909,-111.33931],[45.275829,-111.339104],[45.275761,-111.33886],[45.275681,-111.338463],[45.27565,-111.33815],[45.275631,-111.337753],[45.275639,-111.337486],[45.275669,-111.337181],[45.275761,-111.336609],[45.27586,-111.336151],[45.276169,-111.334663],[45.276241,-111.33432],[45.27626,-111.333977],[45.276279,-111.333672],[45.27626,-111.333412],[45.276249,-111.333076],[45.276211,-111.332703],[45.27615,-111.332352],[45.276051,-111.332024],[45.275959,-111.331779],[45.275791,-111.331467],[45.275551,-111.330978],[45.275291,-111.330643],[45.274979,-111.330353],[45.274681,-111.330132],[45.274319,-111.329971],[45.274101,-111.329933],[45.273861,-111.32988],[45.273609,-111.329857],[45.273312,-111.32988],[45.27309,-111.329948],[45.2729,-111.330009],[45.27219,-111.330383],[45.2715,-111.330772],[45.27132,-111.330833],[45.27108,-111.330887],[45.270821,-111.33091],[45.270641,-111.330872],[45.270409,-111.330803],[45.270199,-111.330673],[45.27,-111.330513],[45.269821,-111.330292],[45.26968,-111.330116],[45.269539,-111.329811],[45.26944,-111.329521],[45.269379,-111.329308],[45.269341,-111.328987],[45.269321,-111.328682],[45.26931,-111.3284],[45.26931,-111.328033],[45.269341,-111.327477],[45.269371,-111.327133],[45.269379,-111.326874],[45.269379,-111.32663],[45.26936,-111.326347],[45.269329,-111.326111],[45.269299,-111.32589],[45.269241,-111.32563],[45.26918,-111.325439],[45.269112,-111.325272],[45.26878,-111.324448],[45.268631,-111.324081],[45.26828,-111.323196],[45.26815,-111.322807],[45.268089,-111.32251],[45.268051,-111.322227],[45.26799,-111.321228],[45.267971,-111.320877],[45.267941,-111.320297],[45.267921,-111.319977],[45.267879,-111.319656],[45.267841,-111.319427],[45.267792,-111.319229],[45.267731,-111.319031],[45.26757,-111.318626],[45.26749,-111.318481],[45.267361,-111.31826],[45.26717,-111.318039],[45.267071,-111.317963],[45.266941,-111.317833],[45.26664,-111.317596],[45.266041,-111.3172],[45.265362,-111.316757],[45.264912,-111.316467],[45.264221,-111.316032],[45.26347,-111.315529],[45.26305,-111.315277],[45.262379,-111.314842],[45.262199,-111.314713],[45.262001,-111.314522],[45.261768,-111.314301],[45.261631,-111.31411],[45.261452,-111.31385],[45.261292,-111.313553],[45.26115,-111.31324],[45.261059,-111.312943],[45.260971,-111.312668],[45.26091,-111.31237],[45.260841,-111.311829],[45.260841,-111.31144],[45.260849,-111.311172],[45.260841,-111.311081],[45.260849,-111.310921],[45.26088,-111.310654],[45.261059,-111.30928],[45.261181,-111.308487],[45.261261,-111.307709],[45.261372,-111.306831],[45.261429,-111.305901],[45.26141,-111.304916],[45.261318,-111.30204],[45.261261,-111.299683],[45.261261,-111.299156],[45.26128,-111.298668],[45.261292,-111.298599],[45.261311,-111.298439],[45.261391,-111.297859],[45.261421,-111.297684],[45.261532,-111.297272],[45.2617,-111.296753],[45.261822,-111.29644],[45.261971,-111.29612],[45.26215,-111.295792],[45.26236,-111.295464],[45.262508,-111.29525],[45.262772,-111.294952],[45.262989,-111.294724],[45.26347,-111.294327],[45.263889,-111.294067],[45.264198,-111.293907],[45.2645,-111.29377],[45.264912,-111.293571],[45.26535,-111.293289],[45.265678,-111.292908],[45.26593,-111.292549],[45.26598,-111.292427],[45.266159,-111.292068],[45.266251,-111.29174],[45.26651,-111.29055],[45.266941,-111.288399],[45.267239,-111.286873],[45.267529,-111.285408],[45.26778,-111.284172],[45.267948,-111.283234],[45.268101,-111.28231],[45.268188,-111.281403],[45.268211,-111.281197],[45.26823,-111.280502],[45.26823,-111.280197],[45.26823,-111.279587],[45.2682,-111.278709],[45.268082,-111.275864],[45.268059,-111.275032],[45.268028,-111.274384],[45.26799,-111.273407],[45.267948,-111.272568],[45.26791,-111.272232],[45.267849,-111.271721],[45.267792,-111.271393],[45.267689,-111.270897],[45.267448,-111.270073],[45.267151,-111.269257],[45.266869,-111.268478],[45.266739,-111.268127],[45.266602,-111.267738],[45.266491,-111.26738],[45.266411,-111.267029],[45.26638,-111.266663],[45.266369,-111.266312],[45.266411,-111.26561],[45.266521,-111.264214],[45.266529,-111.264053],[45.26656,-111.263527],[45.26656,-111.262917],[45.266548,-111.262306],[45.266529,-111.261703],[45.26646,-111.260918],[45.26638,-111.260139],[45.26627,-111.259438],[45.266159,-111.258827],[45.266048,-111.258324],[45.265949,-111.257896],[45.265862,-111.257553],[45.265751,-111.257217],[45.26572,-111.257103],[45.265629,-111.256828],[45.26498,-111.254913],[45.26495,-111.254837],[45.264851,-111.254494],[45.264759,-111.25412],[45.26469,-111.253723],[45.264629,-111.253273],[45.264881,-111.253212],[45.26524,-111.253113],[45.2654,-111.253052],[45.265709,-111.252937],[45.266239,-111.252693],[45.266708,-111.252403],[45.26683,-111.252312],[45.267139,-111.252068],[45.26767,-111.251556],[45.26799,-111.251213],[45.268429,-111.250641],[45.268848,-111.249977],[45.268871,-111.249947],[45.26923,-111.249199],[45.269348,-111.248947],[45.2696,-111.248299],[45.269871,-111.247383],[45.2701,-111.246498],[45.270321,-111.245667],[45.270592,-111.244881],[45.27092,-111.24408],[45.27113,-111.243637],[45.271271,-111.243362],[45.271469,-111.242996],[45.27169,-111.242653],[45.27187,-111.242378],[45.27203,-111.242172],[45.272259,-111.24192],[45.27243,-111.241737],[45.272572,-111.241623],[45.27282,-111.241371],[45.273102,-111.241119],[45.27346,-111.240768],[45.273769,-111.240501],[45.27412,-111.240181],[45.274521,-111.239807],[45.27499,-111.239388],[45.275459,-111.23893],[45.27573,-111.238647],[45.276001,-111.238319],[45.276161,-111.238113],[45.276321,-111.237846],[45.276531,-111.237488],[45.276741,-111.237053],[45.276909,-111.236633],[45.27702,-111.236282],[45.27721,-111.235558],[45.277241,-111.235352],[45.27737,-111.234627],[45.2775,-111.233673],[45.277531,-111.233513],[45.277691,-111.232536],[45.277882,-111.231888],[45.278221,-111.23101],[45.278622,-111.230133],[45.279011,-111.229279],[45.2794,-111.228523],[45.27943,-111.228477],[45.2799,-111.22773],[45.280418,-111.22702],[45.280579,-111.226837],[45.280998,-111.226357],[45.28162,-111.2258],[45.281979,-111.225487],[45.282249,-111.225273],[45.282539,-111.225029],[45.28289,-111.224739],[45.283058,-111.224564],[45.283291,-111.224327],[45.283741,-111.223824],[45.284328,-111.223091],[45.284729,-111.22271],[45.285309,-111.22229],[45.285961,-111.221947],[45.286598,-111.221626],[45.286751,-111.221558],[45.286911,-111.221474],[45.287209,-111.221268],[45.28743,-111.2211],[45.287609,-111.220917],[45.28791,-111.22049],[45.28804,-111.220284],[45.288181,-111.219994],[45.2887,-111.218773],[45.28891,-111.218391],[45.289051,-111.218178],[45.28907,-111.218147],[45.289219,-111.217979],[45.28936,-111.21785],[45.289501,-111.217743],[45.2897,-111.217621],[45.29002,-111.217484],[45.29026,-111.217377],[45.290588,-111.217293],[45.2911,-111.21714],[45.29121,-111.217102],[45.29166,-111.216927],[45.292149,-111.216766],[45.293282,-111.216423],[45.293709,-111.216263],[45.294209,-111.216057],[45.294559,-111.215889],[45.29475,-111.215767],[45.29491,-111.215637],[45.29501,-111.215553],[45.29525,-111.215286],[45.295479,-111.215012],[45.2957,-111.21463],[45.29586,-111.214287],[45.296001,-111.213943],[45.296108,-111.21357],[45.296268,-111.212898],[45.296471,-111.211906],[45.2967,-111.210892],[45.296909,-111.209839],[45.29705,-111.209129],[45.297329,-111.207787],[45.297501,-111.206993],[45.297619,-111.206398],[45.2981,-111.204041],[45.298229,-111.203568],[45.298271,-111.203377],[45.298382,-111.203041],[45.298611,-111.202393],[45.298889,-111.201767],[45.298931,-111.201691],[45.299191,-111.201149],[45.299568,-111.200523],[45.29998,-111.199898],[45.30043,-111.199364],[45.30088,-111.198898],[45.30093,-111.198837],[45.30135,-111.198387],[45.30183,-111.197891],[45.30233,-111.19738],[45.30249,-111.197227],[45.302849,-111.196892],[45.303139,-111.196732],[45.303501,-111.196617],[45.304119,-111.196564],[45.304821,-111.19664],[45.305519,-111.196701],[45.305981,-111.196678],[45.306252,-111.196617],[45.306511,-111.196503],[45.30669,-111.196373],[45.306881,-111.196228],[45.307201,-111.195908],[45.307449,-111.195534],[45.307949,-111.194656],[45.308552,-111.193542],[45.308899,-111.192886],[45.30904,-111.192642],[45.309429,-111.192009],[45.310009,-111.191277],[45.310051,-111.191254],[45.31068,-111.190742],[45.311069,-111.190483],[45.31163,-111.190193],[45.311878,-111.190079],[45.312119,-111.18998],[45.312408,-111.189827],[45.312618,-111.189697],[45.31282,-111.189529],[45.31303,-111.189339],[45.313221,-111.18911],[45.313381,-111.188927],[45.314011,-111.188271],[45.314701,-111.187752],[45.315399,-111.18737],[45.31599,-111.18708],[45.316078,-111.187042],[45.31646,-111.186783],[45.31673,-111.186592],[45.31702,-111.186287],[45.31728,-111.185921],[45.317299,-111.185898],[45.317741,-111.185188],[45.31781,-111.185081],[45.318249,-111.184334],[45.318562,-111.183777],[45.32032,-111.180771],[45.320862,-111.179848],[45.321331,-111.179047],[45.321918,-111.178032],[45.32254,-111.176933],[45.323429,-111.175529],[45.32373,-111.175102],[45.323891,-111.17495],[45.32399,-111.174843],[45.324299,-111.174583],[45.325008,-111.174179],[45.325809,-111.17379],[45.326542,-111.173462],[45.32724,-111.173126],[45.327999,-111.172813],[45.32872,-111.1726],[45.32933,-111.172462],[45.330711,-111.172287],[45.33147,-111.172203],[45.332008,-111.172119],[45.33271,-111.172028],[45.33308,-111.171982],[45.335659,-111.171448],[45.337189,-111.171173],[45.338131,-111.170982],[45.33976,-111.170631],[45.34021,-111.170593],[45.34058,-111.170631],[45.340919,-111.170708],[45.341309,-111.170883],[45.3442,-111.172363],[45.344749,-111.172623],[45.345219,-111.172852],[45.345791,-111.173111],[45.346191,-111.173233],[45.346489,-111.173271],[45.346809,-111.173286],[45.347179,-111.173264],[45.347919,-111.173157],[45.34866,-111.173058],[45.350151,-111.172852],[45.350399,-111.172829],[45.35062,-111.172783],[45.350891,-111.172684],[45.351269,-111.172447],[45.35157,-111.172279],[45.351891,-111.172119],[45.35202,-111.17205],[45.352261,-111.171967],[45.352661,-111.171944],[45.353741,-111.171982],[45.3545,-111.171913],[45.35527,-111.171677],[45.356022,-111.171387],[45.357109,-111.170937],[45.357491,-111.170776],[45.357719,-111.1707],[45.3582,-111.170547],[45.358898,-111.170433],[45.35965,-111.17057],[45.360439,-111.170853],[45.361191,-111.171272],[45.36203,-111.17173],[45.362801,-111.172333],[45.363541,-111.172997],[45.36425,-111.173714],[45.364979,-111.174362],[45.365421,-111.174713],[45.366199,-111.175087],[45.366989,-111.175331],[45.367729,-111.175423],[45.36797,-111.17543],[45.368179,-111.175423],[45.368469,-111.175377],[45.369251,-111.175201],[45.370049,-111.17495],[45.370789,-111.174744],[45.370979,-111.17469],[45.371151,-111.174667],[45.371429,-111.174667],[45.371601,-111.174713],[45.371681,-111.174721],[45.371929,-111.174789],[45.373501,-111.175507],[45.373959,-111.17569],[45.37413,-111.175728],[45.374401,-111.175751],[45.374569,-111.175751],[45.37471,-111.175728],[45.374901,-111.175682],[45.37516,-111.175583],[45.375381,-111.175453],[45.375591,-111.175278],[45.375801,-111.175087],[45.376209,-111.174629],[45.376461,-111.174316],[45.37664,-111.174141],[45.37685,-111.173988],[45.37709,-111.173843],[45.377289,-111.173767],[45.377491,-111.173729],[45.377739,-111.173698],[45.37796,-111.173729],[45.378189,-111.173813],[45.37846,-111.17392],[45.378681,-111.174072],[45.37891,-111.174301],[45.379238,-111.174782],[45.37941,-111.17514],[45.379539,-111.175537],[45.379601,-111.175873],[45.379639,-111.176323],[45.37965,-111.176773],[45.379639,-111.176804],[45.379601,-111.177567],[45.379589,-111.178017],[45.379631,-111.178528],[45.37973,-111.179207],[45.380299,-111.181976],[45.380371,-111.18232],[45.380699,-111.184067],[45.38076,-111.184471],[45.380772,-111.18483],[45.380772,-111.185272],[45.380741,-111.186493],[45.380749,-111.186882],[45.380779,-111.187157],[45.380821,-111.1875],[45.380951,-111.188072],[45.381371,-111.18972],[45.381611,-111.19062],[45.381828,-111.191544],[45.38203,-111.192177],[45.382118,-111.192436],[45.382259,-111.192703],[45.382439,-111.192978],[45.382568,-111.193153],[45.382702,-111.193283],[45.382999,-111.193481],[45.38319,-111.193573],[45.383389,-111.193626],[45.383709,-111.19368],[45.384171,-111.193741],[45.384781,-111.19381],[45.38517,-111.193932],[45.385361,-111.194008],[45.385521,-111.194122],[45.38567,-111.194267],[45.38586,-111.194489],[45.385979,-111.194687],[45.38612,-111.194923],[45.386299,-111.195267],[45.386459,-111.195549],[45.386662,-111.195847],[45.386822,-111.196022],[45.387199,-111.19635],[45.38829,-111.197189],[45.389389,-111.198013],[45.389771,-111.198357],[45.389839,-111.198441],[45.389889,-111.198502],[45.390018,-111.198708],[45.390079,-111.198837],[45.39016,-111.19899],[45.390282,-111.19928],[45.39035,-111.19957],[45.390411,-111.199867],[45.390442,-111.200218],[45.390442,-111.200783],[45.390411,-111.201767],[45.390411,-111.202133],[45.390419,-111.202454],[45.390461,-111.202766],[45.390518,-111.203033],[45.390591,-111.203247],[45.39069,-111.203506],[45.3908,-111.203773],[45.390949,-111.204002],[45.39109,-111.20417],[45.39127,-111.204353],[45.391441,-111.204514],[45.3922,-111.204987],[45.392941,-111.205399],[45.39323,-111.205566],[45.394211,-111.206146],[45.39473,-111.206573],[45.394859,-111.206688],[45.394989,-111.206863],[45.395119,-111.207069],[45.395271,-111.207336],[45.39539,-111.207626],[45.39558,-111.208183],[45.395828,-111.208946],[45.396141,-111.209846],[45.396622,-111.210876],[45.397091,-111.211792],[45.397572,-111.212784],[45.397949,-111.213829],[45.398392,-111.214897],[45.39856,-111.215233],[45.39872,-111.215492],[45.398731,-111.215508],[45.398941,-111.215813],[45.39957,-111.216537],[45.39967,-111.216621],[45.40028,-111.217163],[45.401039,-111.217628],[45.401218,-111.217743],[45.401371,-111.217812],[45.401772,-111.217957],[45.40242,-111.218178],[45.40308,-111.218407],[45.403759,-111.218773],[45.404419,-111.219193],[45.40498,-111.219643],[45.405781,-111.220238],[45.406139,-111.220528],[45.40654,-111.220833],[45.40707,-111.221298],[45.407162,-111.221413],[45.40723,-111.221527],[45.40733,-111.221764],[45.407379,-111.221878],[45.407421,-111.222023],[45.40744,-111.222153],[45.407459,-111.222328],[45.407471,-111.222473],[45.407459,-111.22261],[45.407421,-111.222923],[45.407341,-111.22345],[45.407299,-111.223801],[45.407261,-111.224281],[45.407269,-111.22464],[45.40731,-111.225052],[45.407429,-111.225471],[45.407589,-111.225861],[45.40765,-111.22596],[45.407719,-111.226067],[45.407761,-111.226143],[45.40786,-111.226257],[45.40794,-111.226357],[45.408131,-111.22657],[45.40836,-111.226723],[45.408569,-111.226837],[45.410389,-111.227539],[45.41132,-111.227989],[45.4118,-111.228256],[45.412159,-111.228523],[45.412498,-111.228821],[45.4128,-111.229141],[45.412971,-111.22934],[45.413101,-111.229507],[45.413368,-111.229927],[45.413761,-111.230492],[45.41428,-111.231033],[45.41478,-111.231461],[45.414909,-111.231598],[45.414989,-111.231682],[45.41544,-111.232178],[45.41576,-111.232491],[45.416069,-111.232719],[45.416759,-111.232948],[45.41761,-111.233124],[45.41843,-111.233383],[45.419331,-111.233589],[45.419788,-111.233704],[45.419991,-111.233727],[45.420879,-111.23381],[45.4212,-111.233879],[45.421539,-111.234001],[45.42189,-111.234138],[45.422089,-111.2342],[45.422329,-111.234222],[45.42263,-111.234291],[45.423061,-111.234253],[45.42363,-111.234222],[45.424171,-111.234138],[45.4249,-111.233971],[45.426899,-111.233383],[45.427589,-111.233177],[45.42791,-111.233124],[45.428539,-111.233063],[45.42918,-111.233017],[45.430111,-111.233047],[45.4314,-111.233192],[45.432411,-111.233353],[45.433151,-111.233398],[45.433769,-111.233421],[45.434391,-111.233322],[45.434929,-111.23317],[45.435398,-111.233101],[45.436218,-111.23307],[45.436611,-111.233147],[45.43697,-111.233253],[45.438141,-111.233566],[45.439091,-111.233841],[45.43943,-111.23394],[45.439919,-111.234093],[45.44128,-111.234467],[45.441971,-111.23468],[45.442459,-111.23484],[45.443352,-111.235153],[45.443661,-111.23526],[45.444351,-111.235512],[45.44474,-111.235657],[45.44524,-111.235863],[45.445499,-111.235931],[45.446041,-111.236122],[45.446449,-111.236282],[45.446678,-111.236366],[45.447201,-111.236572],[45.448681,-111.237129],[45.449539,-111.23745],[45.449669,-111.237503],[45.44997,-111.237617],[45.45071,-111.237984],[45.451012,-111.23819],[45.451389,-111.238541],[45.45142,-111.238571],[45.451672,-111.238869],[45.451759,-111.238991],[45.452049,-111.239433],[45.452251,-111.239799],[45.452518,-111.240341],[45.453259,-111.241913],[45.453701,-111.24279],[45.45401,-111.243263],[45.45425,-111.243637],[45.454708,-111.244164],[45.45483,-111.244301],[45.45507,-111.244507],[45.45546,-111.24485],[45.455811,-111.245102],[45.456532,-111.245598],[45.456982,-111.245934],[45.457241,-111.246178],[45.45742,-111.246368],[45.457829,-111.246834],[45.458,-111.247017],[45.45919,-111.248207],[45.460369,-111.249352],[45.460609,-111.249611],[45.46077,-111.249809],[45.46096,-111.250076],[45.46125,-111.250603],[45.46143,-111.250992],[45.461601,-111.251404],[45.46175,-111.251846],[45.46199,-111.252663],[45.46207,-111.252892],[45.462219,-111.253258],[45.462391,-111.253616],[45.46262,-111.253983],[45.46283,-111.254257],[45.46299,-111.25444],[45.4632,-111.254631],[45.46394,-111.255188],[45.464359,-111.255577],[45.464668,-111.255913],[45.464981,-111.256317],[45.46521,-111.256737],[45.465439,-111.257233],[45.465611,-111.257843],[45.465851,-111.258873],[45.465969,-111.259293],[45.46608,-111.259651],[45.466221,-111.259979],[45.466389,-111.260292],[45.471069,-111.268097],[45.471661,-111.268883],[45.47234,-111.269386],[45.472382,-111.269417],[45.47398,-111.269897],[45.47411,-111.269913],[45.474339,-111.269928],[45.474758,-111.269958],[45.47538,-111.269943],[45.476952,-111.269913],[45.478241,-111.270042],[45.479858,-111.270432],[45.483189,-111.271233],[45.483971,-111.271294],[45.48661,-111.270882],[45.48753,-111.270897],[45.488411,-111.271103],[45.4893,-111.271446],[45.490971,-111.272301],[45.49147,-111.272423],[45.49168,-111.272469],[45.492432,-111.272423],[45.493912,-111.272133],[45.494419,-111.272018],[45.499199,-111.270958],[45.49958,-111.270844],[45.500278,-111.270622],[45.500702,-111.270378],[45.501049,-111.270081],[45.501801,-111.269257],[45.502441,-111.268517],[45.503139,-111.267899],[45.503731,-111.267517],[45.504681,-111.266876],[45.505192,-111.266373],[45.505959,-111.26532],[45.507111,-111.263603],[45.507259,-111.26339],[45.507721,-111.262733],[45.508369,-111.261887],[45.508629,-111.261597],[45.50906,-111.261131],[45.509769,-111.26046],[45.51049,-111.25988],[45.51123,-111.259323],[45.514099,-111.257103],[45.515018,-111.256393],[45.515251,-111.25621],[45.516022,-111.255623],[45.51659,-111.25518],[45.517941,-111.254044],[45.518581,-111.253563],[45.520241,-111.252281],[45.520729,-111.251877],[45.52092,-111.251694],[45.52108,-111.251503],[45.52121,-111.251373],[45.5215,-111.250977],[45.52177,-111.250603],[45.522282,-111.249832],[45.522739,-111.249207],[45.523022,-111.248894],[45.523418,-111.248306],[45.523941,-111.247597],[45.525311,-111.245659],[45.527031,-111.243362],[45.527721,-111.242416],[45.52882,-111.240883],[45.52977,-111.239609],[45.530479,-111.23864],[45.53072,-111.238312],[45.531231,-111.23761],[45.532261,-111.236198],[45.532879,-111.235329],[45.534081,-111.233727],[45.53545,-111.23185],[45.53619,-111.230827],[45.536861,-111.229927],[45.537479,-111.229103],[45.53764,-111.228882],[45.538109,-111.228233],[45.53867,-111.227478],[45.5387,-111.227432],[45.539181,-111.226784],[45.540031,-111.225723],[45.540211,-111.225449],[45.540329,-111.225304],[45.540371,-111.225258],[45.540581,-111.224968],[45.54108,-111.224251],[45.544811,-111.219147],[45.544998,-111.218887],[45.54557,-111.218109],[45.545952,-111.21759],[45.546379,-111.21701],[45.54697,-111.216187],[45.547089,-111.216026],[45.547852,-111.214989],[45.55167,-111.209763],[45.55241,-111.208687],[45.55344,-111.207283],[45.55378,-111.206818],[45.554169,-111.206291],[45.554829,-111.205383],[45.555119,-111.204987],[45.555531,-111.204407],[45.555729,-111.20414],[45.55624,-111.203453],[45.557961,-111.201118],[45.55965,-111.198807],[45.560429,-111.197983],[45.560822,-111.197632],[45.561569,-111.197182],[45.562038,-111.197006],[45.56242,-111.196877],[45.563351,-111.196793],[45.565189,-111.196823],[45.565659,-111.196823],[45.566299,-111.196808],[45.567169,-111.196808],[45.567459,-111.196823],[45.571918,-111.196877],[45.573078,-111.196892],[45.574242,-111.196907],[45.57542,-111.196907],[45.576481,-111.19693],[45.580021,-111.196968],[45.581181,-111.196983],[45.582432,-111.196991],[45.583778,-111.197006],[45.585911,-111.197037],[45.589321,-111.19706],[45.591148,-111.197067],[45.591282,-111.197067],[45.591759,-111.197067],[45.592159,-111.197006],[45.592289,-111.197006],[45.592339,-111.197006],[45.59243,-111.197006],[45.592899,-111.196968],[45.593559,-111.196907],[45.594318,-111.196854],[45.594429,-111.196838],[45.594818,-111.196808],[45.595058,-111.196777],[45.596771,-111.196632],[45.59774,-111.196533],[45.598351,-111.19648],[45.598831,-111.196426],[45.59914,-111.196404],[45.599491,-111.196373],[45.600578,-111.196281],[45.601589,-111.196213],[45.60265,-111.196114],[45.60363,-111.196022],[45.603821,-111.195999],[45.604839,-111.195908],[45.605751,-111.195831],[45.607071,-111.195732],[45.607231,-111.195732],[45.6082,-111.195732],[45.608528,-111.195763],[45.608822,-111.195793],[45.60931,-111.195839],[45.61124,-111.196098],[45.611931,-111.196213],[45.612461,-111.196274],[45.612831,-111.196327],[45.613091,-111.196358],[45.613861,-111.19648],[45.615849,-111.196747],[45.61697,-111.196899],[45.61816,-111.196991],[45.619381,-111.196991],[45.623798,-111.196922],[45.62664,-111.196877],[45.628761,-111.196869],[45.631699,-111.196838],[45.632511,-111.196823],[45.63842,-111.196747],[45.639919,-111.196709],[45.640862,-111.196571],[45.641541,-111.196404],[45.642021,-111.196243],[45.64238,-111.196114],[45.642658,-111.195976],[45.642921,-111.195847],[45.643341,-111.195633],[45.643848,-111.19532],[45.64571,-111.194107],[45.64629,-111.193748],[45.648979,-111.192017],[45.649391,-111.19175],[45.651489,-111.190399],[45.652061,-111.190048],[45.652699,-111.189636],[45.652908,-111.189491],[45.653172,-111.189331],[45.653599,-111.189056],[45.655449,-111.187859],[45.65667,-111.187073],[45.657169,-111.186737],[45.65778,-111.186394],[45.658131,-111.186234],[45.658329,-111.186157],[45.658649,-111.186058],[45.65876,-111.186028],[45.659012,-111.185966],[45.65955,-111.18589],[45.660049,-111.185837],[45.660339,-111.185822],[45.66048,-111.185806],[45.660931,-111.185806],[45.66119,-111.185806],[45.661369,-111.185806],[45.662941,-111.18576],[45.664101,-111.185738],[45.664841,-111.185707],[45.665211,-111.185699],[45.665619,-111.185677],[45.666351,-111.185677],[45.66647,-111.185669],[45.666679,-111.185661],[45.666779,-111.185661],[45.667198,-111.185654],[45.668251,-111.185631],[45.66946,-111.1856],[45.669979,-111.1856],[45.671131,-111.185608],[45.672279,-111.185623],[45.672951,-111.185631],[45.67355,-111.185638],[45.673752,-111.185638],[45.675411,-111.185661],[45.678871,-111.185677],[45.68227,-111.185677],[45.685509,-111.185707],[45.68573,-111.185707],[45.686901,-111.185707],[45.696411,-111.185463],[45.7001,-111.185341],[45.70158,-111.185333],[45.70557,-111.185318],[45.706032,-111.18531],[45.707241,-111.18531],[45.70739,-111.18531],[45.70937,-111.185303],[45.70956,-111.185303],[45.71048,-111.185303],[45.714699,-111.185287],[45.723942,-111.185181],[45.729279,-111.18512],[45.73642,-111.18515],[45.74229,-111.185173],[45.743851,-111.185181],[45.74641,-111.185188],[45.746681,-111.185188],[45.747349,-111.185188],[45.747681,-111.185188],[45.748371,-111.185204],[45.750011,-111.185204],[45.750591,-111.185211],[45.752392,-111.185219],[45.753441,-111.185226],[45.755428,-111.185226],[45.758411,-111.185249],[45.758968,-111.185242],[45.759338,-111.185226],[45.759731,-111.185226],[45.760189,-111.185219],[45.761978,-111.185188],[45.762409,-111.185181],[45.762909,-111.185173],[45.763161,-111.185173],[45.76387,-111.185158],[45.764519,-111.185143],[45.76466,-111.185143],[45.765881,-111.185158],[45.766842,-111.185158],[45.76767,-111.185158],[45.76783,-111.185158],[45.768688,-111.185173],[45.769089,-111.185143],[45.769112,-111.185333],[45.769131,-111.185532],[45.769161,-111.185837],[45.76926,-111.186623],[45.769329,-111.18708],[45.769371,-111.187317],[45.769489,-111.187843],[45.76955,-111.188103],[45.769619,-111.18837],[45.769901,-111.189407],[45.770618,-111.191338],[45.77113,-111.192459],[45.771679,-111.193497],[45.77224,-111.194481],[45.772949,-111.195488],[45.773949,-111.196663],[45.775169,-111.197807],[45.775742,-111.198273],[45.776711,-111.198914],[45.778278,-111.199654],[45.778999,-111.199837],[45.782269,-111.200562],[45.783298,-111.200829],[45.784229,-111.20118],[45.785118,-111.201622],[45.786362,-111.202423],[45.78754,-111.203407],[45.788849,-111.204826],[45.78981,-111.206139],[45.790421,-111.207161],[45.79166,-111.209503],[45.81012,-111.245247],[45.81694,-111.258614],[45.817162,-111.259033],[45.820278,-111.265083],[45.822361,-111.269112],[45.82296,-111.270287],[45.823181,-111.270721],[45.823681,-111.271683],[45.823719,-111.271744],[45.823959,-111.272186],[45.824032,-111.272324],[45.82457,-111.273376],[45.826031,-111.276154],[45.826401,-111.276848],[45.82703,-111.278023],[45.827579,-111.279037],[45.828209,-111.28022],[45.829102,-111.28186],[45.83062,-111.284698],[45.83086,-111.285103],[45.831478,-111.286247],[45.833271,-111.289673],[45.833752,-111.290558],[45.834358,-111.291733],[45.83498,-111.292877],[45.835899,-111.294594],[45.836658,-111.296013],[45.836842,-111.296356],[45.838509,-111.299477],[45.838661,-111.299751],[45.839951,-111.3022],[45.840618,-111.303452],[45.841869,-111.305801],[45.842979,-111.307892],[45.84375,-111.309341],[45.84449,-111.310707],[45.84486,-111.311462],[45.845119,-111.31205],[45.845451,-111.312813],[45.845669,-111.313393],[45.84584,-111.313873],[45.846031,-111.314407],[45.846359,-111.31543],[45.846722,-111.316833],[45.847092,-111.31855],[45.84726,-111.319633],[45.847439,-111.321007],[45.847618,-111.322403],[45.848061,-111.325951],[45.848141,-111.326683],[45.848728,-111.331131],[45.848831,-111.331993],[45.849072,-111.33374],[45.849312,-111.335449],[45.849548,-111.336922],[45.849911,-111.338417],[45.850281,-111.339622],[45.850929,-111.341339],[45.851501,-111.342529],[45.852119,-111.343597],[45.852631,-111.344391],[45.853142,-111.345093],[45.85408,-111.346207],[45.85648,-111.348549],[45.857281,-111.349472],[45.858109,-111.350616],[45.858822,-111.351753],[45.859509,-111.353073],[45.86005,-111.354347],[45.864971,-111.367287],[45.870869,-111.383041],[45.87159,-111.385109],[45.87212,-111.386993],[45.88142,-111.426323],[45.881729,-111.428139],[45.881901,-111.429649],[45.881989,-111.431847],[45.88205,-111.437469],[45.88205,-111.438263],[45.88208,-111.440948],[45.882111,-111.44252],[45.88221,-111.443909],[45.882401,-111.445236],[45.88245,-111.445572],[45.882671,-111.446777],[45.883041,-111.44825],[45.883579,-111.449829],[45.884041,-111.450996],[45.884682,-111.452301],[45.885399,-111.453529],[45.887539,-111.456467],[45.88842,-111.457993],[45.889069,-111.459343],[45.8895,-111.460449],[45.890202,-111.462677],[45.890518,-111.464157],[45.895439,-111.493317],[45.89555,-111.494011],[45.896439,-111.499138],[45.896549,-111.499763],[45.896839,-111.501411],[45.897079,-111.502853],[45.897282,-111.504288],[45.897449,-111.505814],[45.897591,-111.507317],[45.897671,-111.508812],[45.897739,-111.510094],[45.897758,-111.510818],[45.897758,-111.511848],[45.89782,-111.515846],[45.897831,-111.516449],[45.897888,-111.517639],[45.898071,-111.519417],[45.898281,-111.520866],[45.898701,-111.523064],[45.899281,-111.525436],[45.899818,-111.527428],[45.900009,-111.52813],[45.900391,-111.529488],[45.900661,-111.530418],[45.901649,-111.533897],[45.902611,-111.537392],[45.90292,-111.538368],[45.903309,-111.539383],[45.903702,-111.540237],[45.90432,-111.541389],[45.904652,-111.541924],[45.905201,-111.542709],[45.905762,-111.543381],[45.906582,-111.54425],[45.90696,-111.544594],[45.909142,-111.546387],[45.909851,-111.546951],[45.910519,-111.547493],[45.91246,-111.549072],[45.91341,-111.549927],[45.914589,-111.5513],[45.91573,-111.553009],[45.916279,-111.554062],[45.916721,-111.555008],[45.917141,-111.556038],[45.917549,-111.557182],[45.918011,-111.558823],[45.918461,-111.561394],[45.91856,-111.5625],[45.918652,-111.563629],[45.91869,-111.565353],[45.91851,-111.591599],[45.91848,-111.602119],[45.91843,-111.61335],[45.92041,-111.649017],[45.920521,-111.652267],[45.920471,-111.655022],[45.92025,-111.658661],[45.919571,-111.666107],[45.91951,-111.667679],[45.919449,-111.669388],[45.919449,-111.670883],[45.919491,-111.672432],[45.92033,-111.697983],[45.920349,-111.699417],[45.92033,-111.700691],[45.9202,-111.70237],[45.92004,-111.703796],[45.919842,-111.705009],[45.919609,-111.706123],[45.919289,-111.707474],[45.91893,-111.708702],[45.916,-111.718323],[45.915531,-111.720192],[45.915169,-111.72245],[45.91502,-111.723999],[45.914928,-111.725647],[45.914909,-111.737267],[45.914909,-111.748627],[45.914871,-111.750961],[45.9147,-111.754097],[45.91441,-111.757156],[45.909599,-111.787903],[45.909351,-111.78952],[45.908939,-111.791283],[45.908569,-111.792618],[45.901539,-111.814636],[45.901421,-111.815002],[45.899601,-111.820686],[45.899269,-111.821953],[45.893661,-111.847923],[45.893162,-111.849777],[45.892769,-111.850983],[45.89233,-111.852074],[45.888741,-111.860626],[45.88765,-111.862923],[45.884529,-111.868736],[45.884232,-111.86927],[45.883911,-111.869743],[45.883591,-111.870163],[45.883179,-111.870567],[45.882751,-111.870903],[45.881748,-111.871597],[45.88121,-111.872078],[45.880711,-111.872643],[45.880268,-111.873283],[45.879681,-111.874619],[45.87936,-111.876213],[45.879169,-111.880173],[45.87904,-111.881126],[45.878719,-111.882248],[45.8783,-111.883217],[45.877312,-111.88517],[45.87677,-111.886276],[45.87603,-111.888184],[45.875511,-111.889519],[45.87529,-111.890556],[45.87521,-111.891388],[45.875191,-111.892197],[45.875259,-111.892937],[45.87545,-111.893723],[45.875599,-111.894218],[45.87587,-111.894821],[45.876129,-111.895287],[45.876499,-111.895828],[45.8769,-111.89621],[45.87727,-111.8965],[45.877609,-111.896698],[45.87896,-111.89724],[45.879452,-111.89753],[45.879871,-111.897881],[45.88023,-111.898323],[45.880619,-111.898949],[45.880951,-111.899841],[45.88216,-111.903053],[45.882431,-111.904472],[45.88279,-111.907066],[45.882938,-111.908867],[45.88298,-111.90995],[45.882961,-111.911041],[45.882881,-111.912338],[45.882759,-111.913551],[45.882431,-111.915443],[45.88184,-111.917618],[45.881371,-111.918968],[45.88081,-111.920303],[45.880322,-111.921272],[45.87867,-111.924179],[45.875759,-111.929337],[45.87521,-111.930588],[45.87458,-111.932426],[45.87394,-111.933762],[45.871891,-111.937721],[45.871201,-111.939377],[45.870819,-111.940804],[45.870491,-111.942497],[45.87043,-111.94297],[45.87035,-111.943916],[45.870022,-111.949074],[45.869888,-111.950821],[45.86985,-111.952782],[45.869888,-111.954323],[45.86993,-111.954857],[45.870079,-111.956589],[45.870861,-111.96167],[45.87323,-111.977203],[45.876019,-111.99527],[45.876678,-111.999619],[45.876801,-112.000664],[45.8769,-112.001984],[45.8769,-112.004051],[45.876789,-112.005737],[45.876659,-112.00679],[45.875439,-112.014198],[45.87532,-112.014961],[45.87196,-112.035599],[45.871891,-112.036407],[45.871868,-112.03727],[45.871948,-112.038429],[45.872131,-112.039543],[45.872261,-112.040131],[45.87244,-112.040771],[45.873112,-112.042618],[45.873699,-112.044357],[45.87439,-112.046654],[45.875111,-112.049553],[45.875511,-112.051529],[45.875858,-112.053497],[45.87611,-112.05526],[45.876308,-112.057091],[45.87645,-112.058769],[45.876541,-112.060501],[45.87661,-112.062073],[45.876621,-112.063744],[45.876579,-112.075592],[45.87656,-112.081421],[45.876549,-112.084297],[45.87661,-112.087196],[45.876781,-112.091454],[45.877201,-112.096443],[45.87785,-112.101761],[45.87793,-112.10231],[45.878479,-112.105698],[45.879101,-112.108849],[45.88588,-112.141747],[45.893539,-112.178818],[45.89362,-112.179222],[45.901031,-112.215248],[45.90126,-112.216423],[45.90189,-112.219612],[45.903141,-112.227531],[45.90493,-112.2388],[45.905521,-112.242378],[45.905602,-112.242867],[45.906021,-112.245537],[45.907398,-112.254059],[45.908039,-112.25692],[45.908581,-112.258774],[45.909409,-112.261093],[45.913731,-112.271431],[45.914051,-112.272659],[45.91415,-112.273659],[45.914089,-112.274681],[45.913921,-112.27594],[45.913799,-112.27739],[45.913818,-112.278374],[45.914249,-112.281097],[45.914471,-112.282043],[45.915112,-112.285759],[45.915131,-112.286774],[45.915001,-112.287582],[45.914669,-112.288597],[45.913559,-112.291458],[45.912319,-112.295418],[45.91172,-112.297836],[45.911098,-112.300919],[45.91077,-112.30307],[45.910511,-112.305367],[45.910301,-112.307854],[45.910172,-112.311203],[45.910049,-112.318787],[45.909939,-112.319763],[45.909771,-112.320427],[45.909431,-112.321213],[45.909168,-112.321632],[45.908272,-112.322723],[45.907761,-112.323547],[45.907501,-112.324211],[45.907391,-112.324699],[45.907349,-112.325157],[45.907341,-112.325577],[45.907398,-112.32634],[45.90752,-112.326828],[45.907669,-112.327248],[45.907879,-112.327599],[45.908119,-112.327942],[45.908371,-112.328278],[45.908642,-112.328522],[45.908951,-112.328697],[45.909729,-112.328911],[45.910278,-112.329193],[45.91066,-112.329453],[45.911011,-112.329826],[45.911289,-112.330238],[45.91148,-112.330589],[45.911659,-112.331001],[45.911789,-112.331642],[45.91185,-112.33226],[45.9118,-112.333054],[45.911469,-112.334778],[45.910961,-112.337128],[45.9109,-112.337631],[45.910931,-112.338448],[45.911011,-112.339127],[45.911339,-112.340721],[45.911491,-112.341652],[45.91156,-112.342369],[45.911579,-112.343277],[45.911518,-112.344521],[45.910831,-112.349579],[45.91077,-112.350098],[45.91077,-112.350662],[45.910839,-112.351242],[45.910961,-112.351791],[45.911098,-112.352287],[45.91354,-112.359093],[45.91375,-112.359879],[45.91391,-112.360657],[45.91507,-112.367996],[45.915169,-112.369057],[45.915192,-112.370483],[45.914909,-112.373268],[45.914879,-112.373947],[45.91497,-112.375603],[45.915421,-112.378769],[45.9156,-112.380417],[45.915642,-112.381721],[45.91568,-112.38517],[45.915741,-112.386276],[45.915958,-112.38829],[45.916698,-112.392616],[45.91695,-112.394417],[45.91832,-112.408249],[45.918419,-112.408897],[45.918541,-112.409523],[45.91869,-112.410042],[45.91898,-112.410843],[45.91914,-112.411232],[45.921101,-112.415176],[45.921391,-112.416077],[45.921539,-112.417053],[45.921589,-112.418007],[45.921532,-112.418488],[45.921478,-112.41877],[45.92131,-112.419502],[45.921001,-112.420288],[45.92009,-112.421768],[45.919762,-112.422432],[45.919559,-112.423073],[45.919411,-112.423973],[45.91938,-112.424538],[45.919399,-112.425056],[45.919521,-112.425957],[45.919899,-112.427261],[45.920059,-112.427933],[45.920189,-112.42868],[45.920219,-112.429657],[45.92012,-112.433327],[45.920181,-112.43399],[45.9203,-112.434624],[45.92049,-112.435303],[45.9207,-112.435738],[45.920952,-112.436203],[45.921379,-112.436768],[45.922958,-112.438713],[45.92337,-112.439262],[45.923771,-112.440063],[45.924351,-112.441833],[45.924591,-112.442337],[45.924889,-112.442833],[45.92524,-112.44326],[45.925621,-112.443626],[45.92609,-112.443947],[45.927132,-112.444344],[45.927898,-112.444847],[45.928341,-112.445236],[45.928719,-112.445709],[45.92902,-112.446228],[45.93005,-112.44873],[45.930309,-112.449257],[45.930729,-112.449898],[45.931068,-112.450279],[45.931561,-112.450638],[45.932541,-112.451424],[45.933022,-112.451721],[45.934429,-112.45282],[45.934738,-112.453011],[45.935581,-112.453629],[45.936371,-112.454323],[45.93726,-112.455307],[45.93803,-112.456001],[45.939861,-112.457199],[45.94088,-112.457932],[45.94136,-112.45842],[45.941929,-112.459106],[45.94249,-112.4599],[45.943119,-112.46109],[45.943748,-112.462181],[45.944382,-112.463013],[45.944859,-112.463539],[45.94569,-112.464256],[45.9464,-112.464722],[45.947029,-112.465073],[45.956779,-112.469658],[45.963261,-112.472763],[45.964699,-112.473373],[45.96645,-112.474167],[45.967369,-112.474548],[45.968441,-112.474869],[45.974411,-112.476021],[45.97496,-112.476242],[45.975491,-112.476532],[45.976719,-112.477257],[45.977402,-112.477654],[45.978588,-112.478447],[45.979061,-112.478851],[45.979389,-112.479218],[45.979752,-112.479698],[45.980091,-112.480232],[45.980431,-112.48082],[45.980598,-112.481163],[45.980968,-112.482193],[45.981079,-112.482658],[45.981251,-112.483856],[45.981361,-112.485474],[45.981339,-112.486717],[45.981312,-112.488411],[45.981319,-112.4897],[45.9813,-112.490349],[45.98119,-112.491257],[45.981091,-112.492081],[45.980968,-112.492752],[45.980831,-112.493271],[45.980572,-112.494186],[45.980202,-112.495354],[45.979969,-112.496231],[45.979832,-112.496933],[45.979759,-112.497711],[45.97974,-112.498596],[45.979771,-112.499481],[45.979858,-112.500259],[45.980042,-112.501053],[45.98027,-112.50177],[45.98053,-112.502449],[45.98085,-112.503143],[45.9813,-112.50383],[45.98177,-112.504417],[45.982281,-112.504967],[45.98278,-112.505547],[45.983318,-112.506157],[45.983768,-112.506866],[45.984192,-112.50769],[45.984539,-112.508492],[45.984711,-112.508949],[45.985001,-112.509956],[45.98547,-112.511864],[45.986179,-112.514603],[45.9865,-112.515747],[45.986851,-112.516876],[45.991798,-112.529602],[45.99213,-112.530602],[45.992329,-112.531517],[45.992481,-112.532402],[45.992531,-112.533043],[45.992538,-112.533897],[45.99255,-112.538673],[45.992538,-112.539482],[45.99255,-112.544571],[45.9925,-112.547546],[45.992519,-112.549469],[45.99255,-112.552177],[45.992611,-112.553192],[45.992741,-112.554169],[45.992939,-112.555008],[45.994339,-112.559799],[45.994591,-112.560623],[45.994949,-112.56147],[45.995399,-112.562233],[45.995838,-112.562866],[45.996231,-112.563316],[45.99691,-112.563904],[45.99752,-112.564278],[45.99894,-112.565163],[45.99968,-112.565742],[46.000961,-112.566658],[46.0019,-112.567436],[46.002522,-112.568024],[46.003101,-112.568741],[46.003521,-112.56942],[46.00386,-112.570061],[46.004318,-112.570961],[46.004688,-112.571823],[46.005009,-112.572899],[46.00523,-112.573837],[46.005379,-112.574783],[46.005459,-112.575729],[46.005501,-112.577187],[46.00552,-112.577789],[46.00568,-112.582047],[46.006168,-112.594887],[46.006519,-112.604584],[46.006649,-112.607887],[46.006729,-112.609573],[46.006821,-112.610748],[46.00687,-112.611252],[46.007172,-112.613838],[46.007401,-112.61557],[46.00782,-112.618423],[46.008228,-112.621277],[46.00869,-112.62439],[46.008839,-112.625603],[46.00893,-112.626869],[46.00898,-112.628166],[46.008999,-112.628792],[46.008949,-112.629997],[46.008869,-112.631393],[46.008461,-112.63652],[46.008381,-112.637527],[46.008289,-112.638687],[46.007931,-112.64325],[46.00774,-112.645142],[46.007149,-112.652496],[46.007099,-112.653542],[46.00708,-112.654823],[46.007141,-112.656013],[46.007729,-112.661217],[46.008289,-112.666496],[46.009529,-112.67897],[46.00996,-112.683357],[46.01009,-112.684967],[46.010151,-112.686333],[46.010189,-112.687973],[46.010231,-112.68914],[46.010208,-112.689774],[46.010231,-112.697197],[46.01025,-112.704437],[46.010281,-112.70578],[46.010342,-112.706703],[46.010471,-112.707474],[46.01067,-112.708267],[46.010811,-112.708801],[46.011089,-112.709427],[46.01144,-112.710159],[46.011951,-112.710907],[46.0131,-112.712517],[46.017849,-112.719048],[46.022331,-112.725197],[46.02354,-112.726784],[46.024399,-112.727608],[46.025249,-112.728241],[46.028999,-112.730659],[46.029869,-112.731117],[46.030819,-112.731506],[46.03183,-112.731857],[46.032688,-112.732071],[46.035309,-112.73259],[46.03635,-112.732803],[46.036991,-112.733009],[46.037781,-112.733429],[46.038311,-112.733849],[46.038879,-112.734467],[46.039391,-112.735207],[46.0411,-112.738213],[46.041801,-112.739258],[46.042751,-112.740433],[46.04401,-112.741829],[46.04501,-112.743042],[46.04686,-112.745552],[46.048321,-112.74791],[46.049889,-112.750504],[46.05114,-112.752563],[46.051609,-112.753319],[46.052101,-112.754097],[46.053059,-112.755547],[46.05513,-112.758636],[46.05658,-112.760803],[46.060379,-112.766434],[46.061661,-112.768333],[46.06451,-112.772591],[46.064949,-112.773216],[46.065891,-112.774628],[46.06752,-112.777023],[46.068291,-112.778191],[46.069328,-112.779747],[46.06992,-112.780609],[46.0709,-112.781822],[46.071571,-112.782593],[46.072441,-112.783447],[46.073681,-112.784477],[46.074749,-112.785172],[46.07597,-112.785812],[46.07679,-112.786163],[46.085091,-112.789001],[46.089458,-112.790482],[46.094429,-112.792183],[46.09911,-112.793777],[46.102211,-112.794823],[46.10598,-112.796112],[46.109539,-112.797333],[46.11491,-112.799171],[46.115662,-112.7994],[46.1166,-112.799553],[46.117279,-112.799561],[46.118,-112.799461],[46.122261,-112.798622],[46.122391,-112.798599],[46.122532,-112.798569],[46.13015,-112.797089],[46.145111,-112.794167],[46.15501,-112.792236],[46.1633,-112.790611],[46.1646,-112.790337],[46.166489,-112.789787],[46.16761,-112.789368],[46.168671,-112.78891],[46.170441,-112.788033],[46.172211,-112.78698],[46.173199,-112.7864],[46.17421,-112.785873],[46.175758,-112.785156],[46.176762,-112.78476],[46.177738,-112.784416],[46.17918,-112.783997],[46.180328,-112.783737],[46.181252,-112.783577],[46.181862,-112.783478],[46.18298,-112.783371],[46.183811,-112.783333],[46.18499,-112.783333],[46.186539,-112.783379],[46.187019,-112.783386],[46.18829,-112.783386],[46.189678,-112.783302],[46.19083,-112.783173],[46.192101,-112.782944],[46.193089,-112.782707],[46.194111,-112.782417],[46.194988,-112.782143],[46.196232,-112.781677],[46.20488,-112.77832],[46.20845,-112.776939],[46.208679,-112.77684],[46.21534,-112.774269],[46.218781,-112.772926],[46.223171,-112.771248],[46.227089,-112.769707],[46.22908,-112.768921],[46.230679,-112.768158],[46.233082,-112.766731],[46.233929,-112.766228],[46.235069,-112.76564],[46.236279,-112.765091],[46.237309,-112.764664],[46.237679,-112.764519],[46.238571,-112.764214],[46.239769,-112.763847],[46.24194,-112.763367],[46.24321,-112.763161],[46.244091,-112.762947],[46.24585,-112.762413],[46.251381,-112.760277],[46.254841,-112.758926],[46.257721,-112.75779],[46.258911,-112.757103],[46.26001,-112.756241],[46.261299,-112.75489],[46.2621,-112.753937],[46.262939,-112.752991],[46.264622,-112.751411],[46.265732,-112.750488],[46.266682,-112.749847],[46.26833,-112.748863],[46.269779,-112.748177],[46.271469,-112.747597],[46.273529,-112.747147],[46.274239,-112.74707],[46.27541,-112.747047],[46.278198,-112.747131],[46.282471,-112.747292],[46.28693,-112.747459],[46.288502,-112.747429],[46.28978,-112.747322],[46.293171,-112.747017],[46.301201,-112.746277],[46.307671,-112.745712],[46.313568,-112.745178],[46.317219,-112.744827],[46.317551,-112.744812],[46.323582,-112.744263],[46.33152,-112.743553],[46.343349,-112.74247],[46.34832,-112.741997],[46.356319,-112.741287],[46.360939,-112.74086],[46.36705,-112.740288],[46.36948,-112.740059],[46.370609,-112.73996],[46.371498,-112.739807],[46.372261,-112.739517],[46.372921,-112.739166],[46.373569,-112.738693],[46.374111,-112.738159],[46.374619,-112.737518],[46.375751,-112.735809],[46.376049,-112.735367],[46.378132,-112.732239],[46.380131,-112.729347],[46.381691,-112.727013],[46.382671,-112.725731],[46.382992,-112.72538],[46.384048,-112.724426],[46.386452,-112.722504],[46.389351,-112.720207],[46.390671,-112.719337],[46.392231,-112.718552],[46.39357,-112.717987],[46.394779,-112.717628],[46.3964,-112.717308],[46.397129,-112.717247],[46.39753,-112.717209],[46.39893,-112.717201],[46.400478,-112.717392],[46.401951,-112.717728],[46.402908,-112.718048],[46.403851,-112.718437],[46.404911,-112.718964],[46.406029,-112.719582],[46.408039,-112.72097],[46.40868,-112.721413],[46.40921,-112.721809],[46.41011,-112.722351],[46.411228,-112.722839],[46.41185,-112.723038],[46.412189,-112.723122],[46.413319,-112.723282],[46.414219,-112.723297],[46.41658,-112.723282],[46.417271,-112.723267],[46.425968,-112.723228],[46.440331,-112.723152],[46.443451,-112.723137],[46.446911,-112.723129],[46.456841,-112.723083],[46.464901,-112.723038],[46.472271,-112.722977],[46.476582,-112.722969],[46.477551,-112.722992],[46.482079,-112.723358],[46.48436,-112.723503],[46.485661,-112.723663],[46.486271,-112.723824],[46.48687,-112.72406],[46.487411,-112.724327],[46.488159,-112.724823],[46.489052,-112.725563],[46.491611,-112.727898],[46.492569,-112.728737],[46.494122,-112.730133],[46.49572,-112.731583],[46.496441,-112.732292],[46.497108,-112.7332],[46.497669,-112.734131],[46.498039,-112.734993],[46.498661,-112.736763],[46.49929,-112.73848],[46.499851,-112.739937],[46.50032,-112.740967],[46.501041,-112.742233],[46.50246,-112.744217],[46.503052,-112.745247],[46.503712,-112.746651],[46.50423,-112.748093],[46.504761,-112.750259],[46.50502,-112.752281],[46.5051,-112.754509],[46.505299,-112.759781],[46.505531,-112.762497],[46.506062,-112.766327],[46.506889,-112.772583],[46.507149,-112.774094],[46.5075,-112.775414],[46.50795,-112.776787],[46.508381,-112.777893],[46.508869,-112.778908],[46.510658,-112.781921],[46.51226,-112.784592],[46.512741,-112.785362],[46.513401,-112.787033],[46.51366,-112.787979],[46.513821,-112.788933],[46.514179,-112.791206],[46.514339,-112.792213],[46.5145,-112.792908],[46.514809,-112.793739],[46.515141,-112.794456],[46.515598,-112.795242],[46.51585,-112.795647],[46.517029,-112.797623],[46.517719,-112.799019],[46.51886,-112.801857],[46.51939,-112.803169],[46.520329,-112.805153],[46.52129,-112.806808],[46.522049,-112.808067],[46.522541,-112.808907],[46.522881,-112.809639],[46.523151,-112.810318],[46.523449,-112.811394],[46.523689,-112.812683],[46.523819,-112.814011],[46.523918,-112.8162],[46.52396,-112.817047],[46.524059,-112.818047],[46.52433,-112.819122],[46.524731,-112.820053],[46.525291,-112.820969],[46.525959,-112.821701],[46.526711,-112.822258],[46.527611,-112.822578],[46.528061,-112.822662],[46.534309,-112.822807],[46.53508,-112.822937],[46.535969,-112.823257],[46.536812,-112.823753],[46.537571,-112.824432],[46.538311,-112.825417],[46.538971,-112.826653],[46.53928,-112.827477],[46.539551,-112.828407],[46.539871,-112.830017],[46.54221,-112.845123],[46.542549,-112.846512],[46.542702,-112.847008],[46.54303,-112.848038],[46.543591,-112.849213],[46.544449,-112.850594],[46.545528,-112.851807],[46.553478,-112.859703],[46.55431,-112.860718],[46.555069,-112.861938],[46.555511,-112.862831],[46.55584,-112.863693],[46.55619,-112.864639],[46.556301,-112.864967],[46.556599,-112.866814],[46.556721,-112.868347],[46.55677,-112.869713],[46.556801,-112.870438],[46.5569,-112.873398],[46.556931,-112.874283],[46.55695,-112.875511],[46.556992,-112.876846],[46.557098,-112.87793],[46.55732,-112.879044],[46.557709,-112.880272],[46.55825,-112.88134],[46.558609,-112.881897],[46.559021,-112.882408],[46.55957,-112.882927],[46.560108,-112.883377],[46.562752,-112.885559],[46.569321,-112.891022],[46.570229,-112.891731],[46.571301,-112.892471],[46.57243,-112.893112],[46.573849,-112.893784],[46.577179,-112.895073],[46.578201,-112.895561],[46.578892,-112.896004],[46.579601,-112.896606],[46.579891,-112.896896],[46.580421,-112.897507],[46.581051,-112.898392],[46.582272,-112.900482],[46.58268,-112.901314],[46.583729,-112.903587],[46.584339,-112.904991],[46.58493,-112.906517],[46.585739,-112.908852],[46.58659,-112.911636],[46.5868,-112.912437],[46.588402,-112.917702],[46.589088,-112.919807],[46.58979,-112.921707],[46.59074,-112.924278],[46.592072,-112.927933],[46.592319,-112.928619],[46.592838,-112.929916],[46.593361,-112.931107],[46.593689,-112.931709],[46.59404,-112.932404],[46.597549,-112.938583],[46.598259,-112.939957],[46.598751,-112.941177],[46.599072,-112.942146],[46.599411,-112.94339],[46.59967,-112.944733],[46.600029,-112.947571],[46.60107,-112.956528],[46.601299,-112.958122],[46.601669,-112.960091],[46.602058,-112.961906],[46.603748,-112.968887],[46.60442,-112.971733],[46.605629,-112.976677],[46.606361,-112.979683],[46.60672,-112.981331],[46.606899,-112.982681],[46.606899,-112.984329],[46.606529,-112.987808],[46.605621,-112.996193],[46.605511,-112.997978],[46.605492,-112.999359],[46.60556,-113.000954],[46.60569,-113.003227],[46.6059,-113.006821],[46.605919,-113.007233],[46.606319,-113.013573],[46.60638,-113.01461],[46.606499,-113.015556],[46.606781,-113.017403],[46.60704,-113.018547],[46.60738,-113.019852],[46.607769,-113.021187],[46.608639,-113.023911],[46.61256,-113.0364],[46.612621,-113.036591],[46.618111,-113.054047],[46.619659,-113.058952],[46.620331,-113.060753],[46.621441,-113.0634],[46.623611,-113.068413],[46.631599,-113.086967],[46.6329,-113.089722],[46.637291,-113.098351],[46.639969,-113.103622],[46.644569,-113.11277],[46.64595,-113.115273],[46.647148,-113.117126],[46.647911,-113.118248],[46.64817,-113.118591],[46.649799,-113.120644],[46.65757,-113.129837],[46.66217,-113.135307],[46.662701,-113.135941],[46.663422,-113.136711],[46.66441,-113.13752],[46.664959,-113.138069],[46.665279,-113.138397],[46.665958,-113.139313],[46.666561,-113.140457],[46.667332,-113.141983],[46.667782,-113.142677],[46.668541,-113.143494],[46.668999,-113.143944],[46.669849,-113.144798],[46.670422,-113.145576],[46.670639,-113.145943],[46.67104,-113.146759],[46.671471,-113.147774],[46.671799,-113.14917],[46.671989,-113.150169],[46.672089,-113.151466],[46.67207,-113.153427],[46.672089,-113.153931],[46.672089,-113.156769],[46.672119,-113.15757],[46.67218,-113.15831],[46.672321,-113.159058],[46.67255,-113.159973],[46.67271,-113.160507],[46.676769,-113.171219],[46.677361,-113.173103],[46.67786,-113.175217],[46.680611,-113.187462],[46.680851,-113.188454],[46.681129,-113.189232],[46.681412,-113.189911],[46.68174,-113.190567],[46.682178,-113.191277],[46.682499,-113.191803],[46.682911,-113.192307],[46.683781,-113.193329],[46.68985,-113.199753],[46.69318,-113.203346],[46.694908,-113.205223],[46.69553,-113.20591],[46.69619,-113.206848],[46.696709,-113.207901],[46.697029,-113.208961],[46.69725,-113.210022],[46.697361,-113.210876],[46.697411,-113.21209],[46.69688,-113.222572],[46.69685,-113.224007],[46.696941,-113.226257],[46.69706,-113.227692],[46.6973,-113.229279],[46.697601,-113.230827],[46.69804,-113.232552],[46.698669,-113.234596],[46.699772,-113.237732],[46.701149,-113.241348],[46.701561,-113.242416],[46.70499,-113.251122],[46.706081,-113.253883],[46.706902,-113.255859],[46.709358,-113.261436],[46.711281,-113.265717],[46.71191,-113.267151],[46.71233,-113.268341],[46.712688,-113.269562],[46.712959,-113.271317],[46.713299,-113.274811],[46.713741,-113.279289],[46.713921,-113.28022],[46.714161,-113.281197],[46.715038,-113.283752],[46.71793,-113.291862],[46.718151,-113.292686],[46.71833,-113.293419],[46.718449,-113.29425],[46.718491,-113.295013],[46.71846,-113.296089],[46.718369,-113.296852],[46.71822,-113.297592],[46.71806,-113.298157],[46.717831,-113.298859],[46.71624,-113.302933],[46.716061,-113.303726],[46.715969,-113.304314],[46.715912,-113.304947],[46.715912,-113.306023],[46.716061,-113.307159],[46.716221,-113.307854],[46.71648,-113.30867],[46.71693,-113.30957],[46.718369,-113.312607],[46.718639,-113.313599],[46.718811,-113.314743],[46.718819,-113.315804],[46.71875,-113.316803],[46.71859,-113.317757],[46.718269,-113.318764],[46.717892,-113.319611],[46.71175,-113.330399],[46.71154,-113.330803],[46.711071,-113.331627],[46.71059,-113.33239],[46.710159,-113.332962],[46.709621,-113.333511],[46.709,-113.33403],[46.707081,-113.33532],[46.706451,-113.33577],[46.705952,-113.336273],[46.705479,-113.336769],[46.70462,-113.338013],[46.702301,-113.342758],[46.699581,-113.348244],[46.69875,-113.349899],[46.698421,-113.350571],[46.698158,-113.351196],[46.69788,-113.351997],[46.697689,-113.352829],[46.69754,-113.353668],[46.697449,-113.35479],[46.69746,-113.356049],[46.69751,-113.356689],[46.697632,-113.357361],[46.697788,-113.358162],[46.69804,-113.358994],[46.698238,-113.359543],[46.698502,-113.360123],[46.698719,-113.36055],[46.699169,-113.361313],[46.703869,-113.368858],[46.704529,-113.370041],[46.704899,-113.370949],[46.70509,-113.371536],[46.70525,-113.372253],[46.70541,-113.373489],[46.705448,-113.374687],[46.705372,-113.375793],[46.705181,-113.377007],[46.704769,-113.378258],[46.703209,-113.382004],[46.699772,-113.390289],[46.699211,-113.392014],[46.698792,-113.393806],[46.698349,-113.396553],[46.697449,-113.402107],[46.696491,-113.408302],[46.69595,-113.411652],[46.695831,-113.412712],[46.695782,-113.413551],[46.695831,-113.414818],[46.695999,-113.416496],[46.697121,-113.423599],[46.69735,-113.424782],[46.69772,-113.426224],[46.697929,-113.42691],[46.698528,-113.429131],[46.698811,-113.430344],[46.69899,-113.431427],[46.699051,-113.431908],[46.699581,-113.436813],[46.700039,-113.441307],[46.700378,-113.445213],[46.700531,-113.446587],[46.700649,-113.447357],[46.700779,-113.447983],[46.701031,-113.448807],[46.701309,-113.449509],[46.70166,-113.450157],[46.7034,-113.452744],[46.70385,-113.453583],[46.704208,-113.454643],[46.704472,-113.455727],[46.70459,-113.456932],[46.704578,-113.458153],[46.704021,-113.468117],[46.703911,-113.468979],[46.70369,-113.470123],[46.703339,-113.471397],[46.702999,-113.47226],[46.702469,-113.473312],[46.701599,-113.474777],[46.698921,-113.479218],[46.698372,-113.480209],[46.698021,-113.480942],[46.697788,-113.48156],[46.69754,-113.482368],[46.69735,-113.483437],[46.69725,-113.484703],[46.697269,-113.485748],[46.697361,-113.486671],[46.697491,-113.487396],[46.697639,-113.488007],[46.697929,-113.488922],[46.698231,-113.489693],[46.70208,-113.497253],[46.704029,-113.501083],[46.705521,-113.503967],[46.70615,-113.504959],[46.706772,-113.505707],[46.707729,-113.506447],[46.709141,-113.507301],[46.70982,-113.507896],[46.710419,-113.508614],[46.710991,-113.509567],[46.711399,-113.51046],[46.711681,-113.511253],[46.711941,-113.512283],[46.71217,-113.513802],[46.71246,-113.516853],[46.712799,-113.519836],[46.71302,-113.521004],[46.71344,-113.522552],[46.716599,-113.532417],[46.717239,-113.534683],[46.717781,-113.536827],[46.720798,-113.551163],[46.721119,-113.552803],[46.721581,-113.555557],[46.722462,-113.559731],[46.723419,-113.56424],[46.724751,-113.570633],[46.72504,-113.571953],[46.72517,-113.572731],[46.725281,-113.573387],[46.725368,-113.574028],[46.725479,-113.57486],[46.725552,-113.575562],[46.72559,-113.576073],[46.725609,-113.577057],[46.72562,-113.577606],[46.725632,-113.57888],[46.725609,-113.580597],[46.725571,-113.581573],[46.72543,-113.585831],[46.725262,-113.592552],[46.725262,-113.594078],[46.725281,-113.596008],[46.725658,-113.624352],[46.725689,-113.62706],[46.725769,-113.628304],[46.725891,-113.629547],[46.726231,-113.63208],[46.727581,-113.641388],[46.727779,-113.643066],[46.727959,-113.644829],[46.728001,-113.646477],[46.728279,-113.663071],[46.728352,-113.667809],[46.728298,-113.669647],[46.728119,-113.671402],[46.728031,-113.672173],[46.72781,-113.67318],[46.727291,-113.674942],[46.72691,-113.676331],[46.726669,-113.677597],[46.72657,-113.678596],[46.726528,-113.67942],[46.72662,-113.686813],[46.726688,-113.687859],[46.726799,-113.688843],[46.72694,-113.689682],[46.7272,-113.69075],[46.72752,-113.69178],[46.727951,-113.692772],[46.728458,-113.69368],[46.729111,-113.694511],[46.729919,-113.695442],[46.730621,-113.696022],[46.731529,-113.696632],[46.73238,-113.697144],[46.733391,-113.697456],[46.734489,-113.697792],[46.735748,-113.698227],[46.737629,-113.69899],[46.738979,-113.699654],[46.740311,-113.700378],[46.743759,-113.702347],[46.74836,-113.704964],[46.7495,-113.705544],[46.751041,-113.706169],[46.752399,-113.70665],[46.753059,-113.706841],[46.75518,-113.707367],[46.763229,-113.709358],[46.765041,-113.709824],[46.766682,-113.710197],[46.768082,-113.710449],[46.76939,-113.710602],[46.77422,-113.710922],[46.775959,-113.71109],[46.77692,-113.711288],[46.777901,-113.711563],[46.77887,-113.712013],[46.779709,-113.712418],[46.780991,-113.713211],[46.781818,-113.713829],[46.782669,-113.7146],[46.78339,-113.715302],[46.784611,-113.716667],[46.785061,-113.717323],[46.785999,-113.718742],[46.78677,-113.72007],[46.78754,-113.721817],[46.788189,-113.723869],[46.788898,-113.726433],[46.790249,-113.731201],[46.791821,-113.736633],[46.792099,-113.737694],[46.792278,-113.738281],[46.79245,-113.738739],[46.792641,-113.739197],[46.79282,-113.739616],[46.793049,-113.740082],[46.794399,-113.742348],[46.79459,-113.742706],[46.794739,-113.743042],[46.794899,-113.743401],[46.79501,-113.743713],[46.79512,-113.744011],[46.795238,-113.744423],[46.795391,-113.74501],[46.795502,-113.745567],[46.795589,-113.746223],[46.79565,-113.746727],[46.795712,-113.747292],[46.795719,-113.747803],[46.7957,-113.748444],[46.79565,-113.749237],[46.795601,-113.749901],[46.795509,-113.75087],[46.79538,-113.752258],[46.79525,-113.753952],[46.795292,-113.755341],[46.79546,-113.756668],[46.79575,-113.758034],[46.796249,-113.759499],[46.798882,-113.765953],[46.799881,-113.768402],[46.800789,-113.770203],[46.801571,-113.771553],[46.806011,-113.778671],[46.806252,-113.779037],[46.81028,-113.785362],[46.812931,-113.789574],[46.816639,-113.795563],[46.821468,-113.803329],[46.827999,-113.81382],[46.828831,-113.815392],[46.830898,-113.819542],[46.832661,-113.823036],[46.83408,-113.825867],[46.835041,-113.82782],[46.835999,-113.829582],[46.836208,-113.829979],[46.83839,-113.833618],[46.844109,-113.842972],[46.845531,-113.845078],[46.850052,-113.851273],[46.85247,-113.854584],[46.854309,-113.856758],[46.859211,-113.862007],[46.859379,-113.86219],[46.859509,-113.862343],[46.860069,-113.862961],[46.860882,-113.863953],[46.861641,-113.865028],[46.862419,-113.866333],[46.862671,-113.866753],[46.862869,-113.867126],[46.863121,-113.867607],[46.863392,-113.868179],[46.863659,-113.86882],[46.8657,-113.873573],[46.86594,-113.874107],[46.868061,-113.87899],[46.86969,-113.882851],[46.87011,-113.883774],[46.870369,-113.884369],[46.87064,-113.884857],[46.87085,-113.885201],[46.87149,-113.886208],[46.872181,-113.887154],[46.873138,-113.888451],[46.873871,-113.889412],[46.874729,-113.890602],[46.876541,-113.892982],[46.87706,-113.893791],[46.877571,-113.89476],[46.878349,-113.896561],[46.878799,-113.898087],[46.879108,-113.899658],[46.879299,-113.901367],[46.879349,-113.902237],[46.879391,-113.903297],[46.879261,-113.905434],[46.878922,-113.907463],[46.878571,-113.908813],[46.878441,-113.909317],[46.878109,-113.910423],[46.87746,-113.912659],[46.87727,-113.913353],[46.875481,-113.919647],[46.872318,-113.930588],[46.871799,-113.932419],[46.869759,-113.939537],[46.868301,-113.944572],[46.868099,-113.945351],[46.867908,-113.946503],[46.867569,-113.948471],[46.86731,-113.94973],[46.866989,-113.950844],[46.866692,-113.951683],[46.866539,-113.952042],[46.86639,-113.9524],[46.865681,-113.953903],[46.865391,-113.95459],[46.865238,-113.955009],[46.865082,-113.955467],[46.864849,-113.956093],[46.864731,-113.956497],[46.864571,-113.957069],[46.864429,-113.957588],[46.864311,-113.958092],[46.86422,-113.958572],[46.864109,-113.959213],[46.864029,-113.959793],[46.863949,-113.960373],[46.86388,-113.961014],[46.863838,-113.96151],[46.8638,-113.962212],[46.8638,-113.962929],[46.863789,-113.963516],[46.8638,-113.964073],[46.86385,-113.964844],[46.863899,-113.965584],[46.864101,-113.967323],[46.864491,-113.969383],[46.865009,-113.971359],[46.86565,-113.973198],[46.86618,-113.974426],[46.866982,-113.97596],[46.867931,-113.977547],[46.868431,-113.978256],[46.870312,-113.980904],[46.870708,-113.981461],[46.87207,-113.98336],[46.87215,-113.983467],[46.872711,-113.984222],[46.874352,-113.986298],[46.87672,-113.988762],[46.877522,-113.98967],[46.8801,-113.992401],[46.880581,-113.992821],[46.881031,-113.993149],[46.88171,-113.993561],[46.882721,-113.994003],[46.88324,-113.994171],[46.88438,-113.994537],[46.885509,-113.99511],[46.886211,-113.995529],[46.88699,-113.996178],[46.88752,-113.996696],[46.888062,-113.997307],[46.888618,-113.998016],[46.889332,-113.999077],[46.889778,-113.99987],[46.890572,-114.001511],[46.893261,-114.007233],[46.894032,-114.008667],[46.895088,-114.010323],[46.896252,-114.011871],[46.897591,-114.013283],[46.89798,-114.013687],[46.899368,-114.015137],[46.901299,-114.017303],[46.902561,-114.018852],[46.90379,-114.02063],[46.905472,-114.022911],[46.907619,-114.025978],[46.908871,-114.027901],[46.9104,-114.029999],[46.910759,-114.030487],[46.911549,-114.031609],[46.913158,-114.033913],[46.913528,-114.034523],[46.913799,-114.035004],[46.914059,-114.035461],[46.91441,-114.036171],[46.914631,-114.036667],[46.914909,-114.037277],[46.915131,-114.037827],[46.915371,-114.038483],[46.91589,-114.039886],[46.916142,-114.040741],[46.916321,-114.041382],[46.916481,-114.042084],[46.916939,-114.044037],[46.917332,-114.045692],[46.91827,-114.050041],[46.918541,-114.051361],[46.91885,-114.052933],[46.919762,-114.057648],[46.919998,-114.058853],[46.920151,-114.059593],[46.920269,-114.060143],[46.920422,-114.060753],[46.92057,-114.061249],[46.920769,-114.061913],[46.920971,-114.062531],[46.921108,-114.062881],[46.92141,-114.063721],[46.922298,-114.065826],[46.923309,-114.067757],[46.923569,-114.068314],[46.925091,-114.071381],[46.92783,-114.07692],[46.93552,-114.092453],[46.936169,-114.093727],[46.93642,-114.094254],[46.936779,-114.095009],[46.937031,-114.095642],[46.937229,-114.096153],[46.93745,-114.096817],[46.937611,-114.097351],[46.937759,-114.097893],[46.937881,-114.098427],[46.938,-114.098984],[46.93811,-114.099609],[46.938202,-114.100197],[46.938492,-114.102272],[46.938869,-114.104797],[46.939201,-114.106667],[46.939331,-114.107323],[46.939468,-114.107941],[46.93959,-114.108398],[46.939751,-114.109016],[46.93996,-114.109688],[46.940201,-114.110481],[46.94046,-114.111214],[46.940739,-114.111923],[46.941109,-114.112793],[46.941399,-114.113411],[46.94191,-114.114403],[46.94537,-114.120491],[46.945648,-114.120979],[46.947369,-114.12397],[46.948521,-114.125969],[46.949322,-114.127319],[46.95084,-114.12999],[46.953522,-114.134697],[46.955078,-114.137444],[46.96265,-114.15065],[46.966412,-114.157272],[46.968029,-114.160088],[46.970539,-114.164436],[46.971272,-114.165466],[46.972179,-114.16658],[46.972729,-114.167137],[46.973469,-114.167809],[46.979889,-114.17292],[46.980358,-114.173393],[46.981201,-114.174347],[46.981419,-114.174637],[46.98605,-114.180443],[46.988441,-114.183487],[46.990791,-114.186409],[46.99334,-114.189613],[46.995621,-114.192451],[46.996941,-114.19416],[46.99765,-114.195198],[46.99844,-114.196533],[46.998878,-114.197357],[46.999352,-114.198311],[47.000408,-114.200684],[47.000809,-114.201538],[47.001308,-114.2024],[47.002239,-114.203697],[47.00362,-114.205276],[47.005322,-114.207298],[47.006432,-114.208893],[47.006989,-114.209877],[47.007561,-114.210953],[47.00803,-114.211952],[47.008518,-114.21312],[47.009949,-114.216751],[47.011391,-114.22039],[47.011879,-114.221497],[47.012669,-114.222862],[47.013569,-114.224121],[47.014679,-114.22541],[47.015461,-114.226334],[47.01622,-114.227448],[47.016869,-114.228607],[47.017391,-114.229691],[47.01783,-114.230942],[47.018211,-114.232224],[47.018471,-114.233353],[47.018761,-114.234993],[47.01881,-114.235626],[47.019371,-114.24453],[47.01955,-114.246483],[47.019791,-114.248741],[47.020248,-114.251701],[47.020729,-114.254082],[47.022518,-114.26152],[47.023579,-114.265991],[47.025551,-114.274239],[47.025829,-114.27552],[47.026001,-114.276718],[47.027771,-114.293457],[47.027809,-114.293793],[47.029411,-114.30899],[47.029518,-114.310013],[47.029751,-114.311523],[47.03019,-114.313538],[47.030998,-114.316269],[47.031681,-114.318367],[47.03236,-114.320839],[47.033138,-114.324142],[47.033798,-114.327919],[47.034,-114.329514],[47.03426,-114.33252],[47.034489,-114.336838],[47.034672,-114.340408],[47.034679,-114.342041],[47.034599,-114.343353],[47.034401,-114.344673],[47.033958,-114.346283],[47.031311,-114.353844],[47.031021,-114.354439],[47.03051,-114.355339],[47.030079,-114.355919],[47.02972,-114.356323],[47.029308,-114.356728],[47.028889,-114.357063],[47.025341,-114.359818],[47.02285,-114.361748],[47.022221,-114.362343],[47.021858,-114.36274],[47.021469,-114.363243],[47.02108,-114.3638],[47.020679,-114.364471],[47.020329,-114.365173],[47.019859,-114.366287],[47.019581,-114.367157],[47.019451,-114.367653],[47.019211,-114.368828],[47.019009,-114.370239],[47.01897,-114.371117],[47.01899,-114.372063],[47.019039,-114.373207],[47.01923,-114.374672],[47.019588,-114.376137],[47.02129,-114.38121],[47.02248,-114.38475],[47.02293,-114.38607],[47.023258,-114.387413],[47.02343,-114.388733],[47.023449,-114.389992],[47.023338,-114.390984],[47.023151,-114.39193],[47.022949,-114.392632],[47.022659,-114.393471],[47.022202,-114.394371],[47.015518,-114.406563],[47.014839,-114.407707],[47.014431,-114.408363],[47.014011,-114.408928],[47.013538,-114.409508],[47.013008,-114.410057],[47.012409,-114.41066],[47.011391,-114.411469],[47.01025,-114.412079],[47.009571,-114.412354],[47.0089,-114.412537],[47.007462,-114.412888],[47.005371,-114.413353],[47.00449,-114.413597],[47.003731,-114.413933],[47.00296,-114.414413],[47.002239,-114.415024],[47.002071,-114.415199],[47.001629,-114.41568],[47.000961,-114.416443],[46.997169,-114.421043],[46.993832,-114.425148],[46.993271,-114.425911],[46.99284,-114.42659],[46.992329,-114.427628],[46.99176,-114.4291],[46.991409,-114.43045],[46.991211,-114.43187],[46.991138,-114.433289],[46.991199,-114.434593],[46.991341,-114.435852],[46.991791,-114.438042],[46.992222,-114.439781],[46.993469,-114.445488],[46.99358,-114.446007],[46.995548,-114.454887],[46.995972,-114.456642],[46.99638,-114.45858],[46.996799,-114.460136],[46.997349,-114.461853],[46.999432,-114.467583],[46.999828,-114.468719],[47.000252,-114.470337],[47.000568,-114.471893],[47.000801,-114.473534],[47.00095,-114.474876],[47.00106,-114.476959],[47.001019,-114.479111],[47.000992,-114.481133],[47.00106,-114.482277],[47.001221,-114.483612],[47.00156,-114.485153],[47.00198,-114.486343],[47.002468,-114.487427],[47.003448,-114.489182],[47.003819,-114.489891],[47.005859,-114.493561],[47.007038,-114.495712],[47.007931,-114.497208],[47.008179,-114.497513],[47.009251,-114.499023],[47.009991,-114.499863],[47.010849,-114.500748],[47.011761,-114.501556],[47.013329,-114.503021],[47.01437,-114.504204],[47.015572,-114.50589],[47.01656,-114.507553],[47.01712,-114.508682],[47.01775,-114.510139],[47.018291,-114.511642],[47.01881,-114.513489],[47.019379,-114.515823],[47.020592,-114.521156],[47.020771,-114.522552],[47.020908,-114.524109],[47.02092,-114.524872],[47.020859,-114.526489],[47.020359,-114.533073],[47.020241,-114.533829],[47.0201,-114.534523],[47.019798,-114.535599],[47.019489,-114.536392],[47.019211,-114.536987],[47.018848,-114.537621],[47.01823,-114.538483],[47.017361,-114.539398],[47.011971,-114.544907],[47.007809,-114.549118],[47.006401,-114.550583],[47.00584,-114.551308],[47.005169,-114.552483],[47.004791,-114.55349],[47.00444,-114.554863],[47.00428,-114.556152],[47.004238,-114.557671],[47.00428,-114.57209],[47.004292,-114.576927],[47.004311,-114.580048],[47.004311,-114.581917],[47.004311,-114.582703],[47.004318,-114.583977],[47.004398,-114.58535],[47.004559,-114.5867],[47.004871,-114.588127],[47.00528,-114.589348],[47.00742,-114.59436],[47.00845,-114.596817],[47.008881,-114.598129],[47.009312,-114.599533],[47.00967,-114.601158],[47.01001,-114.602959],[47.017151,-114.64151],[47.017971,-114.645943],[47.018639,-114.649643],[47.01902,-114.651649],[47.019081,-114.652763],[47.019119,-114.654121],[47.01915,-114.655457],[47.01915,-114.656433],[47.019241,-114.65966],[47.019272,-114.660881],[47.019199,-114.661942],[47.01902,-114.662949],[47.018661,-114.664093],[47.017841,-114.666557],[47.017578,-114.667824],[47.01749,-114.669006],[47.017559,-114.670197],[47.017719,-114.671318],[47.017971,-114.673103],[47.018532,-114.676849],[47.01857,-114.678093],[47.018501,-114.679268],[47.018269,-114.680557],[47.016449,-114.689003],[47.015881,-114.690788],[47.015141,-114.692497],[47.014198,-114.694298],[47.013802,-114.695297],[47.013569,-114.696053],[47.013439,-114.696869],[47.013168,-114.700058],[47.01207,-114.7145],[47.011749,-114.718697],[47.011742,-114.719933],[47.011791,-114.721313],[47.01199,-114.722954],[47.012379,-114.724907],[47.01292,-114.726624],[47.0149,-114.732033],[47.015518,-114.733223],[47.016251,-114.73423],[47.017159,-114.735123],[47.018002,-114.735672],[47.018799,-114.736],[47.02142,-114.736618],[47.023048,-114.737259],[47.02475,-114.738243],[47.025822,-114.738968],[47.026138,-114.739197],[47.028519,-114.740784],[47.04248,-114.750183],[47.048409,-114.754204],[47.049809,-114.755417],[47.052212,-114.757553],[47.055641,-114.760536],[47.056889,-114.761436],[47.058392,-114.762283],[47.059361,-114.76268],[47.060589,-114.763046],[47.061401,-114.763237],[47.06601,-114.764053],[47.067581,-114.764374],[47.068352,-114.764664],[47.06916,-114.764809],[47.069839,-114.764816],[47.07082,-114.764992],[47.07547,-114.765846],[47.076111,-114.766022],[47.07674,-114.766273],[47.077549,-114.766769],[47.07835,-114.767464],[47.07914,-114.768448],[47.079521,-114.769058],[47.079861,-114.769676],[47.080261,-114.770569],[47.08123,-114.77327],[47.081631,-114.774353],[47.083698,-114.780006],[47.084042,-114.780693],[47.084389,-114.781311],[47.084782,-114.781883],[47.085201,-114.782341],[47.085701,-114.782806],[47.086411,-114.783234],[47.08712,-114.783524],[47.087971,-114.783691],[47.10218,-114.785583],[47.10363,-114.785767],[47.10717,-114.786232],[47.107521,-114.786278],[47.111599,-114.786827],[47.112492,-114.787064],[47.113411,-114.787399],[47.11425,-114.787773],[47.115891,-114.788597],[47.123058,-114.792343],[47.130409,-114.796204],[47.13237,-114.797211],[47.13282,-114.797493],[47.133228,-114.797791],[47.133732,-114.798271],[47.134232,-114.798866],[47.13475,-114.799667],[47.144119,-114.815804],[47.152302,-114.82988],[47.168079,-114.85704],[47.16906,-114.858711],[47.169861,-114.85981],[47.170589,-114.860657],[47.1726,-114.862679],[47.174438,-114.864487],[47.17635,-114.866386],[47.177269,-114.86734],[47.177631,-114.867737],[47.17886,-114.869308],[47.1805,-114.871536],[47.182011,-114.873581],[47.183868,-114.876137],[47.185242,-114.877983],[47.187229,-114.880676],[47.188499,-114.882607],[47.18959,-114.884537],[47.19014,-114.885674],[47.1908,-114.887154],[47.191502,-114.888947],[47.192139,-114.890923],[47.192322,-114.891487],[47.192631,-114.892662],[47.19289,-114.893768],[47.19334,-114.896141],[47.193748,-114.898514],[47.19516,-114.906601],[47.195629,-114.908577],[47.196041,-114.909927],[47.196751,-114.911911],[47.19751,-114.913757],[47.199471,-114.918472],[47.20211,-114.924911],[47.204651,-114.931137],[47.20517,-114.932159],[47.205761,-114.932983],[47.206299,-114.933548],[47.206791,-114.933937],[47.20715,-114.934181],[47.208641,-114.935143],[47.209469,-114.935669],[47.21003,-114.936089],[47.210571,-114.9366],[47.211079,-114.93718],[47.211639,-114.937988],[47.212151,-114.938972],[47.213242,-114.941383],[47.214249,-114.943367],[47.214951,-114.944992],[47.215309,-114.946007],[47.215919,-114.947807],[47.216469,-114.949753],[47.217121,-114.953072],[47.217388,-114.954361],[47.217659,-114.955322],[47.218151,-114.956589],[47.21862,-114.957474],[47.219898,-114.959534],[47.22192,-114.962723],[47.22345,-114.965179],[47.225559,-114.968559],[47.22607,-114.969414],[47.22628,-114.969803],[47.227139,-114.971413],[47.227989,-114.973183],[47.228748,-114.974876],[47.233238,-114.985077],[47.233719,-114.98658],[47.233921,-114.987663],[47.234051,-114.988823],[47.234039,-114.989891],[47.233349,-114.997993],[47.233089,-114.99942],[47.232719,-115.00058],[47.232342,-115.001503],[47.231659,-115.002907],[47.231251,-115.00386],[47.230701,-115.005539],[47.2304,-115.007103],[47.230301,-115.00843],[47.230339,-115.009956],[47.230541,-115.011612],[47.23093,-115.013168],[47.231411,-115.014412],[47.23172,-115.015053],[47.23188,-115.015404],[47.232349,-115.01638],[47.234219,-115.020271],[47.235359,-115.022636],[47.236099,-115.024529],[47.236698,-115.026627],[47.237171,-115.028923],[47.23735,-115.030441],[47.23745,-115.032318],[47.237751,-115.043587],[47.237869,-115.044983],[47.23811,-115.046242],[47.238419,-115.047318],[47.239052,-115.048752],[47.239552,-115.049538],[47.24025,-115.050423],[47.24131,-115.051392],[47.242371,-115.052177],[47.243469,-115.052803],[47.244461,-115.05323],[47.245411,-115.053513],[47.246609,-115.053688],[47.24736,-115.053726],[47.248402,-115.053711],[47.250568,-115.053329],[47.252869,-115.052933],[47.254009,-115.052834],[47.25436,-115.052834],[47.256191,-115.052818],[47.259579,-115.052948],[47.26091,-115.053047],[47.262051,-115.053268],[47.262939,-115.053619],[47.263988,-115.054253],[47.265072,-115.055237],[47.26643,-115.056892],[47.268082,-115.058937],[47.270939,-115.062447],[47.273319,-115.065376],[47.280109,-115.073723],[47.283401,-115.077843],[47.287731,-115.083351],[47.289028,-115.085373],[47.289539,-115.086243],[47.289761,-115.086601],[47.291561,-115.090027],[47.29311,-115.093079],[47.293831,-115.094513],[47.295368,-115.097519],[47.295799,-115.098343],[47.296551,-115.099854],[47.296768,-115.100273],[47.297821,-115.102303],[47.298309,-115.103462],[47.298691,-115.104607],[47.298908,-115.105637],[47.299179,-115.107407],[47.29987,-115.113007],[47.30006,-115.115257],[47.30019,-115.11731],[47.300331,-115.126427],[47.300362,-115.129356],[47.300282,-115.130531],[47.300098,-115.131851],[47.29982,-115.13308],[47.299339,-115.134529],[47.296982,-115.140137],[47.29567,-115.143288],[47.29377,-115.148804],[47.293491,-115.149933],[47.293381,-115.151123],[47.2934,-115.152367],[47.29353,-115.153328],[47.294189,-115.15657],[47.294529,-115.158127],[47.29504,-115.160439],[47.295341,-115.162262],[47.29546,-115.163757],[47.295528,-115.165169],[47.29557,-115.166206],[47.2957,-115.167297],[47.296089,-115.168823],[47.296329,-115.169456],[47.29874,-115.175743],[47.299671,-115.17794],[47.300369,-115.179482],[47.300819,-115.180687],[47.301041,-115.181503],[47.301189,-115.182411],[47.301262,-115.183632],[47.3013,-115.184647],[47.301331,-115.185417],[47.301472,-115.186394],[47.301991,-115.188667],[47.302422,-115.190331],[47.302601,-115.191353],[47.302639,-115.192123],[47.302589,-115.192871],[47.302429,-115.193733],[47.30183,-115.196159],[47.30167,-115.19706],[47.301628,-115.197937],[47.30172,-115.198868],[47.301899,-115.199623],[47.302158,-115.200233],[47.302559,-115.200897],[47.30455,-115.203217],[47.3083,-115.207382],[47.309052,-115.208076],[47.309978,-115.208656],[47.310982,-115.209282],[47.311329,-115.209633],[47.311661,-115.210037],[47.31205,-115.210823],[47.312309,-115.211601],[47.31245,-115.212357],[47.31271,-115.215401],[47.312901,-115.216766],[47.313339,-115.219414],[47.313629,-115.221352],[47.31377,-115.222939],[47.313862,-115.224823],[47.3139,-115.226341],[47.313839,-115.227402],[47.313671,-115.22876],[47.3134,-115.230217],[47.313129,-115.231247],[47.312931,-115.232117],[47.31287,-115.23288],[47.31295,-115.233566],[47.313179,-115.234283],[47.313499,-115.234894],[47.313969,-115.235519],[47.31448,-115.236229],[47.3148,-115.236977],[47.315079,-115.237869],[47.316219,-115.24173],[47.316551,-115.242416],[47.316891,-115.242928],[47.317371,-115.243446],[47.318249,-115.243958],[47.318932,-115.244324],[47.32003,-115.245033],[47.320469,-115.245468],[47.322151,-115.247581],[47.322399,-115.247902],[47.323021,-115.248627],[47.32354,-115.249031],[47.324242,-115.249382],[47.324791,-115.249573],[47.32589,-115.249863],[47.326271,-115.250038],[47.32666,-115.250366],[47.327011,-115.250893],[47.32732,-115.251747],[47.327499,-115.252678],[47.327579,-115.254807],[47.32769,-115.255363],[47.327789,-115.255722],[47.327942,-115.256088],[47.328281,-115.256653],[47.32869,-115.257011],[47.328991,-115.25724],[47.330269,-115.257812],[47.33075,-115.258179],[47.331081,-115.258598],[47.33136,-115.259087],[47.33157,-115.259659],[47.331718,-115.260429],[47.331741,-115.261276],[47.33173,-115.262581],[47.331779,-115.263634],[47.331902,-115.264267],[47.3321,-115.264832],[47.332279,-115.265198],[47.3325,-115.265503],[47.332932,-115.26593],[47.333752,-115.266632],[47.33408,-115.267082],[47.334381,-115.267723],[47.33466,-115.26844],[47.334949,-115.269081],[47.335239,-115.269501],[47.335548,-115.269798],[47.335991,-115.270073],[47.336491,-115.27018],[47.33696,-115.270172],[47.33791,-115.27002],[47.338482,-115.270157],[47.339119,-115.27066],[47.339458,-115.271111],[47.339729,-115.271667],[47.340149,-115.272812],[47.340519,-115.273598],[47.340961,-115.274223],[47.34137,-115.274681],[47.34169,-115.274971],[47.343201,-115.276428],[47.343571,-115.276863],[47.343941,-115.277573],[47.344139,-115.278137],[47.344292,-115.278763],[47.34433,-115.279243],[47.34444,-115.281052],[47.344681,-115.284088],[47.344791,-115.284866],[47.34499,-115.285507],[47.345379,-115.286301],[47.347549,-115.289772],[47.34811,-115.290359],[47.348782,-115.290771],[47.349461,-115.291054],[47.350349,-115.291153],[47.351421,-115.291183],[47.351749,-115.291237],[47.35236,-115.291473],[47.352959,-115.291809],[47.35355,-115.292259],[47.35416,-115.292847],[47.3545,-115.293251],[47.354759,-115.293648],[47.355122,-115.294273],[47.355549,-115.295227],[47.356071,-115.296753],[47.35659,-115.298531],[47.357971,-115.304787],[47.359421,-115.311813],[47.359558,-115.313057],[47.359772,-115.31546],[47.359901,-115.316269],[47.36013,-115.317253],[47.3605,-115.318336],[47.363419,-115.32412],[47.370911,-115.338837],[47.371712,-115.340607],[47.373932,-115.345619],[47.37484,-115.347527],[47.3759,-115.349617],[47.376099,-115.350014],[47.377571,-115.352783],[47.378231,-115.354218],[47.378521,-115.355057],[47.37883,-115.356209],[47.378971,-115.357613],[47.378941,-115.359154],[47.37875,-115.360458],[47.377838,-115.36515],[47.375771,-115.375839],[47.375599,-115.376869],[47.375511,-115.377647],[47.375519,-115.378372],[47.375599,-115.379211],[47.375832,-115.380173],[47.376171,-115.380997],[47.378151,-115.384857],[47.380859,-115.390182],[47.382629,-115.393913],[47.383282,-115.395332],[47.384918,-115.398857],[47.385109,-115.399277],[47.38607,-115.401291],[47.386799,-115.402611],[47.387341,-115.403542],[47.38924,-115.406281],[47.38995,-115.407463],[47.390301,-115.408211],[47.390671,-115.409271],[47.390961,-115.410202],[47.392521,-115.415977],[47.394482,-115.423431],[47.39468,-115.424629],[47.394798,-115.426208],[47.39481,-115.43119],[47.39484,-115.432953],[47.394951,-115.433922],[47.395191,-115.435257],[47.395279,-115.43634],[47.395279,-115.437439],[47.395081,-115.43866],[47.394821,-115.440033],[47.394581,-115.441338],[47.394489,-115.442261],[47.394501,-115.443069],[47.39465,-115.445183],[47.394581,-115.446442],[47.394341,-115.448921],[47.394321,-115.449966],[47.394451,-115.451233],[47.39473,-115.452347],[47.39505,-115.453247],[47.395531,-115.454163],[47.397888,-115.457542],[47.39835,-115.45871],[47.398811,-115.459976],[47.399052,-115.460487],[47.39941,-115.461037],[47.40033,-115.462097],[47.400829,-115.462914],[47.401161,-115.463852],[47.401379,-115.465538],[47.401409,-115.466553],[47.401291,-115.467796],[47.401119,-115.469017],[47.401001,-115.469978],[47.401081,-115.471153],[47.401329,-115.472023],[47.401791,-115.47287],[47.402908,-115.474167],[47.40345,-115.474968],[47.403839,-115.475853],[47.404049,-115.476486],[47.404202,-115.477173],[47.40435,-115.4786],[47.404362,-115.480011],[47.404499,-115.481293],[47.405682,-115.486908],[47.40604,-115.488441],[47.406689,-115.490433],[47.40736,-115.492577],[47.407669,-115.493874],[47.407848,-115.495148],[47.40797,-115.496437],[47.40794,-115.497719],[47.407871,-115.498848],[47.407688,-115.500351],[47.407631,-115.501328],[47.407612,-115.502037],[47.407688,-115.503067],[47.40786,-115.504143],[47.408401,-115.506027],[47.4086,-115.506729],[47.40863,-115.506844],[47.409569,-115.510437],[47.409679,-115.510887],[47.4105,-115.513893],[47.410759,-115.514648],[47.411308,-115.516708],[47.411789,-115.517883],[47.41227,-115.518883],[47.41291,-115.519951],[47.414021,-115.52169],[47.41465,-115.522751],[47.41502,-115.523514],[47.415371,-115.524384],[47.41581,-115.525703],[47.41785,-115.532539],[47.41819,-115.533852],[47.418339,-115.534851],[47.41843,-115.535957],[47.41843,-115.537033],[47.418362,-115.538078],[47.41803,-115.540062],[47.41724,-115.544434],[47.417091,-115.545761],[47.417,-115.546883],[47.417,-115.548203],[47.41711,-115.549263],[47.41787,-115.55542],[47.417912,-115.556419],[47.41785,-115.557327],[47.417721,-115.558243],[47.41745,-115.559669],[47.417271,-115.560921],[47.417171,-115.561752],[47.417099,-115.562737],[47.416981,-115.566261],[47.416889,-115.567123],[47.416759,-115.567993],[47.416458,-115.569489],[47.415989,-115.571617],[47.41584,-115.572693],[47.415771,-115.573593],[47.41571,-115.574837],[47.415798,-115.576309],[47.416012,-115.57782],[47.416359,-115.57975],[47.416451,-115.580353],[47.416481,-115.58107],[47.41647,-115.581779],[47.416359,-115.58268],[47.416119,-115.58387],[47.41597,-115.584839],[47.41589,-115.585716],[47.41592,-115.586304],[47.416,-115.587013],[47.41626,-115.587837],[47.41658,-115.588531],[47.41745,-115.590027],[47.417709,-115.590446],[47.418411,-115.59169],[47.418629,-115.592293],[47.418819,-115.593071],[47.418892,-115.593872],[47.4189,-115.594948],[47.418781,-115.598312],[47.418831,-115.599152],[47.418941,-115.600014],[47.41914,-115.600853],[47.41951,-115.601868],[47.419949,-115.602722],[47.42038,-115.603439],[47.421299,-115.605049],[47.421539,-115.605553],[47.4217,-115.605972],[47.421829,-115.60643],[47.421928,-115.606934],[47.421982,-115.607391],[47.422009,-115.607826],[47.421982,-115.608597],[47.421879,-115.609352],[47.421478,-115.61084],[47.42038,-115.613853],[47.41872,-115.61837],[47.418571,-115.618927],[47.418339,-115.620087],[47.418301,-115.620682],[47.41827,-115.621231],[47.418331,-115.622253],[47.418541,-115.623367],[47.41877,-115.624199],[47.419941,-115.62719],[47.420921,-115.629578],[47.421719,-115.63166],[47.422161,-115.632538],[47.422581,-115.633324],[47.42334,-115.63456],[47.424271,-115.635811],[47.424961,-115.636612],[47.425678,-115.637337],[47.427311,-115.638557],[47.428699,-115.639481],[47.429371,-115.640053],[47.430061,-115.641052],[47.43047,-115.641869],[47.430828,-115.642952],[47.431099,-115.644211],[47.431431,-115.646858],[47.431789,-115.64949],[47.43195,-115.65052],[47.432171,-115.651367],[47.432449,-115.652023],[47.432892,-115.65271],[47.433472,-115.653343],[47.43417,-115.653938],[47.434921,-115.654709],[47.435261,-115.655212],[47.435558,-115.65583],[47.435768,-115.656418],[47.435921,-115.657097],[47.43602,-115.657707],[47.436008,-115.658478],[47.435909,-115.659363],[47.435768,-115.659958],[47.435558,-115.660568],[47.435329,-115.661072],[47.434811,-115.662148],[47.434471,-115.662903],[47.43428,-115.663567],[47.434151,-115.664093],[47.433979,-115.66526],[47.433632,-115.668404],[47.43359,-115.669273],[47.43364,-115.670082],[47.433731,-115.670769],[47.433842,-115.671219],[47.433979,-115.671722],[47.434299,-115.672684],[47.43454,-115.673393],[47.435879,-115.677399],[47.436508,-115.679138],[47.436779,-115.679764],[47.437111,-115.680412],[47.437599,-115.681297],[47.438099,-115.682091],[47.43998,-115.684563],[47.440441,-115.685287],[47.44083,-115.686073],[47.44125,-115.687172],[47.441601,-115.687958],[47.44194,-115.688629],[47.44244,-115.68943],[47.442749,-115.689857],[47.443119,-115.690247],[47.443821,-115.690903],[47.445042,-115.691742],[47.446812,-115.692902],[47.44754,-115.693253],[47.448151,-115.693459],[47.44883,-115.693581],[47.451069,-115.693642],[47.452171,-115.69381],[47.453098,-115.694054],[47.45372,-115.694252],[47.454498,-115.694489],[47.455379,-115.69487],[47.45612,-115.695168],[47.45636,-115.695236],[47.456619,-115.695267],[47.456791,-115.695267],[47.457039,-115.695236],[47.457352,-115.69519],[47.457561,-115.695137],[47.457878,-115.695023],[47.458149,-115.694893],[47.45853,-115.694656],[47.45916,-115.694183],[47.45948,-115.69397],[47.459839,-115.693863],[47.460201,-115.693787],[47.4604,-115.693802],[47.460602,-115.69384],[47.460941,-115.693932],[47.461281,-115.694107],[47.461609,-115.694389],[47.46188,-115.694717],[47.462132,-115.695152],[47.462318,-115.69561],[47.462448,-115.696098],[47.46254,-115.696617],[47.462589,-115.697197],[47.462608,-115.698273],[47.462639,-115.698792],[47.462681,-115.699318],[47.462761,-115.699821],[47.46286,-115.700363],[47.46294,-115.70089],[47.463001,-115.701393],[47.462978,-115.702003],[47.462891,-115.70253],[47.462761,-115.703056],[47.46262,-115.703537],[47.46249,-115.704018],[47.462372,-115.704498],[47.462318,-115.705063],[47.462341,-115.705566],[47.46236,-115.7061],[47.462448,-115.706909],[47.46254,-115.70771],[47.462608,-115.70871],[47.462601,-115.709167],[47.46254,-115.709534],[47.462479,-115.709793],[47.46241,-115.710037],[47.462311,-115.71032],[47.462139,-115.71067],[47.46167,-115.711594],[47.461521,-115.71196],[47.461369,-115.712334],[47.46125,-115.712837],[47.461189,-115.713387],[47.46117,-115.713921],[47.46114,-115.714462],[47.461071,-115.714989],[47.460979,-115.715508],[47.460838,-115.716003],[47.46067,-115.716469],[47.460491,-115.716927],[47.460312,-115.717392],[47.460171,-115.717903],[47.460159,-115.717918],[47.460072,-115.718407],[47.460049,-115.718964],[47.460079,-115.719414],[47.460091,-115.719498],[47.460098,-115.719589],[47.460171,-115.720009],[47.460419,-115.721031],[47.460499,-115.72155],[47.460529,-115.722076],[47.46051,-115.722588],[47.46043,-115.723106],[47.4603,-115.723587],[47.46011,-115.724068],[47.459911,-115.724518],[47.459721,-115.724983],[47.459591,-115.725471],[47.45948,-115.72599],[47.45945,-115.726532],[47.459469,-115.72686],[47.45948,-115.727074],[47.45956,-115.727539],[47.459579,-115.727592],[47.459721,-115.728081],[47.45993,-115.728531],[47.460171,-115.728943],[47.46027,-115.729073],[47.460312,-115.729134],[47.460678,-115.729698],[47.460899,-115.730133],[47.46106,-115.730614],[47.461159,-115.73111],[47.46122,-115.731644],[47.461208,-115.73217],[47.461159,-115.732697],[47.460991,-115.733749],[47.460941,-115.734283],[47.460911,-115.73481],[47.460949,-115.735352],[47.461048,-115.735863],[47.461208,-115.736343],[47.461418,-115.736778],[47.461658,-115.737183],[47.46217,-115.737953],[47.462399,-115.738358],[47.462589,-115.738808],[47.462749,-115.739288],[47.46286,-115.739792],[47.462921,-115.740311],[47.46294,-115.740837],[47.462959,-115.741913],[47.462971,-115.742447],[47.46299,-115.742989],[47.463039,-115.743523],[47.463139,-115.744034],[47.463329,-115.744591],[47.463451,-115.744904],[47.463551,-115.745148],[47.46365,-115.745392],[47.463772,-115.745621],[47.464149,-115.746429],[47.464291,-115.746727],[47.46447,-115.747162],[47.464611,-115.74765],[47.464729,-115.74823],[47.464809,-115.748749],[47.464859,-115.749283],[47.46489,-115.74968],[47.464901,-115.750099],[47.464909,-115.750572],[47.464931,-115.751053],[47.464958,-115.752113],[47.465038,-115.753777],[47.465061,-115.754318],[47.465092,-115.754852],[47.465111,-115.755074],[47.465149,-115.755386],[47.46524,-115.755898],[47.465359,-115.756409],[47.465519,-115.756897],[47.465698,-115.75737],[47.465919,-115.757812],[47.46616,-115.758217],[47.46627,-115.758392],[47.466431,-115.758583],[47.466709,-115.758919],[47.467018,-115.759201],[47.467339,-115.75946],[47.467659,-115.759697],[47.467979,-115.759956],[47.468281,-115.760246],[47.468571,-115.760582],[47.46883,-115.760941],[47.46907,-115.761337],[47.469299,-115.761757],[47.469479,-115.762207],[47.46965,-115.762688],[47.46978,-115.763184],[47.469879,-115.763687],[47.46994,-115.764229],[47.469978,-115.764763],[47.469971,-115.765289],[47.469959,-115.765823],[47.469891,-115.766357],[47.46981,-115.766891],[47.469719,-115.767403],[47.469379,-115.769379],[47.469292,-115.769897],[47.468861,-115.772499],[47.468689,-115.773529],[47.46854,-115.774567],[47.46841,-115.775612],[47.468361,-115.776138],[47.468281,-115.777206],[47.468262,-115.777733],[47.46825,-115.778023],[47.468231,-115.778549],[47.468201,-115.7789],[47.468182,-115.779427],[47.468151,-115.780502],[47.468151,-115.781036],[47.468151,-115.782097],[47.468151,-115.782631],[47.468159,-115.783157],[47.468201,-115.784218],[47.46822,-115.784714],[47.46825,-115.785278],[47.468269,-115.785713],[47.468311,-115.786346],[47.468391,-115.787407],[47.468491,-115.788467],[47.468571,-115.789169],[47.468842,-115.791603],[47.468849,-115.791748],[47.468891,-115.79213],[47.468941,-115.792664],[47.468979,-115.793182],[47.46899,-115.793709],[47.46899,-115.794472],[47.46896,-115.794937],[47.468922,-115.795303],[47.468891,-115.795532],[47.468861,-115.795822],[47.468781,-115.796333],[47.46867,-115.796837],[47.46854,-115.79734],[47.46841,-115.797791],[47.468399,-115.797829],[47.468239,-115.798309],[47.46822,-115.798363],[47.46806,-115.798767],[47.467869,-115.799202],[47.467701,-115.799522],[47.46764,-115.799637],[47.467411,-115.800056],[47.467159,-115.800453],[47.466881,-115.800827],[47.466469,-115.801323],[47.466331,-115.801483],[47.465729,-115.802063],[47.46542,-115.802338],[47.465111,-115.802643],[47.464981,-115.802773],[47.46489,-115.802849],[47.46468,-115.803017],[47.464378,-115.803299],[47.464291,-115.803398],[47.464081,-115.803596],[47.46381,-115.80394],[47.463558,-115.804329],[47.46336,-115.804779],[47.4632,-115.80526],[47.463089,-115.805763],[47.463081,-115.80584],[47.46302,-115.80629],[47.463009,-115.806824],[47.463039,-115.807358],[47.463131,-115.807869],[47.46328,-115.808357],[47.463459,-115.808823],[47.463669,-115.809242],[47.464191,-115.809982],[47.46447,-115.810333],[47.46471,-115.810677],[47.464729,-115.810699],[47.46497,-115.811096],[47.465191,-115.811523],[47.465481,-115.812263],[47.465599,-115.812767],[47.465679,-115.813271],[47.465721,-115.813812],[47.46574,-115.814346],[47.465698,-115.81488],[47.465618,-115.815407],[47.4655,-115.81591],[47.465351,-115.816383],[47.46521,-115.816711],[47.46516,-115.816841],[47.465,-115.817253],[47.464741,-115.817703],[47.46452,-115.818123],[47.464298,-115.818527],[47.464069,-115.818932],[47.46381,-115.819313],[47.463531,-115.819641],[47.463219,-115.819923],[47.462589,-115.820457],[47.462269,-115.820709],[47.46196,-115.820938],[47.461689,-115.821297],[47.461441,-115.821693],[47.461239,-115.822128],[47.461071,-115.822609],[47.46096,-115.823112],[47.460892,-115.823631],[47.460892,-115.824173],[47.460918,-115.824707],[47.46101,-115.825233],[47.46114,-115.825706],[47.461288,-115.826111],[47.461319,-115.826187],[47.4632,-115.830704],[47.46336,-115.831169],[47.46352,-115.83165],[47.46365,-115.832138],[47.46376,-115.832649],[47.463772,-115.832687],[47.463982,-115.833656],[47.46431,-115.835167],[47.46463,-115.836693],[47.464981,-115.838203],[47.46513,-115.838676],[47.46529,-115.839157],[47.465469,-115.839607],[47.465649,-115.840073],[47.465832,-115.84053],[47.465988,-115.841003],[47.466129,-115.841476],[47.466259,-115.84198],[47.46637,-115.842484],[47.466751,-115.844414],[47.466808,-115.844704],[47.466862,-115.844917],[47.466888,-115.845093],[47.466969,-115.845428],[47.46711,-115.845917],[47.467281,-115.84639],[47.467461,-115.84684],[47.467682,-115.847267],[47.46788,-115.847717],[47.46806,-115.848183],[47.46822,-115.848648],[47.468342,-115.849136],[47.468578,-115.850304],[47.468842,-115.851677],[47.469021,-115.852699],[47.469101,-115.853233],[47.469139,-115.85363],[47.469151,-115.853752],[47.46917,-115.854279],[47.469151,-115.85466],[47.469109,-115.855019],[47.469028,-115.855537],[47.46883,-115.856537],[47.468739,-115.857063],[47.468712,-115.857513],[47.4687,-115.857597],[47.468689,-115.858124],[47.468719,-115.858658],[47.468761,-115.858856],[47.468811,-115.859177],[47.468948,-115.859673],[47.469131,-115.860123],[47.469349,-115.86055],[47.469601,-115.860931],[47.469891,-115.861259],[47.470161,-115.861504],[47.470211,-115.861526],[47.470539,-115.861763],[47.471001,-115.862083],[47.471149,-115.862167],[47.471451,-115.862389],[47.471771,-115.862633],[47.472069,-115.862907],[47.472359,-115.863243],[47.47261,-115.863609],[47.472839,-115.864029],[47.47303,-115.864487],[47.473171,-115.864967],[47.47327,-115.865494],[47.473301,-115.865662],[47.473351,-115.865997],[47.473419,-115.866524],[47.473789,-115.869614],[47.473831,-115.869949],[47.474159,-115.872772],[47.47427,-115.87381],[47.47435,-115.874313],[47.474411,-115.874969],[47.474468,-115.875488],[47.474522,-115.876007],[47.47456,-115.876541],[47.47456,-115.877068],[47.47451,-115.877586],[47.474411,-115.87809],[47.47427,-115.878578],[47.474079,-115.879044],[47.47385,-115.87944],[47.473591,-115.879799],[47.473309,-115.880127],[47.47303,-115.880478],[47.47279,-115.880867],[47.472672,-115.881126],[47.472591,-115.881317],[47.472431,-115.881798],[47.47234,-115.882317],[47.472301,-115.882843],[47.472328,-115.883362],[47.472408,-115.883888],[47.472549,-115.884392],[47.47274,-115.88485],[47.472961,-115.885277],[47.47319,-115.885681],[47.473869,-115.886909],[47.47456,-115.888153],[47.474781,-115.888573],[47.47493,-115.888893],[47.474991,-115.889023],[47.475151,-115.889488],[47.475269,-115.889977],[47.475281,-115.890053],[47.475349,-115.890503],[47.475368,-115.891037],[47.475349,-115.891579],[47.475288,-115.892097],[47.475201,-115.892609],[47.475101,-115.89312],[47.47501,-115.893562],[47.474892,-115.894127],[47.474689,-115.895149],[47.47448,-115.896172],[47.474369,-115.896683],[47.47427,-115.897179],[47.474171,-115.89769],[47.47406,-115.898193],[47.473961,-115.898697],[47.473862,-115.899223],[47.473759,-115.899727],[47.47369,-115.900253],[47.47366,-115.90078],[47.473671,-115.901314],[47.473751,-115.901833],[47.473862,-115.902344],[47.474159,-115.903313],[47.4743,-115.903809],[47.474419,-115.904297],[47.474522,-115.904823],[47.474579,-115.905327],[47.474602,-115.905861],[47.47459,-115.906387],[47.474541,-115.906921],[47.474449,-115.907448],[47.474319,-115.907944],[47.474171,-115.908417],[47.47401,-115.908897],[47.473839,-115.909363],[47.473629,-115.909973],[47.473499,-115.910294],[47.473339,-115.910759],[47.473209,-115.911247],[47.47311,-115.911781],[47.473042,-115.912392],[47.472988,-115.912857],[47.472919,-115.913673],[47.472839,-115.914169],[47.472771,-115.91452],[47.472672,-115.914886],[47.472401,-115.915863],[47.47224,-115.916328],[47.47213,-115.916733],[47.472031,-115.91713],[47.471958,-115.917511],[47.47192,-115.91787],[47.471889,-115.918404],[47.471901,-115.918938],[47.471951,-115.919472],[47.472031,-115.919991],[47.47216,-115.920486],[47.472321,-115.920967],[47.472519,-115.921417],[47.472649,-115.921623],[47.473049,-115.92231],[47.473499,-115.923027],[47.473709,-115.923401],[47.473869,-115.923714],[47.474018,-115.924011],[47.474129,-115.924271],[47.47422,-115.9245],[47.474289,-115.92466],[47.474388,-115.924957],[47.474541,-115.925377],[47.474789,-115.926323],[47.474949,-115.926964],[47.475079,-115.927353],[47.475201,-115.927681],[47.4753,-115.927933],[47.475491,-115.928368],[47.475651,-115.928673],[47.475899,-115.929024],[47.476151,-115.929359],[47.476391,-115.929718],[47.476631,-115.930054],[47.477589,-115.931488],[47.47802,-115.932152],[47.478321,-115.932617],[47.479172,-115.933884],[47.479649,-115.934647],[47.479961,-115.935143],[47.480129,-115.935387],[47.48085,-115.936432],[47.484669,-115.94223],[47.484921,-115.942596],[47.485191,-115.942947],[47.485458,-115.943298],[47.486012,-115.943977],[47.486279,-115.944344],[47.486542,-115.944702],[47.486771,-115.945107],[47.48698,-115.945534],[47.48716,-115.945992],[47.48732,-115.946457],[47.487461,-115.946938],[47.48761,-115.947418],[47.48777,-115.947891],[47.48798,-115.948341],[47.488171,-115.948723],[47.488361,-115.949043],[47.48843,-115.949158],[47.488819,-115.949677],[47.488979,-115.94986],[47.48954,-115.950523],[47.489948,-115.950981],[47.49015,-115.951248],[47.4902,-115.951302],[47.490711,-115.951897],[47.49099,-115.952263],[47.491241,-115.952637],[47.49147,-115.953056],[47.49165,-115.953506],[47.49181,-115.953987],[47.49184,-115.954163],[47.491928,-115.954483],[47.492001,-115.954964],[47.492031,-115.955513],[47.492031,-115.956039],[47.492001,-115.956581],[47.49194,-115.957108],[47.491871,-115.95816],[47.49173,-115.959732],[47.49168,-115.960258],[47.49165,-115.960777],[47.491489,-115.962463],[47.491211,-115.965607],[47.491169,-115.966141],[47.491161,-115.96637],[47.49115,-115.96656],[47.49115,-115.966667],[47.49115,-115.967201],[47.49115,-115.967728],[47.49118,-115.968262],[47.49123,-115.968781],[47.491299,-115.969299],[47.49139,-115.969803],[47.491428,-115.970047],[47.491489,-115.970329],[47.491611,-115.970833],[47.491749,-115.971321],[47.491909,-115.971802],[47.492081,-115.972267],[47.49226,-115.972717],[47.492458,-115.97316],[47.49268,-115.973587],[47.492901,-115.974007],[47.493359,-115.974808],[47.493858,-115.975578],[47.494061,-115.975868],[47.494091,-115.975899],[47.494122,-115.975952],[47.494389,-115.976311],[47.494659,-115.976646],[47.494942,-115.976982],[47.49522,-115.97731],[47.49551,-115.977623],[47.495811,-115.977921],[47.496109,-115.97821],[47.496422,-115.978493],[47.497051,-115.979012],[47.497231,-115.979156],[47.497601,-115.979462],[47.497669,-115.979523],[47.49955,-115.981087],[47.50016,-115.981644],[47.500462,-115.981911],[47.500759,-115.982201],[47.501049,-115.982513],[47.50135,-115.982803],[47.50164,-115.983124],[47.50193,-115.983437],[47.502209,-115.983757],[47.50248,-115.9841],[47.502762,-115.984444],[47.503029,-115.984787],[47.5033,-115.985153],[47.503559,-115.985512],[47.503819,-115.985878],[47.50407,-115.986252],[47.504318,-115.986633],[47.504551,-115.98703],[47.504799,-115.987419],[47.505032,-115.987823],[47.50526,-115.98822],[47.505489,-115.988617],[47.505932,-115.989464],[47.506351,-115.990318],[47.50655,-115.990761],[47.506748,-115.991203],[47.50713,-115.992111],[47.507259,-115.99247],[47.50769,-115.993607],[47.508121,-115.994873],[47.50816,-115.995003],[47.508438,-115.995972],[47.508572,-115.99646],[47.508701,-115.996964],[47.50882,-115.997452],[47.508881,-115.997627],[47.508949,-115.997948],[47.509171,-115.998947],[47.509361,-115.999977],[47.50946,-116.000504],[47.509659,-116.001762],[47.509838,-116.003304],[47.509899,-116.003822],[47.50993,-116.004341],[47.509979,-116.004868],[47.509991,-116.005074],[47.51004,-116.005928],[47.510071,-116.006981],[47.510109,-116.007507],[47.51025,-116.010674],[47.510262,-116.0112],[47.510288,-116.011726],[47.51033,-116.012253],[47.510391,-116.012779],[47.510471,-116.013298],[47.510559,-116.013809],[47.510658,-116.01432],[47.51078,-116.014816],[47.510929,-116.015312],[47.511059,-116.015808],[47.513279,-116.023666],[47.51363,-116.024887],[47.51384,-116.025688],[47.514259,-116.027153],[47.51442,-116.027634],[47.514568,-116.028107],[47.514729,-116.028587],[47.51503,-116.029427],[47.515202,-116.029892],[47.515572,-116.030807],[47.515751,-116.031273],[47.515949,-116.031723],[47.51614,-116.032158],[47.51656,-116.033012],[47.516609,-116.033119],[47.516682,-116.033257],[47.516788,-116.033478],[47.516991,-116.033867],[47.5172,-116.034286],[47.51767,-116.035103],[47.517899,-116.0355],[47.517971,-116.035606],[47.518391,-116.036293],[47.518631,-116.036667],[47.518921,-116.037086],[47.519909,-116.038528],[47.520649,-116.039597],[47.52142,-116.040733],[47.521961,-116.041496],[47.522732,-116.042603],[47.52346,-116.043617],[47.523781,-116.044052],[47.524052,-116.044403],[47.524879,-116.045418],[47.525291,-116.045914],[47.525822,-116.046547],[47.526661,-116.047531],[47.527222,-116.048187],[47.527489,-116.048531],[47.527771,-116.048866],[47.528049,-116.04921],[47.528339,-116.04953],[47.529739,-116.051193],[47.530022,-116.051529],[47.530449,-116.052071],[47.530609,-116.052307],[47.530861,-116.052681],[47.531101,-116.053093],[47.531319,-116.053497],[47.531528,-116.05394],[47.531719,-116.05439],[47.531891,-116.054863],[47.53204,-116.055344],[47.532169,-116.055832],[47.53228,-116.056328],[47.532379,-116.056839],[47.532452,-116.057358],[47.532509,-116.057877],[47.532669,-116.059303],[47.532681,-116.059441],[47.532681,-116.059464],[47.533089,-116.063629],[47.533199,-116.064743],[47.533298,-116.065727],[47.533409,-116.066879],[47.533508,-116.067917],[47.533562,-116.068977],[47.533581,-116.069504],[47.533588,-116.070053],[47.533588,-116.070572],[47.533581,-116.071098],[47.533562,-116.071617],[47.533539,-116.07193],[47.533531,-116.072159],[47.533501,-116.072678],[47.53344,-116.073196],[47.533401,-116.073723],[47.53326,-116.074768],[47.53318,-116.075279],[47.533081,-116.075798],[47.53299,-116.076302],[47.532879,-116.076813],[47.532761,-116.077309],[47.532639,-116.077797],[47.532509,-116.078293],[47.53236,-116.078789],[47.532219,-116.079269],[47.530849,-116.08358],[47.53056,-116.084557],[47.530441,-116.085052],[47.530331,-116.085564],[47.53027,-116.086067],[47.530239,-116.086609],[47.53022,-116.087059],[47.53022,-116.087143],[47.530251,-116.087677],[47.5303,-116.088203],[47.53038,-116.088722],[47.530491,-116.089233],[47.530621,-116.089706],[47.530739,-116.090057],[47.530781,-116.090187],[47.530972,-116.090637],[47.53117,-116.09108],[47.531391,-116.091507],[47.53162,-116.091919],[47.53183,-116.092346],[47.532791,-116.094238],[47.53334,-116.095322],[47.53355,-116.095749],[47.533749,-116.096191],[47.533932,-116.096657],[47.534088,-116.09713],[47.534229,-116.09761],[47.534351,-116.098106],[47.534439,-116.09861],[47.534512,-116.099136],[47.53455,-116.099663],[47.534569,-116.100189],[47.534569,-116.100723],[47.53455,-116.10125],[47.534489,-116.102303],[47.53437,-116.103882],[47.534351,-116.104408],[47.534328,-116.104942],[47.53434,-116.105476],[47.534382,-116.106003],[47.534439,-116.106522],[47.534519,-116.107048],[47.534618,-116.107552],[47.534649,-116.107697],[47.534729,-116.108063],[47.535061,-116.109573],[47.53516,-116.110077],[47.535709,-116.112587],[47.535831,-116.113136],[47.536079,-116.114258],[47.53627,-116.115112],[47.536518,-116.116249],[47.536579,-116.116524],[47.536701,-116.117027],[47.536831,-116.117523],[47.53698,-116.117996],[47.537159,-116.118462],[47.53735,-116.118912],[47.53743,-116.119072],[47.5378,-116.119812],[47.538219,-116.120644],[47.538639,-116.121468],[47.53907,-116.122307],[47.53949,-116.123161],[47.539688,-116.123528],[47.53989,-116.123932],[47.540359,-116.124847],[47.54081,-116.125671],[47.541531,-116.126862],[47.541779,-116.127251],[47.542221,-116.127907],[47.542389,-116.128151],[47.542641,-116.128517],[47.542801,-116.128738],[47.542889,-116.128868],[47.54314,-116.129219],[47.543411,-116.129593],[47.54361,-116.129868],[47.543869,-116.130257],[47.544731,-116.131477],[47.54491,-116.131737],[47.545158,-116.132111],[47.545509,-116.132607],[47.54586,-116.133102],[47.545929,-116.133202],[47.545971,-116.133247],[47.546181,-116.133583],[47.546429,-116.133949],[47.54668,-116.134338],[47.546909,-116.134743],[47.547131,-116.135147],[47.54734,-116.13559],[47.54752,-116.13604],[47.547691,-116.136497],[47.547852,-116.136993],[47.547909,-116.137192],[47.547981,-116.137444],[47.547989,-116.137466],[47.548069,-116.137787],[47.548092,-116.137871],[47.548111,-116.137962],[47.54821,-116.138474],[47.548222,-116.138519],[47.548302,-116.138977],[47.548359,-116.139503],[47.54845,-116.140549],[47.54845,-116.141602],[47.548241,-116.153778],[47.548199,-116.155891],[47.548149,-116.157997],[47.54813,-116.158531],[47.54808,-116.159592],[47.548038,-116.160118],[47.547871,-116.162216],[47.547829,-116.16275],[47.5476,-116.165382],[47.547581,-116.165703],[47.547409,-116.167473],[47.547291,-116.168777],[47.547272,-116.169022],[47.5471,-116.170998],[47.54707,-116.171349],[47.546951,-116.172752],[47.54689,-116.17347],[47.546719,-116.175362],[47.54668,-116.175751],[47.54649,-116.177872],[47.546329,-116.17997],[47.546291,-116.180443],[47.546242,-116.181557],[47.5462,-116.18261],[47.546181,-116.183144],[47.546169,-116.18367],[47.546181,-116.184731],[47.546188,-116.186333],[47.54628,-116.192146],[47.546322,-116.19426],[47.546391,-116.199547],[47.546452,-116.203262],[47.54652,-116.205917],[47.546551,-116.20697],[47.546661,-116.208549],[47.546711,-116.209084],[47.546741,-116.209602],[47.54686,-116.210648],[47.546909,-116.211166],[47.547089,-116.212753],[47.547279,-116.214302],[47.547531,-116.216393],[47.547852,-116.218987],[47.54797,-116.220039],[47.548,-116.220413],[47.548012,-116.220573],[47.548019,-116.220642],[47.548031,-116.221092],[47.548031,-116.221222],[47.548019,-116.221626],[47.548012,-116.222031],[47.547989,-116.222343],[47.547951,-116.22258],[47.547878,-116.223099],[47.547821,-116.223396],[47.547779,-116.22361],[47.547661,-116.224113],[47.54752,-116.224602],[47.547352,-116.225067],[47.547112,-116.225647],[47.54702,-116.225853],[47.546928,-116.226059],[47.54681,-116.226318],[47.546761,-116.226387],[47.54673,-116.226486],[47.546619,-116.226723],[47.546459,-116.227074],[47.54607,-116.227921],[47.5452,-116.22982],[47.544998,-116.23027],[47.544819,-116.230721],[47.54464,-116.231178],[47.544472,-116.231644],[47.54414,-116.232582],[47.54388,-116.233566],[47.543739,-116.234047],[47.543621,-116.23455],[47.543522,-116.235069],[47.543419,-116.235573],[47.54332,-116.236229],[47.543259,-116.236603],[47.54319,-116.237122],[47.54314,-116.237648],[47.543091,-116.238167],[47.54306,-116.238693],[47.543011,-116.239754],[47.543011,-116.240273],[47.543018,-116.240807],[47.543079,-116.241341],[47.543121,-116.241707],[47.54314,-116.241859],[47.543221,-116.242371],[47.543251,-116.242493],[47.543331,-116.242889],[47.543449,-116.243401],[47.5438,-116.244911],[47.544189,-116.246391],[47.544319,-116.24688],[47.54443,-116.247383],[47.54496,-116.249329],[47.545521,-116.251312],[47.545769,-116.252274],[47.545929,-116.252792],[47.54726,-116.257729],[47.547649,-116.259232],[47.548141,-116.261261],[47.548592,-116.263313],[47.548809,-116.264328],[47.549129,-116.265862],[47.549339,-116.266891],[47.549511,-116.267754],[47.549591,-116.26815],[47.549911,-116.269676],[47.550011,-116.27018],[47.550041,-116.270317],[47.550259,-116.271301],[47.550388,-116.271942],[47.550419,-116.27211],[47.55069,-116.273354],[47.550781,-116.273857],[47.55085,-116.274269],[47.55098,-116.274857],[47.551159,-116.275803],[47.551208,-116.2761],[47.551319,-116.276611],[47.55143,-116.277107],[47.551529,-116.277618],[47.551731,-116.278641],[47.551929,-116.279663],[47.55201,-116.280167],[47.552078,-116.280693],[47.552139,-116.281212],[47.552189,-116.281738],[47.552231,-116.282257],[47.552261,-116.282791],[47.55228,-116.283318],[47.55228,-116.28405],[47.552292,-116.28437],[47.55228,-116.284897],[47.55225,-116.285431],[47.552219,-116.285957],[47.552189,-116.286484],[47.552139,-116.286987],[47.552078,-116.287521],[47.551998,-116.288033],[47.551929,-116.288551],[47.551842,-116.289062],[47.551739,-116.289574],[47.551231,-116.292107],[47.551128,-116.292633],[47.551041,-116.293137],[47.550961,-116.293648],[47.55088,-116.294167],[47.550819,-116.294693],[47.550819,-116.294708],[47.550781,-116.29493],[47.550751,-116.295197],[47.550659,-116.296249],[47.55061,-116.29731],[47.550591,-116.297836],[47.550579,-116.29837],[47.550579,-116.298523],[47.550591,-116.299431],[47.550598,-116.299957],[47.550652,-116.301033],[47.55069,-116.301552],[47.550739,-116.302078],[47.5508,-116.302597],[47.5509,-116.303658],[47.550949,-116.304176],[47.55101,-116.304703],[47.551071,-116.305229],[47.551109,-116.305763],[47.551231,-116.306801],[47.551281,-116.307327],[47.551338,-116.307869],[47.551392,-116.308411],[47.551449,-116.308937],[47.55151,-116.309464],[47.551559,-116.309982],[47.551651,-116.311058],[47.551682,-116.311592],[47.551682,-116.312683],[47.551659,-116.31321],[47.551628,-116.313728],[47.551571,-116.314262],[47.551521,-116.314789],[47.55143,-116.315308],[47.551338,-116.315826],[47.551239,-116.316338],[47.551121,-116.316841],[47.550991,-116.317337],[47.55085,-116.317818],[47.550701,-116.318298],[47.550529,-116.318764],[47.550339,-116.319206],[47.55022,-116.319542],[47.549789,-116.32058],[47.549629,-116.320976],[47.54892,-116.322723],[47.548771,-116.323112],[47.548729,-116.323189],[47.548431,-116.323921],[47.548309,-116.324242],[47.547989,-116.32547],[47.547249,-116.328796],[47.547112,-116.329536],[47.54707,-116.329849],[47.54702,-116.330383],[47.546959,-116.330963],[47.546921,-116.33149],[47.546871,-116.332161],[47.54678,-116.333199],[47.5467,-116.334412],[47.546619,-116.335411],[47.5466,-116.335678],[47.546322,-116.339081],[47.546261,-116.339943],[47.546242,-116.34079],[47.546249,-116.341187],[47.546341,-116.342392],[47.546391,-116.342773],[47.546459,-116.343163],[47.546619,-116.343933],[47.546829,-116.344658],[47.54707,-116.345383],[47.547211,-116.345741],[47.548248,-116.348396],[47.548538,-116.349152],[47.548931,-116.350166],[47.5495,-116.351624],[47.5499,-116.352654],[47.550072,-116.353111],[47.550209,-116.35347],[47.550621,-116.354523],[47.55088,-116.355186],[47.550961,-116.355377],[47.55151,-116.356911],[47.551769,-116.357681],[47.552261,-116.35923],[47.552601,-116.360397],[47.55302,-116.361992],[47.553299,-116.36319],[47.55365,-116.364799],[47.55389,-116.366013],[47.5541,-116.367249],[47.554291,-116.368507],[47.55481,-116.37233],[47.555,-116.373619],[47.555359,-116.375771],[47.555752,-116.377907],[47.556099,-116.379623],[47.556568,-116.381737],[47.557072,-116.383827],[47.557621,-116.38591],[47.557961,-116.387131],[47.558701,-116.389572],[47.559071,-116.39077],[47.559471,-116.391953],[47.560032,-116.393517],[47.560871,-116.395828],[47.563259,-116.402283],[47.563702,-116.403397],[47.564339,-116.404846],[47.565239,-116.406593],[47.566132,-116.408157],[47.567459,-116.410057],[47.568111,-116.410896],[47.56879,-116.41169],[47.569489,-116.412453],[47.56995,-116.412918],[47.570419,-116.413361],[47.57114,-116.413986],[47.571918,-116.414619],[47.574039,-116.416344],[47.57576,-116.417732],[47.575809,-116.417778],[47.57621,-116.418121],[47.576641,-116.418556],[47.576851,-116.418793],[47.577431,-116.419518],[47.577789,-116.42009],[47.578129,-116.420677],[47.57843,-116.421333],[47.578579,-116.421661],[47.578838,-116.422363],[47.57896,-116.422722],[47.57917,-116.423477],[47.57933,-116.424263],[47.579498,-116.425468],[47.57954,-116.425873],[47.579559,-116.426277],[47.579571,-116.427101],[47.579552,-116.42791],[47.57943,-116.429131],[47.579288,-116.429932],[47.579208,-116.430328],[47.57901,-116.431107],[47.57877,-116.431862],[47.578491,-116.432587],[47.578159,-116.433281],[47.577671,-116.434273],[47.57592,-116.437737],[47.5756,-116.438377],[47.575508,-116.438606],[47.575359,-116.438972],[47.57531,-116.439087],[47.575191,-116.439453],[47.57505,-116.439827],[47.574879,-116.44062],[47.57481,-116.441017],[47.57478,-116.441429],[47.574749,-116.442413],[47.574772,-116.442749],[47.57478,-116.443047],[47.574821,-116.443466],[47.574871,-116.443863],[47.57494,-116.44426],[47.575031,-116.444649],[47.57513,-116.445007],[47.57531,-116.445572],[47.575588,-116.446472],[47.576389,-116.448952],[47.576679,-116.449837],[47.579899,-116.459839],[47.580978,-116.463181],[47.581219,-116.463921],[47.581581,-116.464958],[47.582119,-116.4664],[47.582699,-116.467743],[47.583019,-116.468369],[47.58334,-116.468987],[47.58437,-116.470787],[47.58672,-116.474693],[47.587151,-116.475441],[47.587421,-116.475906],[47.587528,-116.476143],[47.58757,-116.476242],[47.587719,-116.47657],[47.587971,-116.477257],[47.588188,-116.477997],[47.58847,-116.479111],[47.58857,-116.479477],[47.588612,-116.479568],[47.588692,-116.47982],[47.588829,-116.480164],[47.588982,-116.480476],[47.589149,-116.480766],[47.590229,-116.482361],[47.590389,-116.482643],[47.59053,-116.482941],[47.590649,-116.483253],[47.590759,-116.483566],[47.590931,-116.484253],[47.590988,-116.484947],[47.590981,-116.486069],[47.590961,-116.486382],[47.590961,-116.486473],[47.590931,-116.487587],[47.5909,-116.488739],[47.590931,-116.489502],[47.590969,-116.489883],[47.591171,-116.490593],[47.59129,-116.490936],[47.591431,-116.491257],[47.591579,-116.49157],[47.59177,-116.491859],[47.591919,-116.49205],[47.591969,-116.492126],[47.59219,-116.492363],[47.59243,-116.492554],[47.592682,-116.492706],[47.592949,-116.492844],[47.59322,-116.492897],[47.593498,-116.492928],[47.593781,-116.492897],[47.59433,-116.492737],[47.594879,-116.492538],[47.594921,-116.492531],[47.595169,-116.49247],[47.595428,-116.492348],[47.595711,-116.49231],[47.596001,-116.492302],[47.596279,-116.492348],[47.59655,-116.492432],[47.596821,-116.492561],[47.597069,-116.492729],[47.597309,-116.492943],[47.59753,-116.493172],[47.597569,-116.49321],[47.59774,-116.493431],[47.597931,-116.493729],[47.598099,-116.494041],[47.598579,-116.495033],[47.59893,-116.495651],[47.599098,-116.495934],[47.599312,-116.496178],[47.599529,-116.496399],[47.599991,-116.496773],[47.600269,-116.496933],[47.600491,-116.497124],[47.602421,-116.498627],[47.602551,-116.498718],[47.602631,-116.498787],[47.604359,-116.500092],[47.604801,-116.500458],[47.605011,-116.500664],[47.605209,-116.500893],[47.6054,-116.501137],[47.605751,-116.501694],[47.60593,-116.502213],[47.60598,-116.502342],[47.606152,-116.503052],[47.606201,-116.50341],[47.606232,-116.503769],[47.606239,-116.504143],[47.60622,-116.504509],[47.606159,-116.505234],[47.60606,-116.505821],[47.605991,-116.50631],[47.6059,-116.507027],[47.605862,-116.507767],[47.605862,-116.508133],[47.605888,-116.508499],[47.605942,-116.508713],[47.606041,-116.509171],[47.60627,-116.509804],[47.6064,-116.510094],[47.60656,-116.510368],[47.606628,-116.510468],[47.606731,-116.51062],[47.606918,-116.510849],[47.607121,-116.511047],[47.607552,-116.511337],[47.607769,-116.511467],[47.608009,-116.511574],[47.608212,-116.511703],[47.608898,-116.512047],[47.609211,-116.512291],[47.60931,-116.512367],[47.609692,-116.512779],[47.609859,-116.513023],[47.610008,-116.513283],[47.610149,-116.513557],[47.610371,-116.514168],[47.610458,-116.514488],[47.610519,-116.514816],[47.610828,-116.517197],[47.611019,-116.518211],[47.61124,-116.518829],[47.61153,-116.519379],[47.611858,-116.519867],[47.61203,-116.520103],[47.612209,-116.520309],[47.61261,-116.52066],[47.613029,-116.520943],[47.613251,-116.521027],[47.61348,-116.521111],[47.613941,-116.521187],[47.614399,-116.521187],[47.614632,-116.521149],[47.614849,-116.521103],[47.615311,-116.520943],[47.61607,-116.520607],[47.616798,-116.520287],[47.616859,-116.520264],[47.61731,-116.520103],[47.617771,-116.519974],[47.618,-116.519943],[47.618229,-116.519928],[47.618462,-116.519951],[47.61869,-116.519989],[47.618858,-116.520042],[47.618919,-116.520058],[47.619141,-116.520149],[47.61935,-116.520279],[47.619572,-116.520416],[47.61977,-116.520592],[47.620159,-116.521011],[47.620251,-116.521133],[47.620338,-116.521248],[47.62051,-116.5215],[47.620831,-116.522057],[47.621262,-116.523003],[47.621658,-116.523987],[47.622162,-116.525352],[47.6222,-116.525497],[47.622631,-116.526817],[47.62307,-116.528343],[47.62344,-116.529877],[47.623589,-116.530609],[47.623669,-116.530998],[47.62373,-116.531273],[47.623791,-116.531563],[47.62397,-116.532631],[47.624088,-116.533379],[47.62431,-116.534973],[47.624519,-116.537033],[47.624641,-116.539032],[47.62468,-116.539917],[47.624691,-116.540253],[47.62471,-116.540848],[47.624699,-116.542381],[47.624722,-116.5439],[47.624722,-116.543968],[47.62471,-116.544922],[47.624699,-116.545029],[47.62468,-116.545647],[47.624599,-116.547401],[47.62455,-116.54818],[47.624439,-116.54895],[47.624378,-116.54911],[47.624359,-116.549171],[47.624069,-116.550003],[47.623821,-116.550713],[47.62286,-116.553169],[47.622742,-116.553543],[47.62265,-116.553909],[47.622581,-116.554253],[47.622478,-116.554703],[47.622452,-116.555092],[47.622429,-116.555878],[47.62244,-116.55619],[47.62244,-116.556282],[47.622459,-116.556679],[47.622509,-116.557068],[47.622669,-116.557838],[47.622768,-116.558197],[47.622929,-116.558701],[47.62294,-116.558739],[47.623009,-116.558937],[47.62373,-116.560593],[47.624081,-116.561562],[47.624168,-116.561867],[47.624321,-116.562492],[47.624359,-116.562813],[47.624409,-116.563469],[47.624409,-116.563667],[47.624401,-116.565178],[47.624409,-116.565872],[47.624519,-116.566933],[47.624668,-116.56768],[47.62487,-116.568672],[47.62492,-116.569023],[47.62495,-116.569382],[47.624969,-116.569733],[47.624969,-116.570084],[47.624859,-116.570862],[47.624802,-116.57122],[47.624699,-116.571571],[47.62458,-116.571907],[47.624519,-116.57206],[47.62429,-116.572563],[47.62392,-116.573128],[47.623821,-116.573257],[47.623501,-116.573647],[47.623299,-116.573898],[47.622871,-116.57444],[47.622261,-116.575233],[47.62207,-116.575523],[47.621899,-116.575844],[47.621849,-116.575943],[47.621738,-116.576172],[47.621601,-116.576523],[47.621479,-116.576897],[47.62138,-116.577271],[47.621349,-116.577469],[47.621311,-116.577667],[47.621281,-116.577881],[47.62125,-116.578072],[47.62122,-116.578468],[47.62122,-116.578644],[47.62122,-116.57888],[47.621262,-116.579277],[47.621311,-116.579689],[47.62149,-116.580467],[47.621632,-116.580833],[47.62178,-116.581177],[47.621971,-116.581497],[47.62215,-116.581833],[47.622662,-116.582581],[47.623169,-116.583344],[47.624989,-116.585983],[47.62508,-116.586113],[47.62524,-116.586357],[47.625671,-116.586983],[47.625851,-116.587303],[47.626011,-116.587639],[47.626301,-116.588364],[47.626431,-116.588753],[47.626621,-116.589561],[47.62677,-116.590401],[47.626881,-116.591667],[47.626991,-116.592529],[47.627048,-116.592949],[47.62719,-116.593773],[47.627312,-116.59417],[47.627491,-116.594978],[47.627609,-116.595383],[47.627892,-116.596153],[47.628559,-116.597588],[47.629509,-116.599228],[47.62973,-116.599579],[47.629929,-116.600037],[47.6301,-116.60051],[47.63023,-116.601051],[47.630348,-116.601784],[47.630421,-116.602592],[47.630779,-116.60701],[47.630791,-116.607277],[47.630871,-116.609177],[47.630909,-116.610474],[47.630909,-116.610893],[47.630859,-116.611748],[47.63073,-116.612556],[47.630489,-116.613731],[47.630329,-116.61451],[47.629951,-116.616417],[47.62883,-116.621819],[47.62701,-116.630623],[47.6269,-116.63118],[47.626781,-116.631821],[47.625561,-116.63868],[47.625038,-116.641579],[47.62439,-116.645149],[47.624191,-116.646301],[47.624149,-116.646553],[47.62394,-116.64785],[47.623798,-116.649033],[47.623779,-116.649223],[47.62376,-116.649429],[47.623669,-116.65065],[47.623631,-116.651604],[47.623619,-116.651878],[47.623631,-116.653587],[47.62368,-116.654388],[47.62381,-116.656471],[47.623829,-116.657303],[47.62381,-116.657707],[47.623772,-116.658539],[47.623638,-116.660187],[47.6236,-116.661034],[47.6236,-116.661873],[47.623661,-116.663147],[47.623749,-116.663971],[47.623878,-116.664833],[47.623959,-116.665253],[47.624142,-116.666092],[47.62447,-116.667313],[47.625092,-116.669296],[47.625778,-116.671677],[47.62635,-116.673378],[47.626709,-116.674561],[47.62738,-116.676811],[47.628132,-116.679382],[47.629131,-116.682404],[47.629589,-116.683922],[47.62994,-116.685043],[47.630131,-116.685768],[47.630291,-116.686447],[47.63039,-116.686951],[47.630699,-116.689323],[47.630859,-116.690086],[47.631321,-116.691994],[47.631451,-116.692772],[47.631519,-116.693573],[47.631531,-116.694366],[47.6315,-116.694763],[47.631451,-116.69516],[47.631081,-116.697113],[47.631031,-116.697502],[47.630989,-116.697906],[47.630981,-116.698723],[47.631039,-116.699516],[47.6311,-116.699921],[47.631168,-116.700317],[47.631649,-116.702621],[47.63205,-116.70446],[47.632141,-116.704811],[47.632339,-116.705406],[47.632679,-116.70607],[47.632851,-116.706337],[47.633289,-116.706833],[47.633499,-116.707031],[47.633732,-116.707199],[47.633968,-116.707329],[47.634209,-116.707443],[47.63446,-116.70752],[47.63496,-116.707611],[47.635208,-116.707603],[47.63699,-116.707474],[47.637409,-116.707451],[47.637718,-116.707474],[47.638039,-116.70755],[47.638351,-116.707626],[47.638611,-116.707771],[47.638969,-116.708023],[47.639191,-116.708237],[47.63953,-116.708672],[47.639671,-116.708969],[47.639832,-116.709251],[47.63998,-116.709549],[47.640511,-116.710793],[47.6408,-116.711403],[47.640961,-116.711693],[47.641151,-116.711952],[47.64135,-116.712196],[47.64156,-116.712433],[47.641769,-116.712608],[47.64201,-116.712784],[47.642239,-116.712914],[47.642719,-116.713127],[47.643688,-116.71344],[47.644878,-116.713676],[47.646881,-116.713943],[47.647461,-116.714027],[47.647881,-116.714188],[47.648701,-116.714561],[47.649529,-116.714912],[47.649891,-116.714996],[47.650398,-116.715134],[47.65089,-116.71534],[47.651119,-116.715469],[47.651348,-116.71563],[47.651569,-116.71582],[47.651779,-116.716026],[47.651989,-116.716263],[47.65218,-116.716507],[47.652359,-116.716789],[47.652519,-116.717087],[47.652679,-116.717407],[47.652931,-116.718079],[47.65303,-116.71843],[47.653111,-116.718803],[47.653179,-116.71917],[47.653221,-116.719551],[47.653252,-116.71994],[47.653278,-116.720718],[47.653271,-116.721077],[47.653259,-116.72184],[47.653271,-116.722519],[47.653301,-116.723091],[47.65337,-116.72377],[47.653431,-116.724136],[47.653511,-116.724487],[47.65361,-116.724838],[47.653721,-116.725166],[47.653851,-116.725487],[47.653999,-116.725777],[47.654339,-116.726311],[47.65453,-116.726547],[47.65472,-116.726761],[47.654942,-116.726936],[47.655159,-116.727097],[47.655571,-116.72731],[47.656361,-116.727539],[47.658051,-116.72789],[47.659489,-116.72821],[47.659969,-116.72834],[47.660172,-116.728416],[47.660431,-116.728531],[47.660671,-116.728653],[47.6609,-116.728813],[47.661121,-116.728973],[47.661339,-116.729156],[47.661549,-116.729362],[47.66193,-116.729843],[47.661991,-116.729927],[47.662109,-116.730103],[47.66227,-116.730377],[47.662418,-116.730667],[47.662571,-116.73101],[47.662571,-116.731033],[47.662689,-116.731354],[47.662769,-116.731667],[47.66288,-116.73233],[47.66293,-116.733017],[47.66293,-116.733383],[47.66288,-116.734093],[47.662571,-116.736137],[47.662529,-116.736862],[47.66256,-116.737579],[47.662659,-116.739037],[47.662682,-116.739769],[47.662651,-116.740494],[47.66243,-116.742638],[47.66238,-116.743378],[47.66238,-116.74353],[47.662369,-116.744133],[47.662418,-116.744888],[47.66246,-116.745247],[47.66256,-116.745903],[47.662651,-116.746353],[47.662811,-116.746834],[47.662971,-116.747307],[47.663139,-116.747726],[47.663342,-116.748154],[47.66357,-116.748573],[47.66378,-116.748871],[47.664001,-116.749153],[47.664291,-116.749474],[47.66457,-116.749763],[47.664829,-116.749939],[47.66507,-116.750107],[47.665459,-116.750343],[47.66573,-116.750427],[47.666111,-116.750511],[47.66658,-116.750557],[47.667881,-116.750633],[47.66824,-116.750641],[47.668591,-116.750664],[47.669682,-116.75071],[47.669762,-116.750717],[47.66991,-116.750717],[47.6712,-116.750633],[47.671329,-116.750618],[47.67152,-116.750603],[47.671669,-116.750572],[47.6717,-116.750572],[47.672039,-116.750511],[47.67226,-116.750473],[47.672379,-116.750458],[47.67276,-116.750397],[47.673111,-116.750343],[47.673199,-116.75032],[47.673321,-116.750343],[47.67329,-116.752037],[47.673309,-116.753517],[47.673321,-116.754982],[47.673321,-116.755272],[47.673321,-116.756462],[47.673321,-116.757912],[47.673328,-116.759377],[47.673328,-116.760384],[47.673328,-116.761864],[47.673321,-116.763321],[47.67334,-116.764778],[47.673328,-116.766243],[47.673328,-116.7677],[47.67334,-116.76915],[47.67334,-116.77063],[47.67334,-116.772339],[47.67334,-116.773819],[47.67334,-116.775307],[47.673389,-116.776817],[47.67342,-116.778267],[47.67345,-116.779716],[47.673851,-116.779701],[47.674271,-116.779678],[47.674679,-116.779671],[47.675098,-116.779663],[47.67551,-116.77964],[47.675919,-116.779617],[47.676338,-116.77961],[47.67675,-116.779587],[47.676891,-116.779587],[47.677151,-116.779579],[47.67757,-116.779556],[47.677589,-116.780472],[47.677589,-116.781013],[47.67762,-116.782494],[47.67765,-116.783981],[47.67767,-116.785454],[47.677681,-116.786087],[47.677662,-116.786293],[47.677662,-116.789299],[47.678539,-116.790176],[47.679211,-116.79084],[47.679939,-116.791542],[47.680119,-116.791702],[47.680439,-116.792],[47.682381,-116.793617],[47.682789,-116.793953],[47.683632,-116.794617],[47.683769,-116.794724],[47.683899,-116.794792],[47.68404,-116.794861],[47.6842,-116.794907],[47.684422,-116.794968],[47.684528,-116.794998],[47.685242,-116.795082],[47.68549,-116.795128],[47.685638,-116.795158],[47.68578,-116.795197],[47.68589,-116.79525],[47.687069,-116.79586],[47.687328,-116.795967],[47.687538,-116.795357],[47.687672,-116.794891],[47.687729,-116.79464],[47.687752,-116.794548],[47.687801,-116.794327],[47.68782,-116.794258],[47.687851,-116.79406],[47.68792,-116.793648],[47.688,-116.793007],[47.688011,-116.792778],[47.688129,-116.792358],[47.688171,-116.792252],[47.688221,-116.792152],[47.688271,-116.792084],[47.688339,-116.792007],[47.688412,-116.791946],[47.688492,-116.791924],[47.688591,-116.791878],[47.688709,-116.791847],[47.688801,-116.791817],[47.688919,-116.791786],[47.688992,-116.791779],[47.689442,-116.791779],[47.689892,-116.791771],[47.690819,-116.791763],[47.690861,-116.791763],[47.69173,-116.79174],[47.692581,-116.791733],[47.694569,-116.791718],[47.69471,-116.791641],[47.69743,-116.791611],[47.698071,-116.791611],[47.698521,-116.791603],[47.699039,-116.791603],[47.69952,-116.791588],[47.699509,-116.791748],[47.699429,-116.792236],[47.699249,-116.793373],[47.6992,-116.793823],[47.699162,-116.794243],[47.699139,-116.794548],[47.699131,-116.794823],[47.699131,-116.795212],[47.699139,-116.796669],[47.6991,-116.797218],[47.699169,-116.798561],[47.6992,-116.79921],[47.69931,-116.8013],[47.699402,-116.802757],[47.699429,-116.803131],[47.69949,-116.803886],[47.6996,-116.805061],[47.699692,-116.805847],[47.69976,-116.806427],[47.699829,-116.807007],[47.69989,-116.807388],[47.699921,-116.807732],[47.699989,-116.808228],[47.700081,-116.808823],[47.700161,-116.80928],[47.70039,-116.810783],[47.700741,-116.812958],[47.700771,-116.81311],[47.700951,-116.81427],[47.701019,-116.814713],[47.701061,-116.814949],[47.701141,-116.815483],[47.7019,-116.82029],[47.702091,-116.821533],[47.702641,-116.82502],[47.703091,-116.827682],[47.703159,-116.828133],[47.703442,-116.829498],[47.70356,-116.830093],[47.70369,-116.830757],[47.70401,-116.83226],[47.704361,-116.833923],[47.704418,-116.834267],[47.704788,-116.835983],[47.704922,-116.836693],[47.705059,-116.837418],[47.70512,-116.837799],[47.705429,-116.839279],[47.705589,-116.839996],[47.705761,-116.840767],[47.705921,-116.841507],[47.706089,-116.842278],[47.706261,-116.843033],[47.706631,-116.844833],[47.707821,-116.850563],[47.70797,-116.851212],[47.708191,-116.852379],[47.70826,-116.852753],[47.708401,-116.853523],[47.70866,-116.855072],[47.708771,-116.855873],[47.708912,-116.857079],[47.709141,-116.859543],[47.709202,-116.860489],[47.70924,-116.862152],[47.709251,-116.862541],[47.709251,-116.862938],[47.709301,-116.867378],[47.70929,-116.868622],[47.709278,-116.869041],[47.70929,-116.869453],[47.70929,-116.869858],[47.70929,-116.870949],[47.709301,-116.872726],[47.70929,-116.873718],[47.709301,-116.875137],[47.709309,-116.876663],[47.709309,-116.878227],[47.709309,-116.882149],[47.70932,-116.88327],[47.709332,-116.883789],[47.709332,-116.884613],[47.709339,-116.886627],[47.70937,-116.88781],[47.709412,-116.888603],[47.70948,-116.889427],[47.709518,-116.889778],[47.709629,-116.890663],[47.70974,-116.891472],[47.709881,-116.892273],[47.709961,-116.89267],[47.710121,-116.893448],[47.710381,-116.894493],[47.71048,-116.894836],[47.710629,-116.895378],[47.710739,-116.895782],[47.711079,-116.897034],[47.71133,-116.897972],[47.711521,-116.898743],[47.7117,-116.89949],[47.711849,-116.900253],[47.71199,-116.901001],[47.71212,-116.901749],[47.712231,-116.902512],[47.712311,-116.903091],[47.712341,-116.903267],[47.712379,-116.903664],[47.71244,-116.904243],[47.712471,-116.904427],[47.712521,-116.905029],[47.71254,-116.905197],[47.712601,-116.905983],[47.712639,-116.906761],[47.712662,-116.90715],[47.712681,-116.907928],[47.7127,-116.908722],[47.712688,-116.910347],[47.7127,-116.915718],[47.712719,-116.923424],[47.712719,-116.924263],[47.712719,-116.929024],[47.712711,-116.930771],[47.7127,-116.936737],[47.712719,-116.938026],[47.7127,-116.938477],[47.712719,-116.940292],[47.712742,-116.945412],[47.712769,-116.947662],[47.712749,-116.948463],[47.712749,-116.949509],[47.712749,-116.950363],[47.712749,-116.950417],[47.712761,-116.95079],[47.71278,-116.951027],[47.71283,-116.951973],[47.712891,-116.952507],[47.712959,-116.952927],[47.713112,-116.953773],[47.713219,-116.954239],[47.713299,-116.954613],[47.713501,-116.955429],[47.713799,-116.956657],[47.71397,-116.957474],[47.714039,-116.957893],[47.714111,-116.958313],[47.714161,-116.958717],[47.714211,-116.959137],[47.714249,-116.959557],[47.714279,-116.959976],[47.714298,-116.960403],[47.71431,-116.960823],[47.71431,-116.961227],[47.714279,-116.962051],[47.714241,-116.962463],[47.714149,-116.96328],[47.714088,-116.963676],[47.713951,-116.964493],[47.712929,-116.969368],[47.712688,-116.970596],[47.71254,-116.97142],[47.712399,-116.97226],[47.712078,-116.974327],[47.71196,-116.975189],[47.711689,-116.97776],[47.71125,-116.981613],[47.710979,-116.984207],[47.710819,-116.985901],[47.710651,-116.987679],[47.710571,-116.98851],[47.7104,-116.990593],[47.710361,-116.991096],[47.710281,-116.992241],[47.710159,-116.994301],[47.71006,-116.996094],[47.710041,-116.996361],[47.709969,-116.99765],[47.709881,-116.998917],[47.709839,-116.999336],[47.709789,-116.999771],[47.709671,-117.00061],[47.709591,-117.00103],[47.709511,-117.001442],[47.709339,-117.002129],[47.709209,-117.002647],[47.708969,-117.003441],[47.708851,-117.003822],[47.70858,-117.004593],[47.708439,-117.004967],[47.70829,-117.005333],[47.70813,-117.005699],[47.707958,-117.006042],[47.707062,-117.007874],[47.706821,-117.008377],[47.706581,-117.008873],[47.706051,-117.009933],[47.70499,-117.012093],[47.70446,-117.013184],[47.703949,-117.014236],[47.703461,-117.015312],[47.7033,-117.015671],[47.702991,-117.016403],[47.702381,-117.017853],[47.70208,-117.018593],[47.70187,-117.01915],[47.701801,-117.019341],[47.701401,-117.020462],[47.70113,-117.021217],[47.700741,-117.022362],[47.700352,-117.023499],[47.70023,-117.023888],[47.69989,-117.025063],[47.69968,-117.025848],[47.699471,-117.026627],[47.699371,-117.027031],[47.69928,-117.027428],[47.698662,-117.030273],[47.69841,-117.031487],[47.69825,-117.03231],[47.698101,-117.033142],[47.697971,-117.033974],[47.69791,-117.03434],[47.697842,-117.034821],[47.697659,-117.036079],[47.697441,-117.037773],[47.697121,-117.040009],[47.696838,-117.041969],[47.696621,-117.043694],[47.696491,-117.044724],[47.696381,-117.045563],[47.69627,-117.046288],[47.696171,-117.046997],[47.696041,-117.047783],[47.696011,-117.047974],[47.695889,-117.048523],[47.695679,-117.049469],[47.69548,-117.050293],[47.695278,-117.050987],[47.69508,-117.051666],[47.69482,-117.052467],[47.694538,-117.05323],[47.693249,-117.056534],[47.691559,-117.060867],[47.69035,-117.06395],[47.68911,-117.067108],[47.68795,-117.070137],[47.68692,-117.072762],[47.685589,-117.076172],[47.683941,-117.080406],[47.68243,-117.084267],[47.68187,-117.08577],[47.68153,-117.0868],[47.681171,-117.088058],[47.680908,-117.089157],[47.680679,-117.090248],[47.680481,-117.091423],[47.67981,-117.096329],[47.67952,-117.098442],[47.679359,-117.099327],[47.679161,-117.100128],[47.67894,-117.100853],[47.678692,-117.101578],[47.678398,-117.102272],[47.67802,-117.103027],[47.677738,-117.103554],[47.67733,-117.104187],[47.676899,-117.104759],[47.67646,-117.105263],[47.675892,-117.105827],[47.673691,-117.10778],[47.672871,-117.108521],[47.67218,-117.109283],[47.671619,-117.109962],[47.671181,-117.110588],[47.67078,-117.111229],[47.670521,-117.11171],[47.670212,-117.11235],[47.66991,-117.113007],[47.669559,-117.113861],[47.669331,-117.114487],[47.669109,-117.115173],[47.668949,-117.115761],[47.66877,-117.116493],[47.66679,-117.125473],[47.666039,-117.129013],[47.665901,-117.129738],[47.665771,-117.130707],[47.665699,-117.131622],[47.665668,-117.132881],[47.66568,-117.139977],[47.665691,-117.152061],[47.66568,-117.153633],[47.66568,-117.154892],[47.665691,-117.158859],[47.665691,-117.160721],[47.665691,-117.163208],[47.665691,-117.169662],[47.665699,-117.174942],[47.665722,-117.176079],[47.665741,-117.177002],[47.66589,-117.17865],[47.665951,-117.179367],[47.666088,-117.180489],[47.666279,-117.181541],[47.667599,-117.188217],[47.66856,-117.193031],[47.66861,-117.193268],[47.669521,-117.197731],[47.66964,-117.198334],[47.670609,-117.20298],[47.671322,-117.206749],[47.672138,-117.210777],[47.672401,-117.212044],[47.67284,-117.214172],[47.67358,-117.217979],[47.673779,-117.218987],[47.673901,-117.219727],[47.674122,-117.220932],[47.67432,-117.223038],[47.674389,-117.22493],[47.67432,-117.228302],[47.674252,-117.233528],[47.674141,-117.239212],[47.674042,-117.246674],[47.674042,-117.248558],[47.674068,-117.249763],[47.67411,-117.25087],[47.674229,-117.252609],[47.67448,-117.25563],[47.674969,-117.259819],[47.675011,-117.260277],[47.675098,-117.26133],[47.675159,-117.262192],[47.675228,-117.263283],[47.67527,-117.264923],[47.675289,-117.266747],[47.675259,-117.268784],[47.67519,-117.270653],[47.675091,-117.272041],[47.67498,-117.273117],[47.674881,-117.274063],[47.674622,-117.276291],[47.67453,-117.276917],[47.674221,-117.279068],[47.673389,-117.28508],[47.67271,-117.289871],[47.672611,-117.290543],[47.672352,-117.292168],[47.672058,-117.293251],[47.671631,-117.294533],[47.671249,-117.295418],[47.669079,-117.300583],[47.666939,-117.305733],[47.665691,-117.308662],[47.6646,-117.311203],[47.66341,-117.314018],[47.663071,-117.314651],[47.662628,-117.31543],[47.661949,-117.316544],[47.661579,-117.317123],[47.661018,-117.317863],[47.66077,-117.318199],[47.659752,-117.319443],[47.65905,-117.320183],[47.658852,-117.320351],[47.65728,-117.321747],[47.656731,-117.322273],[47.65641,-117.322533],[47.656021,-117.322906],[47.655731,-117.323242],[47.65522,-117.324074],[47.6548,-117.324821],[47.654549,-117.325447],[47.654369,-117.325974],[47.654202,-117.326553],[47.654011,-117.327408],[47.653881,-117.3284],[47.653839,-117.329338],[47.653839,-117.330109],[47.653858,-117.333923],[47.653881,-117.334541],[47.653919,-117.335854],[47.653931,-117.338593],[47.653961,-117.341583],[47.653961,-117.346748],[47.653961,-117.347183],[47.653969,-117.352119],[47.653961,-117.352707],[47.653961,-117.354156],[47.654011,-117.361183],[47.654041,-117.367577],[47.654041,-117.368591],[47.654049,-117.369583],[47.65403,-117.371239],[47.654018,-117.373947],[47.653992,-117.381973],[47.65398,-117.382652],[47.65398,-117.384354],[47.65398,-117.38694],[47.6539,-117.388657],[47.65382,-117.389374],[47.65366,-117.389992],[47.653278,-117.391159],[47.65292,-117.392113],[47.65271,-117.392799],[47.652519,-117.39357],[47.652359,-117.394409],[47.652248,-117.395401],[47.652229,-117.396423],[47.652199,-117.397728],[47.65221,-117.399033],[47.65218,-117.401001],[47.652229,-117.403618],[47.65226,-117.404259],[47.652538,-117.408173],[47.652599,-117.409714],[47.65266,-117.411011],[47.65279,-117.413498],[47.65279,-117.417702],[47.652779,-117.419037],[47.652729,-117.42514],[47.652729,-117.425621],[47.652691,-117.42836],[47.652679,-117.428871],[47.652611,-117.429459],[47.6525,-117.430267],[47.651958,-117.433701],[47.651569,-117.435783],[47.65131,-117.43705],[47.650959,-117.438744],[47.650669,-117.440193],[47.650379,-117.441544],[47.650211,-117.442284],[47.649891,-117.443497],[47.64967,-117.444237],[47.649479,-117.444817],[47.649231,-117.445503],[47.648869,-117.446426],[47.648232,-117.447968],[47.64772,-117.449074],[47.6465,-117.451851],[47.646381,-117.452141],[47.645248,-117.454689],[47.644409,-117.456573],[47.64397,-117.45752],[47.642899,-117.460022],[47.642479,-117.461014],[47.640629,-117.465347],[47.638908,-117.469177],[47.638191,-117.470833],[47.636971,-117.47345],[47.636108,-117.475487],[47.635448,-117.47686],[47.633839,-117.479698],[47.631969,-117.482948],[47.631809,-117.483253],[47.631458,-117.483803],[47.628502,-117.488693],[47.624191,-117.49588],[47.621929,-117.499649],[47.620129,-117.5028],[47.619831,-117.503349],[47.617859,-117.5065],[47.616169,-117.509453],[47.615879,-117.509949],[47.615501,-117.510681],[47.6152,-117.51133],[47.614529,-117.512779],[47.614021,-117.51403],[47.612679,-117.517433],[47.612049,-117.518997],[47.609989,-117.524017],[47.608601,-117.527428],[47.60722,-117.53083],[47.606548,-117.532402],[47.60445,-117.537529],[47.602699,-117.54184],[47.601921,-117.543709],[47.59996,-117.548538],[47.59845,-117.552223],[47.59687,-117.556084],[47.595551,-117.559227],[47.595051,-117.56028],[47.594841,-117.560707],[47.593121,-117.563744],[47.592789,-117.564232],[47.591789,-117.565598],[47.5909,-117.566681],[47.58989,-117.56778],[47.58588,-117.571938],[47.583099,-117.574837],[47.579861,-117.578217],[47.575958,-117.582329],[47.572449,-117.585983],[47.5718,-117.586662],[47.56974,-117.588791],[47.568741,-117.589859],[47.56842,-117.590233],[47.56805,-117.59066],[47.567478,-117.591347],[47.566978,-117.592018],[47.566509,-117.592697],[47.56604,-117.593369],[47.56546,-117.594292],[47.56461,-117.595863],[47.564159,-117.596764],[47.563751,-117.59761],[47.56329,-117.598709],[47.562279,-117.601334],[47.56197,-117.602142],[47.560558,-117.605766],[47.560371,-117.606277],[47.559841,-117.607597],[47.559189,-117.609123],[47.558491,-117.610542],[47.55735,-117.612717],[47.556061,-117.614937],[47.55378,-117.618263],[47.550732,-117.622772],[47.548721,-117.625748],[47.54681,-117.628563],[47.546421,-117.62915],[47.544891,-117.631439],[47.54303,-117.634171],[47.539879,-117.638809],[47.535351,-117.645493],[47.533749,-117.647873],[47.532879,-117.6493],[47.532051,-117.650993],[47.53017,-117.655022],[47.529629,-117.656113],[47.529209,-117.656914],[47.528339,-117.658447],[47.527069,-117.66037],[47.523918,-117.664291],[47.522301,-117.666298],[47.52029,-117.668839],[47.51783,-117.671944],[47.515251,-117.675163],[47.514069,-117.676811],[47.510139,-117.68261],[47.506939,-117.687286],[47.50478,-117.690483],[47.501541,-117.695213],[47.500439,-117.696861],[47.496761,-117.702301],[47.492989,-117.707809],[47.488602,-117.714241],[47.48439,-117.720428],[47.480671,-117.725906],[47.47646,-117.731987],[47.47192,-117.73877],[47.466499,-117.746536],[47.462299,-117.752823],[47.447651,-117.774246],[47.443871,-117.779808],[47.439732,-117.785873],[47.438251,-117.787949],[47.436871,-117.789726],[47.432949,-117.794579],[47.428661,-117.799873],[47.4272,-117.801598],[47.424561,-117.805206],[47.423069,-117.807297],[47.416889,-117.814903],[47.409809,-117.823593],[47.40366,-117.831146],[47.39941,-117.835953],[47.39822,-117.837303],[47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment