Skip to content

Instantly share code, notes, and snippets.

@bowmanmc
Last active August 29, 2015 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bowmanmc/1a4f273bc81f53d35cd1 to your computer and use it in GitHub Desktop.
Save bowmanmc/1a4f273bc81f53d35cd1 to your computer and use it in GitHub Desktop.
Animated Ohio Map with Counties
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Animated Ohio Choropleth Map</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width">
<!-- Vendor css -->
<!-- App css -->
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div id="map" class="fullscreen-map"></div>
<a id="redraw">Re-Draw</a>
<!-- Vendor Scripts -->
<script src="https://code.jquery.com/jquery-1.11.1.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="http://momentjs.com/downloads/moment.min.js"></script>
<!-- Page Scripts -->
<script src="map.js"></script>
<script>
var map = new OhioMap('#map');
map.drawMap();
</script>
</body>
</html>
function OhioMap(elementIdSelector) {
this.mapSelector = elementIdSelector;
this.drawMap = function() {
var map = this;
var el = $(map.mapSelector)[0];
//var width = 960,
// height = 1200;
map.height = el.clientHeight;
map.width = (960 / 1200) * map.height;
console.log('Making map size: ' + map.width + 'x' + map.height);
//map.projection = d3.geo.mercator().translate([map.width / 2, map.height / 2]);
map.projection = d3.geo.conicConformal()
.rotate([82 + 30 / 60, -39 - 40 / 60])
.translate([map.width / 2, map.height / 2]);
map.path = d3.geo.path().projection(map.projection);
map.svg = d3.select(map.mapSelector).append('svg')
.attr('width', map.width)
.attr('height', map.height);
map.bg = map.svg.append('g');
map.fg = map.svg.append('g');
map.getState().then(function() {
map.getCounties().then(function() {
map.draw();
});
});
$('#redraw').click(function() {
map.clear();
map.draw();
});
};
this.clear = function() {
map.bg.html('');
map.fg.html('');
};
this.draw = function() {
this.drawState();
this.drawCounties();
};
this.getState = function() {
var deferred = $.Deferred();
var map = this;
d3.json('state.oh.json', function(error, response) {
map.state = response;
deferred.resolve();
});
return deferred.promise();
};
this.drawState = function() {
var map = this;
map.projection.scale(1).translate([0, 0]);
var b = map.path.bounds(map.state),
s = 0.95 / Math.max((b[1][0] - b[0][0]) / map.width, (b[1][1] - b[0][1]) / map.height),
t = [(map.width - s * (b[1][0] + b[0][0])) / 2, (map.height - s * (b[1][1] + b[0][1])) / 2];
map.projection.scale(s).translate(t);
var ohioPath = map.fg.selectAll('path')
.data(map.state.features)
.enter().append('path')
.attr('id', 'pathOhio')
.attr('class', 'state')
.attr('stroke', '#fff')
.attr('stroke-width', 3)
.attr('d', map.path);
map.animate('#' + ohioPath.attr('id'));
};
this.getCounties = function() {
var deferred = $.Deferred();
var map = this;
d3.json('county.oh.json', function(error, response) {
map.counties = response;
deferred.resolve();
});
return deferred.promise();
};
this.drawCounties = function() {
var map = this;
map.bg.selectAll('path')
.data(map.counties.features)
.enter().append('path')
.attr('id', function(d) {
return 'county_' + d.properties['FIPS_CODE'];
})
.attr('class', 'county')
.attr('stroke', '#999')
.attr('stroke-width', 1)
.attr('d', map.path);
map.bg.selectAll('path').each(function(d, i) {
map.animate('#county_' + d.properties['FIPS_CODE']);
});
};
this.animate = function(selector) {
var speed = 2.5;
var path = document.querySelector(selector);
var length = path.getTotalLength();
//console.log('animating path ' + selector + ' of length ' + length);
// Set up the starting positions
path.style.strokeDasharray = length + ' ' + length;
path.style.strokeDashoffset = length;
// Clear any previous transition
path.style.transition = path.style.WebkitTransition =
'none';
// Set up the starting positions
path.style.strokeDasharray = length + ' ' + length;
path.style.strokeDashoffset = length;
// Trigger a layout so styles are calculated & the browser
// picks up the starting position before animating
path.getBoundingClientRect();
// Define our transition
path.style.transition = path.style.WebkitTransition = 'stroke-dashoffset ' + speed + 's ease';
// Go!
path.style.strokeDashoffset = '0';
};
}; // OhioMap
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"AREA_SQMI":41261.57,"AREA_ID":1},"geometry":{"type":"MultiPolygon","coordinates":[[[[-82.80691599450627,41.706318133365215],[-82.80872482857141,41.70775091575605],[-82.81037685224396,41.708301228215944],[-82.81266339402679,41.70749299162647],[-82.81377721282234,41.70786184005174],[-82.8158460553119,41.70736692468152],[-82.8194561977376,41.707614533717965],[-82.82355250445354,41.707513727394435],[-82.82856138308496,41.70973999171531],[-82.83070928425882,41.709340690949055],[-82.8312870722791,41.70868819302727],[-82.83521522649777,41.709290994324626],[-82.83555764494533,41.71127623968453],[-82.83407334997266,41.71163312329211],[-82.832574364077,41.71115396803404],[-82.8312506312502,41.71183911209696],[-82.83083589930027,41.71325911559973],[-82.83242259647608,41.713914564161584],[-82.83289567224529,41.715353801909124],[-82.83204978244936,41.71631328806228],[-82.82878575782092,41.71761712187193],[-82.82730441883298,41.71909264082369],[-82.82589558717113,41.7227704887829],[-82.8227318947633,41.72354721925684],[-82.8208841031915,41.724534218299844],[-82.81506754171578,41.72396091760249],[-82.81313278638211,41.72315437882044],[-82.8111528148244,41.72060069804407],[-82.8112464714777,41.718980798165425],[-82.81249649432255,41.715210137656925],[-82.81114369334435,41.71143738280936],[-82.80930188733683,41.709180629596425],[-82.80662657137577,41.707226547662266],[-82.80691599450627,41.706318133365215]]],[[[-82.81021942472628,41.670741973051804],[-82.81397482154465,41.67109212062914],[-82.8135859698042,41.67213939335771],[-82.8159033084186,41.67537242651638],[-82.81580974008637,41.678723763792824],[-82.81679504612053,41.68104004303308],[-82.81805185677965,41.68237718030427],[-82.82302177003714,41.68227344601423],[-82.82494140388964,41.682748807430045],[-82.8265030449414,41.68406775828834],[-82.82522916675795,41.68518969752319],[-82.82274491441181,41.685750856931556],[-82.8201365160228,41.68735188282509],[-82.81946947855464,41.68855833308574],[-82.81792007963402,41.68861200475787],[-82.8173452322836,41.689856974834555],[-82.8145751173762,41.690788755381796],[-82.81286365618102,41.69186212563343],[-82.81114861345343,41.69216823090259],[-82.80743831287384,41.690611049068515],[-82.80431455261657,41.69093144042695],[-82.80159325414137,41.692524423750136],[-82.80139751824883,41.69377268136216],[-82.79952854828268,41.6950682035076],[-82.79157239406766,41.69565874759811],[-82.7906837677332,41.69627726467084],[-82.7866090667959,41.696851124973776],[-82.78469637804784,41.69742938414053],[-82.78133237257545,41.69746535621401],[-82.78003284158096,41.69680676104339],[-82.78048004821491,41.6954592625612],[-82.78270115154031,41.69541268598971],[-82.78604666819633,41.693724637798574],[-82.78994709632283,41.69280510679851],[-82.79243386652156,41.693704624786115],[-82.79403444238885,41.69318746117623],[-82.7984323541393,41.69359472878244],[-82.8013043928085,41.69224066718172],[-82.80299379875194,41.69003184734622],[-82.80376254270463,41.68708182398808],[-82.80263305144219,41.68266252154493],[-82.80256160686649,41.681473130904706],[-82.80365916206742,41.680705361851224],[-82.80465710384671,41.678875387708025],[-82.80644425900638,41.67868758660331],[-82.80722931486441,41.67622024564546],[-82.80586162859407,41.67188988873847],[-82.80799310985861,41.67099123580157],[-82.81021942472628,41.670741973051804]]],[[[-82.84118453770026,41.628626599631566],[-82.84187556254709,41.628992629608],[-82.84014944852103,41.63298486098197],[-82.8394637153936,41.635356413471975],[-82.8379426572297,41.6372862001964],[-82.83786401419,41.638880105566955],[-82.8370772741937,41.64098730666674],[-82.83786313470857,41.643392761580124],[-82.84014462125458,41.643798679087],[-82.84332851727945,41.645391593963154],[-82.84393063046709,41.64651911384773],[-82.84322730666881,41.647929541245695],[-82.84087414023668,41.650115522859764],[-82.83986993031488,41.650584684975755],[-82.83732428682019,41.653208755762584],[-82.83545855899747,41.65653831700329],[-82.83349567349515,41.65732732810972],[-82.83087716408339,41.657688138504],[-82.8265525683208,41.659528694205086],[-82.82707276951746,41.65776367191047],[-82.82589386519261,41.65625373514309],[-82.82646292818947,41.65497064407222],[-82.82546974474049,41.65425014402123],[-82.82299639387345,41.65444394490897],[-82.82115679853112,41.653624099168475],[-82.81792997751458,41.65369294406423],[-82.81588332042992,41.65416573191452],[-82.81276088871161,41.65424550061239],[-82.81113356074918,41.65510597278462],[-82.811332471544,41.65599464327931],[-82.80913737770828,41.65842960594916],[-82.80860956586791,41.65957601888621],[-82.80966069654932,41.66055472139274],[-82.80886554462818,41.66190686355944],[-82.80549691305073,41.664380109208096],[-82.80309748578289,41.66418958717912],[-82.80054480290995,41.66517666235801],[-82.79535018551552,41.66569334866376],[-82.7932902382514,41.66476890012854],[-82.7944069003765,41.66377020308805],[-82.79625415937637,41.65960705176926],[-82.79780391698563,41.65803629689976],[-82.80050477125337,41.65664331413139],[-82.8021568480654,41.65623637925816],[-82.80289972278925,41.65401717409689],[-82.80680381441515,41.65499067410548],[-82.80847408131567,41.65490705181468],[-82.8118779045145,41.65285548539772],[-82.81299432428935,41.6509715557301],[-82.81310935341781,41.64933440403063],[-82.81211902037145,41.647335465162406],[-82.81422151376795,41.64383746569322],[-82.81630500373075,41.643533841780005],[-82.81710722899824,41.642361193666666],[-82.81907021580936,41.64164549598537],[-82.82006482822163,41.640031361394215],[-82.82219418335544,41.63964185846469],[-82.82385872853641,41.63841934424178],[-82.82544745853751,41.636407050671544],[-82.8267722178077,41.63404023645425],[-82.83032923553557,41.63252374998421],[-82.83227912411563,41.63093548638181],[-82.8346283074115,41.629745740398526],[-82.83776328518742,41.629286576985756],[-82.83922303964502,41.62867974019186],[-82.84118453770026,41.628626599631566]]],[[[-82.69859590673943,41.5851553586696],[-82.70219680096784,41.58595842538512],[-82.70304100568043,41.58660762116481],[-82.70464022869288,41.591178481604665],[-82.70539822287326,41.59206363125828],[-82.70829727923933,41.59308409934345],[-82.71205959203279,41.59359110656213],[-82.71479265894547,41.59448826304064],[-82.72179686417256,41.59548471819006],[-82.72535132236509,41.59479870613065],[-82.7286085740482,41.59819768210935],[-82.73042119981335,41.599227050435296],[-82.73354960679511,41.60019985823423],[-82.73511058793306,41.601319887717],[-82.73515865727143,41.60311677569688],[-82.7321132666458,41.60532419581738],[-82.72707133823505,41.607475395903585],[-82.72366058123666,41.61023491515897],[-82.72302554583771,41.611693138654324],[-82.72303353521446,41.616233397960265],[-82.72235892465646,41.617162277470065],[-82.71987714667958,41.61875325606383],[-82.71751629590615,41.61954121770254],[-82.71100980178872,41.62013178323331],[-82.708410388492,41.61977623881348],[-82.7062358934397,41.61850001964135],[-82.7045751251634,41.61821601826341],[-82.70357483525596,41.61731167871444],[-82.7049335474453,41.61505750545366],[-82.70296202244938,41.613265684678304],[-82.6996168457524,41.611815768590134],[-82.69578197187596,41.61091099034862],[-82.69184874271482,41.611096105085835],[-82.6896673032731,41.61175358638452],[-82.68650081389974,41.613721861800094],[-82.68529803952651,41.61555900939712],[-82.68185825031804,41.617264942836435],[-82.67896448763214,41.61917006568651],[-82.67861324404308,41.62069761879758],[-82.67747566144207,41.62255743307794],[-82.67373690021226,41.624138141093226],[-82.67390700225137,41.621875606475925],[-82.67638918749533,41.618417549744684],[-82.6780418948129,41.61809570918863],[-82.67815210997729,41.616190531324214],[-82.68027258171067,41.613747279703844],[-82.68109896158734,41.611040606052846],[-82.67992026001211,41.608976833665565],[-82.67847437525515,41.60798989806519],[-82.67941889209429,41.60684392722346],[-82.68012312258284,41.60465370143107],[-82.67945255177315,41.60158206190628],[-82.67942973834293,41.59876038705979],[-82.67671883867975,41.59724021919931],[-82.6771724978868,41.59603883069891],[-82.68020764976296,41.59528149750078],[-82.68228367802648,41.59218149944369],[-82.68423336983497,41.591041865176045],[-82.68612476695617,41.587333383642886],[-82.68908981499943,41.586409562464006],[-82.69185446296056,41.58686118335803],[-82.69552606105792,41.585207176229716],[-82.69859590673943,41.5851553586696]]],[[[-81.00231897024221,41.853311621226275],[-80.99758777843468,41.85411743631472],[-80.99495581431039,41.85408403482096],[-80.99144637487777,41.85478238511614],[-80.98978269246632,41.855493292850035],[-80.98656011356715,41.855870488166715],[-80.98176637454932,41.85685328348885],[-80.97921053963755,41.85687333096476],[-80.9754306225095,41.8583758043791],[-80.97067552854234,41.85846880999569],[-80.96912523821756,41.85797072505007],[-80.96600285839733,41.858858127059584],[-80.96063794780588,41.85920317584738],[-80.95581523756196,41.860638033587364],[-80.95286801915455,41.861961337521365],[-80.94965771745272,41.862283639645874],[-80.94772233527203,41.8618811003738],[-80.94215552586994,41.86228688314316],[-80.93656074079772,41.862250219188795],[-80.92979159592856,41.86392963401135],[-80.92836285425842,41.86469493572559],[-80.9231515381796,41.86537518237227],[-80.92136614015641,41.86590057107686],[-80.91925540713736,41.86565920462337],[-80.91162097857911,41.86639988664566],[-80.90979581021662,41.86698872904139],[-80.90375547498358,41.86777850142958],[-80.89331367347437,41.87135265526468],[-80.88783481276876,41.87400890298641],[-80.88098453935493,41.87579139402922],[-80.87905293304556,41.87682008507111],[-80.87254221079758,41.87952593661058],[-80.86911321971594,41.880555700485026],[-80.86765594359369,41.880486178364805],[-80.86130400484335,41.88211756829272],[-80.8572654568846,41.88388689230219],[-80.85560970864725,41.88491904894848],[-80.85261794741086,41.884814148310625],[-80.84703533863876,41.88809420119593],[-80.84302429759464,41.88988492748334],[-80.84059628669895,41.89049999666501],[-80.83747889438168,41.89084202248899],[-80.83406229367746,41.891714154679306],[-80.83086718709637,41.89326624809052],[-80.82723986421486,41.894163886778934],[-80.82463490712468,41.89382848069691],[-80.82151331771347,41.895481120054626],[-80.81616326504418,41.897418160214265],[-80.81390995537801,41.89861046463638],[-80.80966408368315,41.90133020920965],[-80.80801810171005,41.90268959562686],[-80.80224393389756,41.909222371774355],[-80.80025758763419,41.91016176489021],[-80.79883525284421,41.9090942852499],[-80.79795078297171,41.90460225244188],[-80.79774559355256,41.91079503817408],[-80.79632723233712,41.91126383780313],[-80.7943820157336,41.910456942885034],[-80.79439890655921,41.907388808710806],[-80.79400855655989,41.90602301421988],[-80.79408119784736,41.90235108019162],[-80.79345411893895,41.902342227168575],[-80.79346763775429,41.909809148823435],[-80.790651695046,41.91024842615659],[-80.78976698232327,41.91159070464852],[-80.78512529715361,41.911786380970476],[-80.78269180850029,41.91146637049549],[-80.78264009581781,41.90750920351953],[-80.78183213473056,41.907096111771146],[-80.77954402053055,41.907764939533386],[-80.77264206051774,41.90872755910465],[-80.76884500399169,41.910022008153064],[-80.76699403596149,41.91147614626624],[-80.7651081577826,41.911161291339596],[-80.75983155611645,41.91318642012572],[-80.75826545481101,41.91322099240624],[-80.75381916278593,41.91570450203256],[-80.74930045598745,41.91664028446047],[-80.73897324810784,41.91778435054175],[-80.73334241565334,41.91795472536899],[-80.72779022907775,41.9184908943937],[-80.71903690997848,41.920184609818506],[-80.7132536086844,41.92212989941504],[-80.71219108877533,41.92197186452781],[-80.70958686648942,41.92271261168843],[-80.70429798758288,41.924792188587965],[-80.7012483892415,41.92627942728827],[-80.69926497292936,41.925872223948325],[-80.69659985932208,41.92636950717848],[-80.68796726239412,41.92895732129016],[-80.68320325200798,41.93126822045232],[-80.6824302964984,41.93093110637036],[-80.67673501895707,41.93222867634704],[-80.67444477403187,41.93324240360408],[-80.67339474928099,41.93319784651474],[-80.66508905741517,41.93594875435055],[-80.66049971009059,41.93780321691681],[-80.6544322521999,41.940716794683034],[-80.64887269421787,41.941167834300664],[-80.6466286969896,41.9423397248854],[-80.64050286408106,41.94291584100392],[-80.63847725345836,41.94267406697383],[-80.62901040134076,41.94419845936515],[-80.62409802900916,41.94596756171735],[-80.62323213033058,41.945748285140745],[-80.6189878596773,41.94735283354727],[-80.61813897361795,41.94721043641318],[-80.61415819505694,41.94855567584729],[-80.60570544858216,41.95113281166457],[-80.59981363009483,41.95314640026874],[-80.59690608336678,41.95492393293355],[-80.5949721122221,41.95458751446377],[-80.59183659064954,41.95553436999622],[-80.58728763628321,41.95648192318506],[-80.58447149344497,41.95678660518042],[-80.58156102733932,41.957473790095136],[-80.5794377946766,41.958504301736106],[-80.57697457658774,41.95911705851645],[-80.57349036032777,41.960961603445085],[-80.57245544224669,41.960935760177094],[-80.56843580650705,41.96229660832349],[-80.56593642387563,41.96372824136373],[-80.5622055087723,41.96632287788896],[-80.55976485754519,41.96830474150657],[-80.55999305485769,41.97034809297544],[-80.55826236061985,41.97093416029143],[-80.55687561876438,41.970260817457365],[-80.55620433092072,41.96764220814985],[-80.55331194886462,41.96828159708414],[-80.55167762935463,41.97150447695086],[-80.55014738141452,41.97270901879379],[-80.5489400497637,41.96761523639689],[-80.54916453339048,41.96536206650929],[-80.54669520793578,41.9658631847959],[-80.54778836324193,41.96695619128487],[-80.5484706029237,41.97100404150261],[-80.54578999355482,41.97081853656507],[-80.54307646786673,41.971970135498665],[-80.54145956987713,41.97158356990958],[-80.53838934093697,41.9724073934055],[-80.5350062752694,41.972855941196826],[-80.5272649862214,41.97512934432424],[-80.52330659273363,41.97566462828116],[-80.52120443690815,41.97685847465086],[-80.51951515867438,41.97723199133602],[-80.5194490506865,41.943880213400284],[-80.51935514099222,41.9245515590014],[-80.51947614501536,41.89211192018254],[-80.51929528750277,41.87024977418969],[-80.51944611034754,41.848564054142116],[-80.51941386129938,41.82653048259775],[-80.51947196584074,41.80452457648946],[-80.51947620587187,41.78200849133542],[-80.51931186562246,41.76530126868966],[-80.51942037977663,41.752809090936445],[-80.51936508375253,41.73968810293714],[-80.51952413133688,41.69733346260976],[-80.51944195208762,41.670900795487086],[-80.51949887954007,41.62505902291982],[-80.51952691757195,41.57116926661688],[-80.51949452704925,41.53610991943942],[-80.5193891061594,41.5172956599481],[-80.51938659746816,41.49942477670444],[-80.51921552165837,41.49439106952411],[-80.51910487223807,41.440591509348664],[-80.51918627426623,41.42950024177617],[-80.51944459653325,41.42470404252477],[-80.51917440547446,41.416483907037446],[-80.51915595354164,41.38727087525307],[-80.51921752629337,41.377874926037656],[-80.51910075246866,41.36100993079519],[-80.51912317331121,41.33566096157332],[-80.51910533727902,41.30999171543681],[-80.51905805998656,41.306680884655734],[-80.51911371686575,41.283958628333274],[-80.51905697000473,41.24802849445998],[-80.51910874577572,41.24215684239909],[-80.51903444459744,41.22158920299156],[-80.5190771280668,41.20829558134927],[-80.51895329575147,41.18363698784118],[-80.51902231642084,41.17637389066878],[-80.51890649314116,41.16089439013572],[-80.51904454490115,41.141807237692284],[-80.51903669058326,41.1333710031864],[-80.51928249362358,41.12089900018659],[-80.51926145311506,41.07077692199566],[-80.51902398524493,41.06138286387042],[-80.51924295807274,41.05221256399258],[-80.5192224502833,40.9836624405111],[-80.519032388802,40.973328769758766],[-80.51921382405182,40.95865533455339],[-80.51918243744493,40.900268585465795],[-80.51911909260339,40.87202397983627],[-80.51932924013133,40.84947159191151],[-80.5192110361037,40.82603923212481],[-80.51930189647345,40.81176988879967],[-80.51924518233311,40.79225527105954],[-80.51904150856154,40.77481829089888],[-80.51934333583097,40.75384960191284],[-80.51928465438202,40.71720900833613],[-80.51921401509087,40.68847169325749],[-80.51923455462638,40.65636171735054],[-80.51928164316139,40.63876718328507],[-80.5222501995944,40.63698192046527],[-80.52411408675746,40.636419979428865],[-80.52780602817536,40.63601065311424],[-80.52965133206047,40.636317644025404],[-80.53154602721617,40.635932072174356],[-80.5353203062123,40.63419778126084],[-80.54278397962054,40.63114539918844],[-80.5467247704915,40.629380358370746],[-80.55048680191884,40.62903164625179],[-80.55245819799427,40.62823418148923],[-80.554221894291,40.6268884252338],[-80.55611506163196,40.62630404309049],[-80.56107263352544,40.62326882306301],[-80.56728794594417,40.61756968544788],[-80.5693661039409,40.61607391271765],[-80.57226207084311,40.61486587308628],[-80.57525475847672,40.61423614452455],[-80.57882267204357,40.61388351596399],[-80.58298837555347,40.61471963621849],[-80.58491279400941,40.61608208015338],[-80.58800757976483,40.61893960379741],[-80.59156916025155,40.621471706181325],[-80.59295096279038,40.62286822516331],[-80.60032956502539,40.62545232633757],[-80.604012749188,40.625007449532355],[-80.60799215035892,40.62373479535776],[-80.61361030556598,40.622424799973835],[-80.61729366791435,40.62110452659611],[-80.62293627272359,40.61999251628061],[-80.62681493909857,40.62003417679072],[-80.63062736577204,40.617920605145365],[-80.63254136638898,40.617352993370346],[-80.63429005091332,40.61600781171567],[-80.63645120181761,40.61328456312115],[-80.63985289084714,40.61092216341469],[-80.64476838101716,40.604006877737135],[-80.64759743216136,40.60127226558699],[-80.65115406456546,40.598730589367364],[-80.65242802909421,40.59737187471892],[-80.65424072578482,40.59732412804216],[-80.66180082147244,40.59216444695289],[-80.664738505832,40.58936987309163],[-80.66642467744666,40.586604486455016],[-80.66767237917753,40.58384282689325],[-80.668063298263,40.581697132013964],[-80.66793784611008,40.57846212358438],[-80.66718705517611,40.573864041436934],[-80.6655972653807,40.57386301705088],[-80.66277115327844,40.570206158525906],[-80.66428180692219,40.56965961235439],[-80.65963518037476,40.567403741603336],[-80.65732758189516,40.566509141027325],[-80.652353512845,40.562121139958265],[-80.64965799851133,40.55898695664457],[-80.64726374919661,40.55551744519101],[-80.64236865360004,40.54905542049693],[-80.64108793472874,40.548030607288155],[-80.63836130499433,40.54408626948542],[-80.63693516581671,40.54251632695164],[-80.63575421279285,40.54195205613645],[-80.63368665634857,40.538854450193924],[-80.6306026628664,40.537620398828516],[-80.62975993680332,40.5363511903888],[-80.62865072744209,40.53660635791665],[-80.62723127427039,40.534600138529875],[-80.62572991138482,40.529642299448035],[-80.6253239686259,40.526863342301944],[-80.62277913990322,40.52163781120756],[-80.62227063025391,40.518835136738105],[-80.62220600211322,40.5165125954168],[-80.62144548310155,40.514100018373526],[-80.62118288347212,40.51172551269696],[-80.62169926646835,40.50978990842488],[-80.61974161438187,40.50811940879768],[-80.6197446530632,40.50629119749186],[-80.61775952172401,40.50160160539236],[-80.61578029964225,40.501737517085544],[-80.61534814267051,40.49964874819234],[-80.61648489419555,40.49936316625525],[-80.61500371336992,40.49756263421027],[-80.61383254715768,40.495312929280885],[-80.61095333367787,40.49186439883859],[-80.60947310934846,40.489622852227114],[-80.60486449367593,40.48646243606179],[-80.60327724831049,40.48424214161093],[-80.60141913866329,40.483920425522555],[-80.60050268086846,40.483062892039655],[-80.598369490965,40.47865556026661],[-80.59669431487633,40.47441802572585],[-80.59654949994771,40.46924430000706],[-80.59728814752665,40.46711374102587],[-80.5970392997831,40.46576444345626],[-80.5985963632925,40.463223472561715],[-80.59957951747198,40.46002028542247],[-80.60288001817186,40.455086153246434],[-80.60352250689073,40.45382015587095],[-80.60628040186207,40.45038283016033],[-80.60648070748677,40.44777181331219],[-80.6109231536882,40.441708395751256],[-80.61347059381059,40.43692681753701],[-80.61455935529436,40.42966068681651],[-80.61386453016199,40.427368591214005],[-80.61437673432144,40.42529426511526],[-80.61337929568505,40.4232747336253],[-80.61382368384461,40.421003519271046],[-80.61316048393714,40.418856108940226],[-80.61321316577146,40.41720522585268],[-80.61392073712315,40.41430981553408],[-80.61368925731188,40.413337545037685],[-80.61405322450985,40.409556781139216],[-80.61604083761107,40.40350062506172],[-80.61704816989158,40.402062110811265],[-80.61912611164419,40.40027371134821],[-80.62350185908038,40.39821738434744],[-80.62503087309044,40.39817367037131],[-80.62873647992481,40.39709949697087],[-80.63248896071755,40.39526371448007],[-80.63433462748283,40.3924624481874],[-80.6344572303151,40.389582062104466],[-80.63230288749416,40.38671080000564],[-80.63047908806311,40.38651062839532],[-80.62916938270122,40.385116987455525],[-80.62503358581124,40.38383547130757],[-80.62227340634375,40.382643424251675],[-80.62064562469016,40.38260266305009],[-80.61396206355388,40.37818048251579],[-80.6132341350437,40.377934043809006],[-80.6099572756075,40.37499035104835],[-80.60846830905784,40.3727735208187],[-80.60772684971863,40.36684828443932],[-80.60835829381982,40.365475042370505],[-80.60871040118417,40.362382412778345],[-80.60998951593169,40.35947647821203],[-80.61248439212352,40.35475617450682],[-80.61280181662104,40.35219167173741],[-80.61229298314873,40.350688746287446],[-80.61308244403388,40.34728864998812],[-80.61241194228788,40.34218252009339],[-80.61135688610828,40.339504891339395],[-80.60637438878335,40.33202362597708],[-80.6044307864109,40.327961321622055],[-80.60286158962937,40.32171024780453],[-80.60149810459566,40.31977737184407],[-80.60122660736788,40.31685317856124],[-80.60217707512743,40.3132858176603],[-80.60349256145845,40.31093937332643],[-80.60464758578017,40.307053001001904],[-80.60582513305363,40.30553836931061],[-80.6082347622857,40.30367024230855],[-80.61179535373421,40.299025500938846],[-80.61273174012081,40.29703073012475],[-80.61571823016473,40.2932630692012],[-80.61691027383472,40.29032623721807],[-80.61724517396378,40.2870468540624],[-80.61808460622049,40.285288095912335],[-80.61804368173338,40.281338424031944],[-80.61765026947738,40.278042714488656],[-80.61823153998546,40.27332050667213],[-80.61739794314715,40.27212742926044],[-80.61908562853819,40.26740999266953],[-80.62120286854123,40.26398065647125],[-80.62381791117863,40.26181770069377],[-80.63046018797667,40.25844835179586],[-80.63427101529285,40.25680133212221],[-80.6379124692851,40.25436446071335],[-80.6397098595342,40.25418505218414],[-80.64348910101519,40.25254129316431],[-80.6471007937939,40.25040478552805],[-80.6493696629259,40.24795407955785],[-80.65269069921386,40.245109190069094],[-80.65447958792429,40.24197261171618],[-80.65693725663431,40.238833858703735],[-80.65971985236317,40.233513970747865],[-80.661455389368,40.2309775941329],[-80.66204579002886,40.2294740311669],[-80.66253711172507,40.226500637229925],[-80.66368271500724,40.22452212093092],[-80.66482836148703,40.21906973568468],[-80.66438921275697,40.21672359474181],[-80.66487344399738,40.21291139188735],[-80.66570519918024,40.21203181049829],[-80.66709188130243,40.207378666143896],[-80.66732328247173,40.203625917584695],[-80.66830527725931,40.20096528017515],[-80.67049937051925,40.19613773474015],[-80.67268920359275,40.19307994630651],[-80.68005115615277,40.1854184142626],[-80.68097658632948,40.18392136008158],[-80.68235915742757,40.18508206690472],[-80.68454108664253,40.182784973846545],[-80.68716986504647,40.179310964962646],[-80.69021365332692,40.173785705253835],[-80.69320384627966,40.17107500343191],[-80.69685370859473,40.165629488255306],[-80.69928819863419,40.16241299304402],[-80.70285727234301,40.156990910945474],[-80.70308455909323,40.1560083312438],[-80.70500619927324,40.1535598780314],[-80.70548633532088,40.15062246672885],[-80.70645102018122,40.14864426309569],[-80.70699899477958,40.1453540595756],[-80.70825847576052,40.141793292967016],[-80.70990781551426,40.13861432801011],[-80.70983467153103,40.13442226858495],[-80.71037524405983,40.13186252634275],[-80.71019981267841,40.124005870885334],[-80.70942446357805,40.12008548668377],[-80.70841776532771,40.11823332049477],[-80.70686736915727,40.116574265200846],[-80.70665053130057,40.11567262699254],[-80.70724397578758,40.11227858766701],[-80.70718520890483,40.1085993250676],[-80.70883390789301,40.10355943914677],[-80.70917675624281,40.100259022197584],[-80.71231343012674,40.097983585680254],[-80.71383394832154,40.09637017937308],[-80.71699409947425,40.09502979464541],[-80.71984429340154,40.09292501427857],[-80.72306131509453,40.09155137100496],[-80.72536201119075,40.09014579574415],[-80.73025474327909,40.086706648694886],[-80.73177678245395,40.08591796101078],[-80.73709796927027,40.080176844459174],[-80.73853449445669,40.077367530142226],[-80.7392325152002,40.074310502243364],[-80.73888154417017,40.072201399295835],[-80.73780754333806,40.07005983503213],[-80.73827078145456,40.0695797320456],[-80.73821503252033,40.06626755940715],[-80.73746361609584,40.06442762714858],[-80.73481355017007,40.06004367070137],[-80.73354344922616,40.05903706019232],[-80.73256535624965,40.0557817986951],[-80.73255841820364,40.05385924962521],[-80.73079178565938,40.04756276879048],[-80.73088026633113,40.04382575994055],[-80.73052572086921,40.04008486557524],[-80.73185777458932,40.035825110057075],[-80.73760401305928,40.02241325658185],[-80.73845249623052,40.019090180450995],[-80.74049934464337,40.014945880512876],[-80.74142015389549,40.00954924460584],[-80.74195344370924,40.00860806481455],[-80.74113795753108,40.00597481050775],[-80.74183618535363,40.00275636882152],[-80.74180115765944,40.00054547126442],[-80.74111876948925,39.99908424628431],[-80.74080884014737,39.995663688174155],[-80.73958088632551,39.99391998011851],[-80.7398198702052,39.991907485374185],[-80.73936486043642,39.98992205461118],[-80.739603243074,39.98831644020271],[-80.73847045346072,39.985154027000945],[-80.73952594114742,39.97731251967681],[-80.74101236152589,39.97301815255064],[-80.74029296160175,39.9709171374213],[-80.74245419095918,39.96969695655],[-80.74470318515793,39.96708531291618],[-80.74794539235324,39.96469384515837],[-80.75098323723714,39.96298971123682],[-80.7532787382212,39.96224092595217],[-80.75766255502538,39.959649179509796],[-80.76231587500077,39.954482254546065],[-80.7631634719841,39.95286993009165],[-80.76417380345637,39.949220848279225],[-80.76376377137487,39.943985222814796],[-80.76243152891504,39.93674188962516],[-80.76140862313615,39.93262181510828],[-80.7610283749945,39.92950512474562],[-80.75968644866411,39.92590033235137],[-80.75858132420024,39.92458017459506],[-80.75679154052838,39.92132964572679],[-80.75566474233682,39.91759583963055],[-80.75552865088562,39.91417042821399],[-80.75582035092914,39.912465910738305],[-80.75771483700717,39.90971630632717],[-80.76029331514412,39.90828571695761],[-80.76262970322865,39.90798219529759],[-80.7676447099151,39.908364216705486],[-80.77087913286486,39.90941232485579],[-80.77603099819612,39.91269672634184],[-80.7841697143507,39.91733757453672],[-80.78839483703392,39.917526881597674],[-80.78922172989454,39.918224648058846],[-80.79381112576607,39.91923286666098],[-80.79553502331116,39.918939771402115],[-80.80019490641912,39.919166318466836],[-80.80303703147351,39.918448371648545],[-80.80428245439552,39.91704455011612],[-80.80655439014177,39.91632142473748],[-80.808296664541,39.91311870078376],[-80.80924790371249,39.909834732007816],[-80.80932997828371,39.90631022642487],[-80.80858088738177,39.90504675054029],[-80.80906392573993,39.903677185721214],[-80.80755769018539,39.90006732597876],[-80.80432643189936,39.894492049133994],[-80.80132485057506,39.890565430873515],[-80.79597298798456,39.885569173894105],[-80.79389853098218,39.88237755797104],[-80.79262095320263,39.87780537846985],[-80.79158018366883,39.87582740279607],[-80.79042075927389,39.87208152491602],[-80.79053899445874,39.86932518846274],[-80.79133533635002,39.86632254506334],[-80.793821300834,39.86316903060004],[-80.7960516945212,39.861478385772436],[-80.79915857384628,39.85976709647349],[-80.80018148156994,39.85880039994879],[-80.80351271912028,39.857969388466465],[-80.81005959838085,39.85481481744679],[-80.8132475059609,39.854131362494236],[-80.81704415734436,39.852612403753916],[-80.8214930325089,39.84993546988527],[-80.82363542946244,39.8480820699138],[-80.82554190263387,39.845552340887934],[-80.827191604319,39.84180243570869],[-80.82656493535453,39.83981265177197],[-80.82632951684907,39.8374927153868],[-80.82576016781466,39.83654735436205],[-80.82656376587559,39.8354967610398],[-80.82482668537753,39.8313459409842],[-80.82276923772551,39.82572006846632],[-80.82254099992412,39.823739649030195],[-80.82266781566126,39.81947502268291],[-80.82345627788075,39.8165192333356],[-80.8224302889356,39.811180681599176],[-80.82503708600987,39.80265382737259],[-80.82544843430698,39.79988035189514],[-80.8267347118759,39.79793743723038],[-80.83051620776416,39.79519531671934],[-80.8342188827244,39.79159579539355],[-80.83790056567703,39.7892121756537],[-80.84034568917448,39.788209737755984],[-80.84212943760535,39.786949430483396],[-80.84820589575837,39.78394907548465],[-80.85160273881255,39.78208322790748],[-80.85305871473818,39.78024610578629],[-80.85417464482252,39.78001452555623],[-80.85714485753358,39.77840178035527],[-80.86088259396544,39.7767775542073],[-80.86362466419205,39.77478021566846],[-80.86579080314301,39.77267333684993],[-80.86652809432637,39.7705344979727],[-80.86753692210138,39.770022487106885],[-80.86960801131809,39.76537609319376],[-80.8704159795359,39.763011831462634],[-80.86874498869483,39.76216670571855],[-80.86824595900033,39.76035869201565],[-80.86848596125571,39.75858296480838],[-80.86620775178301,39.75401695059639],[-80.86361206555296,39.751677295923656],[-80.85962948486616,39.7472324058368],[-80.85643942348295,39.74429589874211],[-80.8537461048049,39.74143520678635],[-80.85006650512051,39.740927703700976],[-80.84830999246816,39.74041005424609],[-80.84585374292125,39.73772827494874],[-80.84765112651397,39.73779800608704],[-80.84251415647307,39.731794090493885],[-80.84072331631042,39.72888748731594],[-80.83880370982263,39.72712662417663],[-80.83813674687728,39.725730908328714],[-80.83558704190729,39.7226036182946],[-80.83181731801305,39.719634262828535],[-80.83012714532396,39.713773368325185],[-80.82998728700233,39.7122587337846],[-80.83084967163491,39.707500624412575],[-80.8316488940844,39.70614335298142],[-80.83451374972566,39.703353425493155],[-80.84012205366983,39.70072412796985],[-80.84566304867333,39.69915924276963],[-80.85127755072917,39.69871661697755],[-80.85507735188925,39.69720301838929],[-80.86080455496455,39.69423280924917],[-80.8627185477065,39.69296366059815],[-80.86612464211159,39.68603623404396],[-80.86652357255777,39.681741816682745],[-80.86576447072228,39.680332613162506],[-80.86679839433155,39.67888235587828],[-80.86627625027725,39.6744993812356],[-80.86655293325074,39.672983761753635],[-80.86622046088148,39.66868730162715],[-80.86556588947367,39.665782762473484],[-80.86602748627847,39.66272609268008],[-80.86591287292836,39.66124931941667],[-80.86634442295923,39.65550610599454],[-80.86690148783107,39.652498957867394],[-80.86824582270876,39.649716132944185],[-80.8699919014631,39.64690124335313],[-80.87101444897259,39.64266286197596],[-80.8707239260539,39.64119129044359],[-80.87204734032271,39.638390289861775],[-80.87216489203969,39.63698683904273],[-80.87369656834535,39.634112417964225],[-80.87446923484877,39.63131659892176],[-80.87756384695773,39.62504037668285],[-80.87947311215201,39.62198752661995],[-80.88096428453404,39.62063177014717],[-80.88283207759308,39.62031865875552],[-80.88652927165896,39.61864455128752],[-80.89026036974059,39.61732610031651],[-80.89598899405524,39.617014873414796],[-80.90326504060299,39.61781774787589],[-80.90710063460334,39.61857597707075],[-80.91066605393075,39.61853628523586],[-80.91618772545385,39.61901365320716],[-80.92379165092633,39.617973093185],[-80.93155545721022,39.61580387243712],[-80.93718413162634,39.61275011405918],[-80.93831218838528,39.611452649480036],[-80.94166651448286,39.608656777300425],[-80.94725366203825,39.60499399316106],[-80.94898772206497,39.60362665259261],[-80.9529437007405,39.601448882035534],[-80.95686844210687,39.59901336950474],[-80.96248745004274,39.595777930495416],[-80.9659873291457,39.593136166102184],[-80.96979847529246,39.59074638861285],[-80.97345025925276,39.588747991926795],[-80.97798637776513,39.584466068073525],[-80.98898981946593,39.5762951806246],[-80.99201221519196,39.57363565417265],[-80.99292953876223,39.57225765318985],[-80.99463889449157,39.57082248286999],[-80.99999995541455,39.567067906509706],[-81.0045369950305,39.564976964089965],[-81.00845795764316,39.56274374320268],[-81.011156274456,39.560297684497044],[-81.01460577974663,39.55819526343523],[-81.0157049242732,39.55786980974382],[-81.01954404019396,39.555772472373164],[-81.02376284184001,39.552470317218656],[-81.02668611703011,39.548708878777084],[-81.02742859799437,39.54713111348733],[-81.02849623795863,39.54693675987382],[-81.03038570151807,39.54510003029355],[-81.03249465771256,39.543599983233236],[-81.04632357020664,39.53544668873752],[-81.04891474510372,39.5328456494112],[-81.04981113923037,39.532329075617746],[-81.05156351141058,39.529628447445894],[-81.05500649523229,39.527545130041425],[-81.05605345715793,39.525922672994476],[-81.0571341934176,39.5256206604056],[-81.06069167857959,39.52260205697147],[-81.06303218508869,39.52091415299994],[-81.06747713753138,39.518314012367135],[-81.07048558597057,39.5162026535607],[-81.07385776431819,39.512677259438206],[-81.07548049214071,39.51020197962279],[-81.0808071695749,39.50562048216379],[-81.08165393401907,39.50418463269936],[-81.08467509060827,39.50260629001931],[-81.08949495690419,39.49844201303807],[-81.09260310396404,39.496188512841755],[-81.09445423304052,39.493670327705054],[-81.09866587947863,39.48966256793],[-81.10101440255823,39.48680342788256],[-81.10529936379832,39.48080999649381],[-81.10593365797416,39.47940214891245],[-81.10907240008828,39.47483813509608],[-81.11199793888272,39.47020231094339],[-81.11502210321238,39.46581946841097],[-81.11600899912199,39.46575921865543],[-81.11860636170306,39.461739126286936],[-81.12034166742147,39.45964941451415],[-81.12500466764195,39.45318931065764],[-81.12823287516579,39.44976462765698],[-81.13250686801683,39.44623169570083],[-81.13472428277824,39.444759932369095],[-81.13930886149495,39.44345841820891],[-81.14954829931139,39.44336392708816],[-81.15150610442778,39.44273988429169],[-81.15425033915284,39.44282252903991],[-81.15792093893774,39.442383558897774],[-81.16431806240062,39.44105176419353],[-81.17127955492367,39.438839433368685],[-81.17254880538317,39.437767470111],[-81.17983667573557,39.435533399597084],[-81.18443949125356,39.4324345533414],[-81.18582276951597,39.43118095131651],[-81.18630377325863,39.42977139666083],[-81.18778017413764,39.428242528238286],[-81.1895309468148,39.42537543726436],[-81.19309644300932,39.42162469174085],[-81.1975431144972,39.417803794781946],[-81.2004630576599,39.41572093528017],[-81.20043695624277,39.41490563424141],[-81.2021389160108,39.41372413464118],[-81.20550167631681,39.410738559183166],[-81.20814598609702,39.40790590018658],[-81.21041371916611,39.40493496187743],[-81.21189259669936,39.401913181363376],[-81.21207361336694,39.40061902390997],[-81.21138419570958,39.39791339839048],[-81.21136111746529,39.395847823921166],[-81.21180796691809,39.39341935882348],[-81.2124792152823,39.392114859846174],[-81.21521176470418,39.38879745259038],[-81.21956211096712,39.38673801566676],[-81.22296648476502,39.38623590206009],[-81.2250618183567,39.38642049477723],[-81.22984809910322,39.387396314303984],[-81.23611049236192,39.389211004704634],[-81.23972535277026,39.3899150473305],[-81.24486079881345,39.390587732852815],[-81.24835729125128,39.39017316354045],[-81.25249755096078,39.38899254651563],[-81.25674501671195,39.38710746680205],[-81.26075203259101,39.38633998022845],[-81.26779527841113,39.38625848197367],[-81.26952579424787,39.386042662439436],[-81.27326251025163,39.38473542825869],[-81.27633899639594,39.382878007281164],[-81.27906003188313,39.38052535945016],[-81.2839295548924,39.37784622419954],[-81.28840345562193,39.37681322619942],[-81.29712486267117,39.374551143711564],[-81.30307894576987,39.37140992682658],[-81.3094500366089,39.36760811751668],[-81.31289335156164,39.36523892829453],[-81.32045371831462,39.36084670467266],[-81.32926187995602,39.356826904308335],[-81.33211013505984,39.3553268820627],[-81.33674200045147,39.3519855540894],[-81.34177045637796,39.34858853847749],[-81.34665839612137,39.34614995361057],[-81.35035000307175,39.344918558109484],[-81.35691185124062,39.34320541420914],[-81.36334085837352,39.342538654471475],[-81.37019635125868,39.34246060699799],[-81.37499518591346,39.34203706958905],[-81.377131669137,39.34217798314051],[-81.3826776301927,39.34353439162036],[-81.38585436273019,39.345027488317164],[-81.3877543059215,39.34632190662667],[-81.39135541585718,39.349483042241154],[-81.39379319793049,39.352737320347984],[-81.39508242605582,39.35518203860951],[-81.39668910510568,39.36003816035895],[-81.39763854218967,39.36170093211549],[-81.40003223007523,39.36783995827398],[-81.40144920949551,39.370873602578435],[-81.40374589706332,39.37846134393736],[-81.40567182922145,39.383484992942016],[-81.40693396275209,39.38798222517881],[-81.40919425171852,39.39022661490925],[-81.41004986355328,39.391644804109596],[-81.41220422953525,39.39392813693512],[-81.41665619956856,39.397706066561526],[-81.41948281566223,39.399655899249126],[-81.42969756997607,39.40577425370885],[-81.4368153053125,39.408861600802595],[-81.44289675190305,39.41016284038725],[-81.44592349243526,39.41038612973088],[-81.45053724794931,39.410144598159384],[-81.4564028314471,39.409301550193604],[-81.46090429582836,39.40665690071801],[-81.46616942623483,39.40452621183903],[-81.47155919846605,39.401215221188615],[-81.47365525508809,39.39971681833575],[-81.47708392363664,39.39631592687002],[-81.47908300838854,39.39347857289252],[-81.48491899797689,39.38776152504145],[-81.48995521588503,39.38323318905876],[-81.49346701636777,39.380591850367814],[-81.49854092551148,39.37642110206774],[-81.50352129453464,39.373325465116224],[-81.50511941016624,39.37202438147942],[-81.50993008824719,39.36906755114723],[-81.51947450097673,39.363945831608575],[-81.5245554338007,39.36166477087629],[-81.52899324872797,39.36005599705815],[-81.53292984440878,39.35910824120519],[-81.534698825957,39.35832930550249],[-81.53780488202743,39.354768932631416],[-81.54141229844326,39.35292463640734],[-81.54324008577979,39.3528939248132],[-81.54788177056909,39.3489730554447],[-81.55025708789526,39.34747755426865],[-81.55742832519161,39.33981003241109],[-81.55969548045074,39.33580528462683],[-81.56032324216851,39.330917682979404],[-81.55982674847422,39.32860195847875],[-81.56033836102874,39.32701072370962],[-81.56004880566233,39.32295590492646],[-81.56057400068767,39.321161099946806],[-81.56018043092386,39.31990170921519],[-81.5606987984735,39.315999531602365],[-81.56210733475935,39.313625321214545],[-81.56378617638568,39.30950637668103],[-81.56515433792212,39.30362711256766],[-81.56552473300202,39.29805221938751],[-81.56566658912077,39.29203191255753],[-81.56531616211647,39.28341431542503],[-81.56574001094594,39.276914677089444],[-81.56651353967106,39.27362239081714],[-81.56746460058778,39.27138135957444],[-81.56961502276951,39.26851529265669],[-81.57341624699396,39.267066411261844],[-81.57764936140538,39.267520431221904],[-81.58160120821925,39.268403843822576],[-81.58580652596116,39.268928781892846],[-81.5890164350801,39.26999500449852],[-81.5948256150362,39.273289545350046],[-81.60142912577216,39.275156620711535],[-81.60537450332333,39.275967461645465],[-81.60987667968948,39.27620995628642],[-81.61272019469996,39.27585633143712],[-81.6168773643789,39.274872139216114],[-81.61845513925257,39.27476917625914],[-81.6211687001741,39.27385431217756],[-81.62838539151801,39.27447863748852],[-81.63705449892359,39.2761635886685],[-81.64696044107586,39.277147124555036],[-81.65549863563888,39.27739705537094],[-81.6578385928394,39.277197301919976],[-81.6619994824577,39.27641655469116],[-81.67078933047166,39.27568887933427],[-81.6761966413642,39.27467770596928],[-81.6835443888029,39.2709168321718],[-81.68622718868225,39.26901905935101],[-81.69100669873964,39.26483928052758],[-81.69252119774951,39.263125006812146],[-81.6929135314219,39.260880802432204],[-81.69443945856314,39.260006964154556],[-81.69701610478546,39.25662986157087],[-81.69690953089027,39.24871725031221],[-81.69612736945199,39.244610279241606],[-81.69466419597121,39.2407915283593],[-81.69266585056509,39.2376720433347],[-81.69148740103986,39.2353200653567],[-81.69109516967762,39.23010251891719],[-81.69202119932649,39.22695137670592],[-81.69460781914752,39.224123896870886],[-81.69781679123192,39.22188809382685],[-81.70099493761838,39.22056246006994],[-81.70699348655847,39.21955277512737],[-81.71038152788456,39.21944371920761],[-81.71638412719254,39.21836124140411],[-81.71881981553815,39.21760699902876],[-81.72408930931618,39.21643117749128],[-81.72753643688064,39.21479727436118],[-81.73083588574184,39.211153262776335],[-81.73402078726075,39.205059588263666],[-81.73496535925526,39.20127404758246],[-81.73546659555366,39.19804724569716],[-81.73621183027375,39.19573566889827],[-81.73738903288584,39.19390571797488],[-81.74079349831682,39.19033553205521],[-81.74479405052764,39.188320628239815],[-81.74889287745007,39.18696635192265],[-81.75198582906896,39.18512864192125],[-81.7559000984324,39.18092819934053],[-81.75641796598136,39.17906590077317],[-81.75635446313454,39.176721443548175],[-81.75414612856041,39.17006436031959],[-81.75275046064152,39.167550616476866],[-81.75106007372783,39.16361118708352],[-81.74860287119769,39.155273673701764],[-81.74625446474226,39.15158312474192],[-81.74521577444479,39.14946823805658],[-81.74396278873321,39.148019101966206],[-81.74293604335838,39.14379613853195],[-81.74428364407405,39.144172199215646],[-81.74428404247507,39.14080920647311],[-81.74499824088973,39.138740588088794],[-81.74501622094019,39.137001283167834],[-81.74440349351018,39.134892490595234],[-81.74499231623453,39.13177241005409],[-81.744893916641,39.12812861011754],[-81.74328133421683,39.12007470939646],[-81.74315927920881,39.11829530077733],[-81.74242251524319,39.11619207857335],[-81.74292893962303,39.114339753415905],[-81.74270621754316,39.1109571863248],[-81.74328954353834,39.108465496653366],[-81.7431324604913,39.10695610858064],[-81.74416427920458,39.10152115207338],[-81.74588232750924,39.09748433952645],[-81.74786987576971,39.09463700619797],[-81.75059197959392,39.0915854879731],[-81.75451025085306,39.08821523542853],[-81.76128681639267,39.08385444353309],[-81.76535862015713,39.081795525772726],[-81.77065686332104,39.079742572219544],[-81.77707428732404,39.07815822661415],[-81.78088848175982,39.077955585402705],[-81.78379472715336,39.078193393338765],[-81.78817504689276,39.07892178200232],[-81.79109500368001,39.079732242021116],[-81.7984936566046,39.08269229151164],[-81.80252662308051,39.08362954688604],[-81.80609207821965,39.08389454217829],[-81.80918311095493,39.08350926038344],[-81.8113030821489,39.08268861033392],[-81.81268595295315,39.08147664297012],[-81.81386383937433,39.07930612912167],[-81.81407769583033,39.07726232197298],[-81.81387021423663,39.06881243699896],[-81.81274300914927,39.064472828244384],[-81.81218875052095,39.06090853618203],[-81.80980339253377,39.05691535425563],[-81.80911733083673,39.05513616624583],[-81.80317142025129,39.04733046480458],[-81.8016210033805,39.04575483888771],[-81.79745761365476,39.04268590346983],[-81.79324443060467,39.040206200279954],[-81.79032738393855,39.03817831676757],[-81.78639004931985,39.03642009136164],[-81.78149105712963,39.032787965849984],[-81.77921186602948,39.030803751626806],[-81.7783558124319,39.029607778385696],[-81.77627434060703,39.02837297503556],[-81.77280590931906,39.02572700075611],[-81.76812882341144,39.020815686707316],[-81.76642424804072,39.01861639214617],[-81.76477714240453,39.01575585830538],[-81.76431139128742,39.01423479995788],[-81.76414084135247,39.00868569905282],[-81.76438404324595,39.00659188581772],[-81.76557946362885,39.00166592445626],[-81.76542265769315,38.99825776205101],[-81.76741056663435,38.99372002785835],[-81.76752868607898,38.99210709587408],[-81.76865213716162,38.98895485641682],[-81.77032462136766,38.98594137677874],[-81.77277918539052,38.98286910255979],[-81.77541338618236,38.980859725817574],[-81.7764387405066,38.979645231304154],[-81.78083944080028,38.97121997627042],[-81.78193013405588,38.966955586534986],[-81.78214840923125,38.96467132289361],[-81.782031652846,38.96139540329584],[-81.7804870340765,38.95754965325675],[-81.77835460137973,38.954858699147586],[-81.77617025258829,38.95302642415895],[-81.77224211261812,38.950458236421994],[-81.76960131581181,38.94838297655418],[-81.76278358540968,38.940685769762126],[-81.76174306458537,38.93830107859726],[-81.76074598033777,38.93755610419112],[-81.75841776621888,38.93692906919564],[-81.75709370291884,38.93707452327226],[-81.75647755062357,38.93611035063249],[-81.75622720961243,38.93335890765466],[-81.75906274210338,38.92798420086373],[-81.7618323823098,38.925106871273655],[-81.76568919388484,38.92329929593222],[-81.76802066001157,38.92283114005256],[-81.77238530584869,38.9226975355045],[-81.78149340753987,38.924962389269396],[-81.78525558330978,38.92610393045934],[-81.78805327192019,38.92731481298907],[-81.79363953585495,38.93047933283686],[-81.7972559527134,38.933391997962694],[-81.8036829787566,38.940580421441815],[-81.80846875001085,38.94362200949065],[-81.81379155729252,38.94602608684814],[-81.81668980676342,38.94696706268619],[-81.81970242801827,38.94725327673683],[-81.82247673493222,38.947131646905056],[-81.82628741775511,38.946527467894406],[-81.83151200208104,38.94366915735767],[-81.8335960243167,38.940943264828576],[-81.83509752559551,38.94019736585309],[-81.83598122190922,38.938762722314046],[-81.83831666526467,38.936730665234876],[-81.84239836090934,38.93166421061141],[-81.84433558773357,38.92819509095758],[-81.84446738992506,38.92608760371384],[-81.84560545584186,38.92402013921221],[-81.84588836026639,38.920349467958694],[-81.84584150223957,38.91613840787498],[-81.84625754766816,38.91261595605803],[-81.84545391899695,38.909977712077534],[-81.84615111142921,38.90657107866718],[-81.84780633417208,38.902659346026844],[-81.85019729565201,38.90015262608452],[-81.85249816893453,38.896929905774435],[-81.8566737233509,38.89210238839092],[-81.85899932804496,38.89024490097753],[-81.86183129617348,38.8884872758781],[-81.86398592438948,38.88760399323029],[-81.87144527178624,38.883017208055264],[-81.87443065602746,38.881644859883295],[-81.88199957999126,38.877371034366],[-81.88722085426954,38.87490470004104],[-81.89203758915122,38.873700238283796],[-81.89426557425863,38.87374608492137],[-81.89749443584913,38.87427545793299],[-81.90698844750308,38.87750282885958],[-81.9115073756242,38.879915766421],[-81.91570392580229,38.88381552648652],[-81.91830887035518,38.88589221580975],[-81.92219352323458,38.888345315725545],[-81.92481389593682,38.89028410578493],[-81.92807223822786,38.89348347049376],[-81.92854119532547,38.89561437303748],[-81.92712740787795,38.90039260605861],[-81.92453691293738,38.90334483205912],[-81.92120438433226,38.905625768184265],[-81.91782933597615,38.910420535370605],[-81.91268532907735,38.91501228045444],[-81.9106362137878,38.91632400569319],[-81.90743647800625,38.91775609889474],[-81.90362929653494,38.92091565699843],[-81.90124543587402,38.92336630806683],[-81.89939778780492,38.92577564699216],[-81.89873638012517,38.928808835865716],[-81.89885907697446,38.93249091895772],[-81.89918326023286,38.93411834208202],[-81.900487357813,38.937432078617924],[-81.9017301941772,38.939687451567906],[-81.90657006731077,38.9453306300147],[-81.90916814844203,38.94923671036523],[-81.91145455419027,38.95335076852382],[-81.91277454385258,38.95495141442808],[-81.91276441903351,38.956153165470894],[-81.91709052325771,38.965384721853304],[-81.91864997368737,38.967962737358896],[-81.92093571215682,38.970627516011355],[-81.92543931176162,38.976546642202244],[-81.92859847320446,38.98122877930565],[-81.93019157683712,38.9840937144797],[-81.93312000844381,38.98769367923925],[-81.9366286430923,38.99027115864977],[-81.94072848223833,38.99221765490399],[-81.94290622509583,38.993547246501564],[-81.94527430109764,38.99403957689807],[-81.94913774472248,38.995598453328284],[-81.9507795013226,38.99599865891113],[-81.95562317198656,38.9959412837107],[-81.95926418575627,38.99529858847073],[-81.96358407095407,38.99372332704699],[-81.96629052610764,38.993239485536996],[-81.97240829126163,38.99274677328323],[-81.97713649454734,38.99205387902555],[-81.97876440192421,38.992448039550126],[-81.98152604117803,38.99515815684421],[-81.9823305408407,38.997119708143664],[-81.98258040355972,39.000571446193696],[-81.98393780971104,39.00506452899892],[-81.98784406673937,39.01330571084667],[-81.99238657299264,39.019997511521126],[-81.995297243053,39.02290684452058],[-81.99766497605646,39.024607452665876],[-82.0034152479312,39.028173406171405],[-82.00644474997695,39.02915393763102],[-82.01129691290238,39.029790145734324],[-82.01807286110902,39.0296974804932],[-82.02203917902335,39.02936755695094],[-82.02759919203712,39.02820282275346],[-82.03345930041039,39.02626945851539],[-82.03621561166074,39.02499406816699],[-82.03808631919735,39.023715082039644],[-82.04121742678065,39.018785346607245],[-82.04208857315096,39.01449668316761],[-82.04300116506614,39.01319134468504],[-82.04438562791522,39.009105809384195],[-82.04522511290368,39.00529925657635],[-82.04689205152751,39.001704931239615],[-82.05081629984878,38.995100884548755],[-82.05235036529643,38.99369694954578],[-82.05437161149037,38.992785190272876],[-82.05984764121943,38.98949228944103],[-82.06809901395428,38.98526383968046],[-82.074910524363,38.98258722685675],[-82.07905121937877,38.981286263972144],[-82.08182069372184,38.9799038150315],[-82.08570571646281,38.977540069997865],[-82.08841473207823,38.97638425488046],[-82.09165258915883,38.973728301980294],[-82.09297417502925,38.971867805153835],[-82.0941698639857,38.96718925626354],[-82.09578061030287,38.96338414311674],[-82.09992600080777,38.95696271334198],[-82.10228894502418,38.95383788928099],[-82.10490310594362,38.95111600350323],[-82.1067357087372,38.94833654348935],[-82.10915354968289,38.945377698487555],[-82.11096232950428,38.94052367463687],[-82.11084479769134,38.936112125170574],[-82.11185725860162,38.936131202979126],[-82.11237065689606,38.93323137181716],[-82.1135282100914,38.93019091284856],[-82.12029388533026,38.92212105263414],[-82.12325780270783,38.91813902023093],[-82.12491997438507,38.9154325858932],[-82.12884032691345,38.910092726800045],[-82.12979423985567,38.90755420191794],[-82.13255793170312,38.906556261304544],[-82.13685174284595,38.90415481552355],[-82.13777123052394,38.90142352125982],[-82.13950138668194,38.90070277772134],[-82.14058785177787,38.90098676858055],[-82.14332548002497,38.89808505034716],[-82.14451932464848,38.893753605853895],[-82.14554583158942,38.88498201622065],[-82.14546472038576,38.88295725598978],[-82.14232285640043,38.87708302720749],[-82.14076482897454,38.87258848520238],[-82.13954250450136,38.86758276067656],[-82.13926649244085,38.86398319594257],[-82.13988678913512,38.86191611836515],[-82.14167719690039,38.851626255965634],[-82.14426268736561,38.841971737921824],[-82.14672094824469,38.83801755066177],[-82.15380997919515,38.83118312338277],[-82.15685931060608,38.827929533231334],[-82.16232261288465,38.82369276476724],[-82.16684389601691,38.82156023095546],[-82.1761532405809,38.818500324379144],[-82.1795352036709,38.81721131734157],[-82.1903363075855,38.815469153172145],[-82.19210540196204,38.81453306685996],[-82.19441056261088,38.81271268538541],[-82.19624747950944,38.810621500639726],[-82.20194888669049,38.8071925217998],[-82.2045529248932,38.80580195240253],[-82.20927850410524,38.802755302538536],[-82.21408229492404,38.79933994762669],[-82.21592433500395,38.7975180808199],[-82.22040719238973,38.790123735260245],[-82.22179330107953,38.78662784431992],[-82.22155666347102,38.77914982371984],[-82.22126661651248,38.776387114325765],[-82.22048728116422,38.77342494882264],[-82.21960397134548,38.77197572528903],[-82.21706967229618,38.7690645673474],[-82.21416168833063,38.767476725721096],[-82.21162913474369,38.76569741913905],[-82.20870080581977,38.76447629830027],[-82.20381965759665,38.761784191758935],[-82.19993500818096,38.75857181797869],[-82.196776360656,38.754244384723776],[-82.19522341217585,38.75090598816871],[-82.19501722282475,38.745288367690996],[-82.19410093069058,38.74041753859095],[-82.19343013374706,38.73861339254626],[-82.19168048365665,38.737191193531174],[-82.19071412399705,38.73740291067068],[-82.18921203096951,38.7353604914152],[-82.1884567649666,38.732171435149766],[-82.18852080513379,38.727187721552305],[-82.1880436277807,38.72435658985535],[-82.18967103618263,38.72487742372428],[-82.1920361149874,38.72947732636996],[-82.19223836918663,38.728005203294835],[-82.18646690316172,38.718736589681825],[-82.18508659154955,38.71616134130294],[-82.18384341057443,38.7110695572942],[-82.18307549409573,38.71076522250741],[-82.18273281116386,38.70762662842853],[-82.18294234047634,38.70609959219384],[-82.18420105530097,38.702937832754436],[-82.1844873954789,38.70142190449258],[-82.18611650614658,38.69664002125362],[-82.18953295754767,38.690758360247834],[-82.19081755473064,38.68627771033547],[-82.19164448922788,38.68253215368462],[-82.19109128837115,38.67949193471955],[-82.18907492638161,38.675348952888704],[-82.18762905850136,38.670300899219455],[-82.18665140399715,38.66379279298822],[-82.18609763964479,38.66259355512663],[-82.18595461312763,38.66018113054694],[-82.18448681506852,38.65710595445305],[-82.18244599966948,38.65408422107943],[-82.17989493457563,38.6496217050073],[-82.17760478738758,38.64319841974774],[-82.1749390656083,38.63501590192937],[-82.1737444223092,38.63204576596354],[-82.17274405228036,38.627862046998054],[-82.17229544626738,38.62501868845736],[-82.17243249985562,38.62083432717447],[-82.17210696224151,38.61897510250803],[-82.17359372682685,38.61231318617234],[-82.17468342177682,38.610484999495455],[-82.17548490890843,38.60725053526166],[-82.17743639089102,38.60398749677303],[-82.18065318509592,38.60046733864009],[-82.18570078661037,38.597325766429314],[-82.18786607313407,38.59543922583624],[-82.19229284641945,38.593829680812384],[-82.19955784029518,38.59221029713739],[-82.20320751671744,38.592037354514034],[-82.20751579048392,38.591554920771976],[-82.21472509783825,38.59153455727929],[-82.21667531305363,38.59190330557233],[-82.22129874486778,38.59125475112957],[-82.22316492108281,38.591488694093954],[-82.22568199941321,38.592972960062944],[-82.23299051796276,38.59447019148518],[-82.24127417271005,38.596702237825674],[-82.24387647324963,38.59715369282077],[-82.24610722414863,38.59658382701855],[-82.2478916630304,38.59726957711669],[-82.24575235193403,38.598202347575025],[-82.24953457477703,38.59874248351364],[-82.2581564988178,38.59855581263031],[-82.26142737268056,38.598127998036425],[-82.2634802733102,38.59685001748221],[-82.26536595561028,38.5973107710403],[-82.27091469232278,38.595384842175186],[-82.27351475218344,38.594030661803124],[-82.2764334503711,38.59176875245077],[-82.2813946777947,38.58673075991528],[-82.28822983962885,38.582229842936215],[-82.29176976500642,38.57888807577503],[-82.29348533635256,38.57599172471841],[-82.29411450415517,38.57232501707251],[-82.29419312471711,38.56757571901275],[-82.29355425790746,38.5576463751041],[-82.294724040365,38.55064971254952],[-82.29604566358674,38.538396007786254],[-82.29644909172612,38.53669797681962],[-82.2982249275025,38.53287257928037],[-82.30048439864623,38.52912681706307],[-82.30176481551976,38.526196180607556],[-82.30357388472443,38.52081281513277],[-82.30415324206926,38.517088424061065],[-82.30383763837176,38.508487430502434],[-82.30334449193934,38.503878061545855],[-82.30371883331546,38.5000044244139],[-82.3044791218695,38.49619576248547],[-82.305333260525,38.49320095355974],[-82.306451239171,38.4905585286034],[-82.30826918764488,38.487741606944404],[-82.31071765388273,38.483210296262776],[-82.31164906421661,38.48004505002192],[-82.31195310397722,38.4764934983011],[-82.31289268616574,38.47447741271778],[-82.3132137495514,38.47169571397932],[-82.31517704613437,38.46460569792529],[-82.31865077616521,38.45716016090634],[-82.32022862248095,38.45448987341995],[-82.32318641891779,38.451013409545865],[-82.32484700420032,38.44843597073128],[-82.32813520504334,38.44591680624607],[-82.33131503857848,38.44417315859135],[-82.33655664793567,38.4422134826174],[-82.34221521490457,38.440716702588155],[-82.35691543684504,38.43884104255025],[-82.36574250023806,38.43797126334134],[-82.37665675819414,38.43563872885689],[-82.38113882158183,38.43524034951309],[-82.38206853257155,38.43489828427295],[-82.38531341776321,38.435216851208054],[-82.38931246120764,38.43430043089996],[-82.39203378316918,38.435423705654344],[-82.39484576439459,38.43609488830336],[-82.40279337668298,38.43916046397932],[-82.40695496992885,38.43961521221691],[-82.4099822519911,38.43891887624905],[-82.41396636924422,38.437279775426646],[-82.41781724274864,38.43542605152888],[-82.42191337704662,38.43395232264065],[-82.42364027769405,38.43362604424901],[-82.43295112553021,38.43066084904411],[-82.43736913563612,38.42958824277795],[-82.4395217789696,38.42881516179964],[-82.44549871341998,38.42753659105017],[-82.44927992672251,38.426408814708424],[-82.4518523009658,38.426233905281315],[-82.46042238887483,38.42459403819059],[-82.46267959798242,38.42388631771894],[-82.47299521173919,38.421676131449196],[-82.47986459253178,38.42010394114256],[-82.4842315919503,38.418816035395544],[-82.48537683125541,38.418143292440725],[-82.48839586873784,38.417649640916544],[-82.4921752174906,38.41624724160861],[-82.49399862515676,38.42198329047774],[-82.49460119870659,38.41530064513434],[-82.49921012762645,38.413987949994386],[-82.50206045486914,38.412713669063116],[-82.5063353439167,38.41133862891757],[-82.51568670214895,38.40865435338548],[-82.52530939061735,38.40607410960624],[-82.53353036885939,38.40453839926014],[-82.54389209145081,38.40317731650043],[-82.55277663886721,38.40322338816553],[-82.55761703531074,38.40364425311194],[-82.5613000137384,38.404307401400935],[-82.56803855645269,38.40581486718695],[-82.57639964112468,38.40845388908197],[-82.58068019804409,38.41043622232048],[-82.58377159055567,38.412238120712324],[-82.58843416687466,38.4154968548717],[-82.59004727241076,38.417129824979234],[-82.59281362862804,38.42064991558427],[-82.5968323037066,38.42653780806225],[-82.59748981571357,38.427864756649946],[-82.60104287018105,38.438526502662974],[-82.60255758025149,38.44791608040933],[-82.60284724053398,38.4503501424681],[-82.60415556095735,38.457334668688546],[-82.60376115961174,38.45962963520509],[-82.6049640536537,38.461389337500485],[-82.60646219850516,38.46463958024887],[-82.60932381441965,38.46943402043405],[-82.61152705227144,38.472479495289754],[-82.61551731517034,38.475473601655814],[-82.61958311791155,38.477532458867884],[-82.62501097380019,38.47995272224984],[-82.63072941978925,38.48196406574123],[-82.6382932611297,38.48483111421379],[-82.647134907289,38.489955073310064],[-82.65440624705596,38.49460287052042],[-82.65838011304719,38.498176899930414],[-82.6599402472451,38.50003553216152],[-82.66190326678644,38.50133435669256],[-82.66443261375514,38.50464545943202],[-82.66962721943204,38.509603151869854],[-82.67128164329954,38.51139816700122],[-82.67582279033026,38.51557970003479],[-82.68167682901297,38.5236766000385],[-82.68597993780041,38.530614677549806],[-82.68966708146193,38.5360082798134],[-82.69119911646322,38.537849337477596],[-82.6931941456596,38.539230725914635],[-82.69555315482316,38.54151749547008],[-82.69917824063012,38.54395787107077],[-82.70300340794866,38.545802705265835],[-82.71168034462872,38.54965883023042],[-82.71583109010304,38.5521694198133],[-82.71969597818602,38.55370311749568],[-82.72225135535871,38.555845199652374],[-82.72707257949203,38.55852875567103],[-82.72990697223716,38.55909676080132],[-82.73461334699313,38.559543967102854],[-82.73620109656055,38.55897428670447],[-82.73893948404414,38.55887440482804],[-82.74515438754341,38.55910913739976],[-82.7520375984928,38.559759507758145],[-82.75291925982162,38.559691452538516],[-82.767789541774,38.56041834357382],[-82.77226078871429,38.559989507809554],[-82.77563876931825,38.55921054556771],[-82.78129386178361,38.55904290332114],[-82.78808586291403,38.55958252167649],[-82.79542218145863,38.56134806078412],[-82.7996425681651,38.562829159701806],[-82.80526864896675,38.565594455797],[-82.80901230121412,38.56683956276778],[-82.8131394019282,38.5692724901237],[-82.82017584525461,38.57249533099298],[-82.82303374948748,38.574358873911265],[-82.82385704224133,38.575253680834756],[-82.82694493437472,38.57685218050934],[-82.82855825296342,38.57897756241155],[-82.82994048445272,38.57961210442992],[-82.83756064649504,38.58448782414321],[-82.8419822397158,38.588023892945806],[-82.84621550931277,38.593072833005444],[-82.84772419782398,38.59510935541077],[-82.8494038183132,38.600506560964064],[-82.85083714518463,38.60282919276103],[-82.85289202871974,38.607581481881155],[-82.85456152517105,38.61361678964424],[-82.85553500481102,38.61772872748463],[-82.85602853527803,38.621115993576176],[-82.85586719038884,38.623856154388235],[-82.85626249468993,38.624438122070785],[-82.85647431887512,38.62840044179284],[-82.85755283404949,38.63118945803102],[-82.85683393255948,38.63442932550889],[-82.85693236561872,38.64140443120501],[-82.85728945419919,38.64415731177921],[-82.85699424737878,38.645318033845285],[-82.85735848759154,38.64948364974728],[-82.85814029797668,38.65447798400625],[-82.85941900620108,38.65936086460629],[-82.86099804992038,38.664050646466784],[-82.86428113817404,38.67040092132627],[-82.86743005142304,38.675097174281184],[-82.8726999236232,38.68071083499052],[-82.87532284319728,38.68312129858574],[-82.87616090999714,38.684357196603564],[-82.87749019205779,38.689035146579926],[-82.87754377575615,38.693951754150795],[-82.87310437067339,38.71389864516774],[-82.87195914592694,38.717387723962624],[-82.870547898299,38.72365389587366],[-82.8699790700469,38.72748746758948],[-82.8705200252326,38.73168032702509],[-82.87037441261563,38.73334659882419],[-82.87164956188656,38.738433232795565],[-82.87345014415035,38.74341924268728],[-82.87559111328312,38.74723187453009],[-82.8798806530644,38.75151781939521],[-82.88322468278804,38.75159872873595],[-82.8855889120623,38.752772189393674],[-82.88483267213786,38.754047040989946],[-82.88607592128247,38.75522404731119],[-82.88996375361987,38.756187100050795],[-82.89398346331265,38.75645557562562],[-82.89657626550989,38.7562912959688],[-82.90114680877969,38.754930104335465],[-82.90307609699403,38.75486941749138],[-82.90712766476115,38.75332206880201],[-82.90941957057025,38.753310711362396],[-82.92131712503327,38.750794366248165],[-82.92841774424068,38.748751432399445],[-82.93624114145425,38.746258787492714],[-82.94141591230145,38.74410647405258],[-82.94969822368472,38.7400794771465],[-82.95504850118543,38.737022333580065],[-82.95664964557453,38.736365875052705],[-82.96130784496007,38.73366934763489],[-82.96302273450057,38.73220781510967],[-82.96500773136982,38.73134574990982],[-82.96663140760003,38.729884531157396],[-82.97000501132358,38.72807997846676],[-82.97077878507768,38.72848462610769],[-82.9739378287925,38.72712169936443],[-82.97651912116334,38.72635625307145],[-82.9812127661262,38.72598416998832],[-82.98535075909605,38.726341656230716],[-82.99135477219014,38.727925372043245],[-82.99876647887892,38.72929874633487],[-83.00871729148005,38.7300746581754],[-83.01256347164065,38.73008707804471],[-83.01416890239251,38.72921278860319],[-83.01824670222756,38.72799182834137],[-83.02165078489514,38.7285758872898],[-83.02622278596263,38.72781597463723],[-83.03036237610854,38.72599371781266],[-83.03283156466107,38.72391149797514],[-83.03385106966721,38.72238302337062],[-83.03697329748236,38.71874276115884],[-83.03925456263114,38.71473764051114],[-83.04194108099566,38.70900655646669],[-83.04622313464888,38.70358377865561],[-83.04796303000396,38.70206347121676],[-83.05043175606782,38.69919390458419],[-83.05276042172106,38.696019574224486],[-83.05386651482198,38.69504208424562],[-83.05790426399096,38.693056626828714],[-83.06156549032774,38.68994393922829],[-83.06364000670013,38.68895919792552],[-83.06599425340414,38.688352205685156],[-83.07471532490607,38.68489838576604],[-83.0840316440281,38.68102343924243],[-83.09412299234172,38.6789003669397],[-83.10090568748826,38.67775049184196],[-83.1049373099503,38.67635174305872],[-83.10738902609627,38.67514000995724],[-83.11049319962724,38.673042490002715],[-83.11371894177047,38.67044859829336],[-83.11825770705431,38.665712414154065],[-83.12087244518759,38.66223418499486],[-83.12238645134308,38.65931054870311],[-83.12232526558114,38.65747335520063],[-83.12343258799933,38.65531184678822],[-83.1235070946458,38.65354463499731],[-83.12500008311501,38.6499390553902],[-83.12690508589263,38.6440515601949],[-83.13036645536955,38.637974904952536],[-83.13345702982956,38.63372852014974],[-83.13585669553316,38.63085162586325],[-83.14337973277456,38.62445956598943],[-83.14535582622317,38.6238831393494],[-83.14597881602437,38.62306691100381],[-83.14826616349546,38.62206466356884],[-83.1503655032935,38.62021529612764],[-83.15377435931566,38.618782572472426],[-83.15904027199578,38.61854048346175],[-83.1662283442992,38.619205806265974],[-83.17081821195247,38.61889646397111],[-83.17574931304154,38.61897364679541],[-83.17759841385485,38.61928086128583],[-83.18090332219062,38.61880192987576],[-83.18238402523485,38.61828085407215],[-83.1845446116717,38.61821496458505],[-83.19385333235283,38.617010833918975],[-83.1974080563754,38.61675963495371],[-83.20330535112782,38.61667077956935],[-83.20989041554088,38.617796398354024],[-83.21422836329263,38.61932441088261],[-83.2165846514672,38.62079389973181],[-83.22217181419805,38.62335619451347],[-83.22512997563145,38.62501154022256],[-83.23018439318871,38.62668650333355],[-83.23373730986948,38.62761105634929],[-83.24094754907676,38.62866606115348],[-83.24644296046856,38.62843759651856],[-83.24822019003511,38.627649531120454],[-83.25275771293599,38.62498732145522],[-83.255241423809,38.62326782623421],[-83.26145304007937,38.62280350444921],[-83.26456684547279,38.621527626135006],[-83.2677507309977,38.61813565172798],[-83.26867610001263,38.614971113815656],[-83.2700824540894,38.614140412139015],[-83.2740748424396,38.6101503616911],[-83.27615311881668,38.60862600717037],[-83.2826441897755,38.60257376732495],[-83.28504815202123,38.60075489037715],[-83.2872667031104,38.59865607751705],[-83.29217802679347,38.59678671592045],[-83.29466183973682,38.596477263746216],[-83.29888068364636,38.59718656236996],[-83.3020995928223,38.598062672225325],[-83.30520274404057,38.59922065706498],[-83.30806426744121,38.60068339122022],[-83.31080414935705,38.60251094486279],[-83.31616558361328,38.60741779747912],[-83.31802719498418,38.6096151714238],[-83.31914904571774,38.61206020269054],[-83.31988931848248,38.61483305936967],[-83.3207158596337,38.62497784924815],[-83.32148991084901,38.62824007024038],[-83.32249414252122,38.630796268002065],[-83.32502592443528,38.63451325672069],[-83.3275528438066,38.637801152063716],[-83.33162346531326,38.64060463668029],[-83.33965885757905,38.64552442378174],[-83.34592950919361,38.6487459176148],[-83.348875828756,38.650077315916604],[-83.35419497848048,38.652826753050114],[-83.36072696320869,38.65668349852635],[-83.3688666466025,38.659515559493705],[-83.37327128304267,38.66078028677565],[-83.38092185103461,38.66229707721444],[-83.38362140253066,38.66252926675451],[-83.38479011041647,38.663004324476724],[-83.39497581612054,38.66422321647177],[-83.39903524706192,38.66507146781243],[-83.40074497759782,38.66512405148987],[-83.40859547840239,38.66609089652007],[-83.41002526448072,38.666701111309784],[-83.41395300183716,38.66601003902279],[-83.41739536347279,38.66678587777474],[-83.41772460628405,38.66786131504743],[-83.42097497450311,38.66840759674043],[-83.42459793259317,38.668505410634545],[-83.42789539874127,38.66888626185176],[-83.4396333821327,38.66917225313151],[-83.44590699759867,38.66996329823694],[-83.45625166811628,38.67340971806206],[-83.45736545687384,38.67391206732953],[-83.46148568533431,38.67396044704325],[-83.46752064257015,38.67520797081007],[-83.47152386296604,38.67748409815485],[-83.4772009800086,38.68283641772785],[-83.47969514448747,38.68490488673102],[-83.48706353094408,38.69042341256065],[-83.49026054667229,38.69261211658772],[-83.49676045914043,38.69597649061736],[-83.50170775274458,38.697633979012785],[-83.5060131750875,38.69944920041201],[-83.5130364569194,38.701708043365514],[-83.52112659062817,38.70300019580345],[-83.52323203785494,38.702623962087806],[-83.5251568256216,38.70284882861164],[-83.52985859282846,38.7025813237072],[-83.53505830343649,38.70183088039809],[-83.54251363447388,38.700427581221284],[-83.5481675525286,38.69910632269495],[-83.56252754427436,38.695208947151166],[-83.5691611904686,38.69286592549875],[-83.57429892813487,38.69180104075922],[-83.58097761735073,38.69063904696535],[-83.58371351242029,38.68979408381456],[-83.59036197042771,38.68896713513976],[-83.59255661222618,38.68850644289338],[-83.59486045693801,38.6873793698759],[-83.59937176741165,38.68571986482854],[-83.60194386544066,38.68379280735675],[-83.60443705582554,38.684544140668365],[-83.60904053882531,38.68482414185387],[-83.6110639077899,38.68463419768381],[-83.61693372318815,38.68290575493172],[-83.62274575162301,38.68018227638853],[-83.6276565704899,38.67753237063055],[-83.6323474031606,38.673531555262755],[-83.63428864538741,38.67127375344932],[-83.63695836178292,38.66637922328609],[-83.63850027593959,38.658981952246],[-83.63892540319881,38.65364747843359],[-83.6415007970266,38.64522202870083],[-83.64179216733831,38.64375042598523],[-83.64425910553216,38.63774081087059],[-83.64558047370517,38.63541167297151],[-83.64819367352452,38.63195839894489],[-83.64959071158988,38.630838708495546],[-83.65512139138352,38.628411848526085],[-83.65840700074278,38.627531365804884],[-83.66710382330167,38.62634830441719],[-83.66853395009107,38.62638874882394],[-83.67280665084049,38.62755014143883],[-83.67477151244978,38.62855900996913],[-83.67990049513325,38.629773020494035],[-83.68431821453187,38.63117619431651],[-83.69365763477761,38.634720410312376],[-83.69953270147143,38.63729598349642],[-83.70414705541788,38.63949833206586],[-83.70850734766648,38.63988822519319],[-83.7112115080512,38.641565830529],[-83.713755762172,38.64168750286362],[-83.71667663540558,38.6433240487522],[-83.717796654127,38.64490805321245],[-83.72139936480835,38.64668024031043],[-83.72376528884756,38.6470070977319],[-83.73002438069358,38.64727553461702],[-83.74049415964886,38.648020593580846],[-83.74418634199739,38.64848111429239],[-83.75265296458804,38.64990381641279],[-83.75935746952794,38.651519960978206],[-83.76208303447376,38.65183615480821],[-83.7644826639811,38.65248541418167],[-83.76719162859035,38.653712932991844],[-83.76946058492287,38.65514172782825],[-83.77193385967779,38.657462729364966],[-83.77359397262187,38.660572137911316],[-83.77399365031341,38.6629438509241],[-83.77527015136198,38.66506279312458],[-83.77696969582061,38.670683983647265],[-83.77804823016066,38.67610222494585],[-83.77883631332573,38.67913817700695],[-83.77964240284668,38.68354131913982],[-83.78068131099174,38.68648735715638],[-83.78171226939115,38.69063978873758],[-83.78285121529898,38.692860278398776],[-83.78399737006387,38.69610762081831],[-83.78747053660084,38.699748347289486],[-83.79047632172069,38.7016534750277],[-83.79823789736517,38.70446478040593],[-83.80465812611264,38.70612498723888],[-83.80781717688984,38.70672729175749],[-83.8117039906684,38.70696446775476],[-83.81912917522071,38.70851017756055],[-83.82352689518423,38.71003301554302],[-83.82909070276844,38.71350551597269],[-83.8347669970693,38.716029770779066],[-83.8382902824071,38.718833820660535],[-83.8408900310646,38.72228032651092],[-83.84243216464571,38.72685866777356],[-83.84348333586154,38.733087967620634],[-83.84623753759823,38.74238951316207],[-83.84905521284234,38.7477017192093],[-83.85282435264945,38.75200448581084],[-83.85497986915735,38.75314091022764],[-83.85822353698289,38.756098393464356],[-83.86186014602313,38.757960676055184],[-83.8671290403424,38.76035964474068],[-83.87208219964575,38.76203518080608],[-83.87500182042298,38.76279862304145],[-83.87876443964537,38.76305100400884],[-83.88493784079616,38.76507897527754],[-83.8872573543142,38.76561777810676],[-83.88998197111522,38.76570029011616],[-83.89606068711808,38.76681518604891],[-83.90048658896964,38.76739406530703],[-83.90527726163147,38.76831509806586],[-83.91457779315628,38.76977486917991],[-83.91950321232015,38.76970318180885],[-83.9235330794085,38.770809404627826],[-83.92620801813247,38.77120033546069],[-83.92851400717743,38.77208570057711],[-83.9261632843833,38.773842864547376],[-83.92976725185478,38.77504252038874],[-83.93653761497596,38.779032408137965],[-83.94141938670926,38.78228018079139],[-83.94868743921737,38.785140229747476],[-83.95166851641592,38.78604423017578],[-83.95687710123985,38.7863644388705],[-83.96136954267426,38.78735900813454],[-83.96519265579971,38.78721717772814],[-83.97124574781752,38.7872943796858],[-83.97271568317731,38.78708300336398],[-83.97645242824251,38.787513907304074],[-83.97792925757857,38.78729688046121],[-83.98114788212881,38.78612176967484],[-83.98454538556727,38.7854449177106],[-83.98821922567328,38.78389481320918],[-83.99631435791501,38.78163738434895],[-84.00784717631984,38.7798151471261],[-84.01140557703864,38.778797179345865],[-84.01844146439193,38.77618582163125],[-84.03251997651932,38.772899735867014],[-84.04319027101269,38.7706516751964],[-84.04494771466581,38.770666347001075],[-84.05031735210088,38.77143154581577],[-84.05385015943469,38.77104885039015],[-84.06283459196676,38.77119936377154],[-84.0664004176099,38.77096476294751],[-84.06995780603295,38.770428977716804],[-84.07350199524174,38.77113783991462],[-84.08072629876837,38.77227831607649],[-84.08617042630385,38.77385628730422],[-84.08973716934301,38.774032780567964],[-84.09327022498623,38.774766420859045],[-84.0951022273186,38.77553934807216],[-84.10780467412236,38.77896105396514],[-84.1095784281683,38.77976718169479],[-84.1106026318849,38.78115234729748],[-84.11601039286633,38.7827960179479],[-84.12500371978398,38.78618136065119],[-84.13388476629812,38.7892133454517],[-84.13934023206522,38.79049532749555],[-84.1448501363716,38.792198201032335],[-84.15581461499232,38.79495706863287],[-84.16686753399789,38.79655696251894],[-84.17619665633026,38.79806094177798],[-84.18525589324696,38.7991948412568],[-84.19081103967035,38.79971893203768],[-84.1927144824107,38.80030098296125],[-84.19628317914314,38.800652029181315],[-84.20536250555449,38.802408262011504],[-84.2160286988509,38.80836228096473],[-84.2210473381227,38.812470613302885],[-84.22474192057247,38.81657789933903],[-84.22972019802229,38.82527626032675],[-84.23081912761103,38.82804021952594],[-84.23154355746517,38.83094529585025],[-84.23327944943627,38.84231740326061],[-84.23354607247624,38.846584331490156],[-84.2337488929794,38.8550973806922],[-84.23347311562408,38.859338034443766],[-84.23195421352494,38.87084529369347],[-84.23211683487793,38.87502035163695],[-84.23190726974437,38.877955021538284],[-84.23243220763763,38.883534233227735],[-84.23305647922504,38.88770966356621],[-84.23430925519474,38.89188034301454],[-84.23575379146546,38.89462601828455],[-84.23778617337769,38.897402480060876],[-84.2391916469925,38.89877326162289],[-84.24110878969807,38.901541942716875],[-84.24290274921493,38.90287024671578],[-84.25000017049823,38.91262759127202],[-84.25280860621591,38.91628483648994],[-84.25652671452228,38.92188603914074],[-84.26015322191684,38.92436173987164],[-84.2610120139939,38.925745999431086],[-84.26488103621574,38.93002091871503],[-84.2691013167077,38.93564704834547],[-84.27877543556346,38.94402637593215],[-84.28627216052244,38.952322176793864],[-84.2884152299308,38.95512311862125],[-84.29259332320248,38.96198786382587],[-84.29575438320721,38.96902900157377],[-84.29665813901386,38.97323737690361],[-84.29674993554299,38.97600506095848],[-84.29817635106677,38.986046979365646],[-84.29756407941804,38.98885876021509],[-84.29775458910704,38.99024873340086],[-84.29971690629293,38.99584500936668],[-84.3016348662745,39.000015134707596],[-84.3048279375728,39.00568856726364],[-84.30686712334848,39.00867362813618],[-84.31056102686121,39.013041931836064],[-84.3146338431745,39.01734201460211],[-84.32001289072393,39.021516191537],[-84.3228470477405,39.02417935078108],[-84.32826631792317,39.02827071442145],[-84.3337362756589,39.031085669185934],[-84.33559501422845,39.03225777923958],[-84.34293457232391,39.035713981707936],[-84.34474151984435,39.03607596453627],[-84.34653691644236,39.037098085621494],[-84.35025652931483,39.03830982632543],[-84.3557164952331,39.039809366574396],[-84.35945534662622,39.0411779129651],[-84.36862034012196,39.04293416827945],[-84.37398424484154,39.04348700292787],[-84.3905822227116,39.0443878316632],[-84.39427374517814,39.04542636206902],[-84.3996152956062,39.04623985441437],[-84.40327391229056,39.04553095158812],[-84.4068567607374,39.04565328147235],[-84.41230079403056,39.04685986758852],[-84.41600813828344,39.0487215174526],[-84.41964415269912,39.050023713683004],[-84.42149135272857,39.05108627394972],[-84.42511289840371,39.05236655730834],[-84.42696897479013,39.05349474903315],[-84.42657567865855,39.05502545013946],[-84.43037860484657,39.05833254322004],[-84.4320003824957,39.06400180692135],[-84.43303842045356,39.06842279671115],[-84.4336438083536,39.07403799887392],[-84.43339660104917,39.07683328933864],[-84.43409687511317,39.08103068875994],[-84.4337019433746,39.083839617112545],[-84.43540141302003,39.08669096856817],[-84.43492445517758,39.09241487947372],[-84.43396199381714,39.0938270703566],[-84.43448842835299,39.09811629647821],[-84.43549508104238,39.100880823545225],[-84.4369112831297,39.103665978286244],[-84.4407306659379,39.10920836167391],[-84.44459935064705,39.11345828542737],[-84.44775175274135,39.116263545802234],[-84.45323803134316,39.11954614746625],[-84.45885536706567,39.12143556298164],[-84.46431604971586,39.12199169718694],[-84.47141481910563,39.12160167641312],[-84.47497103083913,39.12039233286413],[-84.48032765137928,39.11773932703864],[-84.48213574174002,39.116570697376],[-84.48829504089677,39.110885511662914],[-84.49070123421501,39.107936235430806],[-84.49353657298632,39.10370430102409],[-84.49477991732157,39.10229216949809],[-84.4982832888443,39.09951061230635],[-84.50309404701801,39.09641630707971],[-84.50484181205435,39.095544696425755],[-84.51148173014222,39.093541318846164],[-84.51829453272445,39.09244251225739],[-84.52167350729755,39.09213229975868],[-84.52646581351787,39.09268866813541],[-84.53385573857271,39.09651327541204],[-84.53938844457197,39.098846836362405],[-84.54482859747351,39.09991689617115],[-84.55033610914059,39.09966576006952],[-84.5539160195044,39.09820556355981],[-84.55888916684762,39.093877538877805],[-84.55995098985929,39.092428891606275],[-84.56381882836563,39.08808767076676],[-84.5691774470523,39.084005592529195],[-84.57268577356693,39.08206239070256],[-84.57624314683305,39.081074840393015],[-84.58523835596841,39.07943905329006],[-84.59413998038318,39.07750762623281],[-84.59593802832337,39.07696375762528],[-84.59947122537082,39.07494836111305],[-84.6049345322388,39.07352438323702],[-84.60869684600675,39.07330195558554],[-84.61409457317983,39.07344512856615],[-84.61767458173067,39.07324231567829],[-84.62130179657218,39.07367043850286],[-84.63008860465708,39.07621442104034],[-84.63186444713683,39.07627518852033],[-84.63504289176065,39.07900362137821],[-84.63867500624562,39.08130604416707],[-84.64200725155867,39.08396612731091],[-84.64474923854112,39.08673066880807],[-84.65118524034854,39.09217638612075],[-84.65298545831232,39.09325386546147],[-84.65855475918457,39.09574592876486],[-84.66578633202268,39.097799929187296],[-84.67299119555759,39.097593749129786],[-84.68019327489748,39.09867921592769],[-84.68569047185898,39.10063197601527],[-84.68924560544198,39.10310506629939],[-84.69232340331295,39.107275421703726],[-84.69505921939691,39.10998946917876],[-84.69743579891882,39.112737750651895],[-84.69939520698381,39.11547759487055],[-84.70527988417771,39.122305742280076],[-84.70788403989046,39.12501398937662],[-84.71109178357008,39.12920365855079],[-84.71484543211344,39.13333118369863],[-84.71938109020248,39.13742163890893],[-84.72302208199564,39.13995850840431],[-84.72663719205396,39.142115510617245],[-84.73023796390893,39.14380979616521],[-84.73925052415635,39.14669469635387],[-84.74287134763875,39.14745144875834],[-84.75000074833866,39.14759805328884],[-84.75359533738231,39.146899373395726],[-84.7589863806541,39.14435269955729],[-84.76606549247423,39.139102141746605],[-84.76928677944566,39.1362945954745],[-84.77193290734989,39.1334441629139],[-84.77728887949418,39.12635822483183],[-84.78205004541253,39.12070619204391],[-84.784197495651,39.117874913956776],[-84.78773226031336,39.11526878975177],[-84.79301056012487,39.113184942268475],[-84.80393436071311,39.11055936666383],[-84.80927900252694,39.10951682600729],[-84.81104261608311,39.108852156796594],[-84.81197713066963,39.107394996916945],[-84.81555754278078,39.10595842287774],[-84.8199309094244,39.105453101118606],[-84.82006613850113,39.12501594597899],[-84.82004449154535,39.15843223992415],[-84.82001731388645,39.218608876875834],[-84.82009302191652,39.25148255419016],[-84.81963826571796,39.27631422085081],[-84.81924867709239,39.3051526972966],[-84.81819500347254,39.37501619210476],[-84.81786894707751,39.39185702755122],[-84.81737032203368,39.40641496998146],[-84.81658198380002,39.44254393757482],[-84.81640314847692,39.458909014348876],[-84.81608182249246,39.478688441640706],[-84.81613992414809,39.47955491123556],[-84.81571590122375,39.50128544417374],[-84.81553622587985,39.52074461836108],[-84.81524624882216,39.53181025239543],[-84.81522902065788,39.54870269967001],[-84.8150814029061,39.57259791135826],[-84.8150050264954,39.59684982603463],[-84.81480058979993,39.61579998215011],[-84.81463614275603,39.653094920918406],[-84.81455340573133,39.66079205553841],[-84.81464541630463,39.669659463154176],[-84.81461011133993,39.68087276235215],[-84.81435969713964,39.7151506434574],[-84.81436521434766,39.743556612844074],[-84.81430031380535,39.75552030834236],[-84.8143057309357,39.787719370192],[-84.81412721307754,39.799344586720224],[-84.81430872431328,39.79975914306183],[-84.81404017663135,39.811425199295435],[-84.81415259164196,39.814220332021776],[-84.81386544371504,39.825824895891955],[-84.81391072576598,39.8285088119596],[-84.81343125953207,39.85342919247911],[-84.81331776533615,39.86528569140734],[-84.81311336388477,39.87297501843018],[-84.81284622452586,39.8896844102431],[-84.8126958634289,39.89177840402928],[-84.81270854650369,39.90913950143982],[-84.81247574271637,39.92268118982277],[-84.81203267573324,39.94420568356627],[-84.8115982098988,39.97075027992315],[-84.81121560823595,39.98611304879787],[-84.81084168678342,40.00529293455789],[-84.81018671976751,40.034258048961746],[-84.80958673355522,40.04889949164446],[-84.80919111869045,40.07816162346048],[-84.80811848703759,40.121589910983744],[-84.80723890481593,40.15102175236174],[-84.80635724534281,40.17931664974213],[-84.80587372739686,40.1973397663478],[-84.80542091354151,40.2229274945162],[-84.80511781631428,40.23767445424175],[-84.80483466822776,40.245709385054305],[-84.80483872885533,40.253078721456816],[-84.80422677522566,40.281959787893705],[-84.8039073185909,40.294804879020674],[-84.80364810954441,40.30967282515003],[-84.80366974494304,40.33810405297527],[-84.80389257647361,40.35275943034502],[-84.80402135202681,40.369241345461155],[-84.80405441095648,40.38203813368976],[-84.80420670552323,40.40471645237467],[-84.80404478200559,40.42516155460052],[-84.80343931623852,40.46589412876631],[-84.80303118004791,40.48612343794708],[-84.8028663452118,40.49874607593195],[-84.80269305626233,40.51847669356124],[-84.80267687353626,40.53860116934772],[-84.80261401807515,40.552315550946275],[-84.80240979011494,40.57825355607154],[-84.8022815574979,40.60268100255292],[-84.8021949804465,40.63052396252367],[-84.80230336659478,40.674312144298945],[-84.80242974039227,40.67480413974935],[-84.80234231628263,40.689442102442285],[-84.80210390103561,40.6914869228468],[-84.80226988027745,40.7041822312717],[-84.80228206321658,40.73958206354945],[-84.80247510693471,40.765346785374476],[-84.80232823660504,40.77386107334754],[-84.80223026279711,40.79205511758779],[-84.80223294747124,40.80385245257782],[-84.80239981051878,40.85294895420613],[-84.80267491364627,40.88649884858221],[-84.80292024058377,40.930408580652966],[-84.80310346197646,40.95295023087325],[-84.80311326773749,40.96298724030013],[-84.8032801726634,41.000240426726066],[-84.80327935610933,41.01605243250542],[-84.80319782913087,41.03330517401097],[-84.80333832680354,41.069290405438124],[-84.80338808363723,41.09345081687101],[-84.80349468787391,41.12673326455036],[-84.80347605410306,41.149883633860966],[-84.80352344092398,41.157310770575016],[-84.80344561215254,41.1819541776518],[-84.80355641545927,41.21534679108436],[-84.80349788372696,41.22732282064417],[-84.8035081925891,41.247672904722705],[-84.80357377344303,41.2728710709537],[-84.80386694251888,41.30768914050261],[-84.80403469134149,41.33744641480729],[-84.80398371962445,41.35683048617414],[-84.80396733501019,41.38426242290297],[-84.80406513704139,41.41159165040389],[-84.80403600877648,41.44349932068433],[-84.80411481016348,41.44849242349298],[-84.80431627205513,41.48777452007929],[-84.80439680522065,41.48823203922168],[-84.80451161006897,41.512255966123874],[-84.80483375268385,41.547702579906414],[-84.80511683561829,41.562365794880975],[-84.80548613083818,41.593294843382964],[-84.80572540109115,41.61898363898992],[-84.80582350483405,41.65285030460176],[-84.80604965298295,41.67468988066372],[-84.80597549301211,41.69612683293417],[-84.76708026243348,41.697522401505466],[-84.70869688955102,41.699496196080915],[-84.68954908188101,41.69986024192668],[-84.65073205422367,41.70042021734532],[-84.61190624476589,41.70136838208544],[-84.59245168761608,41.7014378934964],[-84.5533809938257,41.70228503693074],[-84.53395679361309,41.70273837557248],[-84.49554262232697,41.703784673897694],[-84.47594108112548,41.70386245123366],[-84.45688368565484,41.70431020026],[-84.43822854938699,41.70497702807199],[-84.4369728186614,41.70494638071308],[-84.41043579272649,41.705591381472644],[-84.39675433973055,41.70584642467547],[-84.38017649511258,41.70640133792587],[-84.36041302649392,41.706887386841274],[-84.32849935207147,41.70747088126945],[-84.28935981708428,41.70852597823397],[-84.27001170393196,41.70913192561115],[-84.24972329402632,41.70954262792255],[-84.22149503667517,41.7102394377175],[-84.2105925874763,41.71071243835309],[-84.19255712849457,41.71110858307386],[-84.17311311759492,41.71176544205514],[-84.13457909095133,41.71300608256316],[-84.11985212591145,41.71355264079385],[-84.09564956077759,41.71425626531583],[-84.07134495928702,41.715040393614544],[-84.05677145646371,41.71557812831259],[-84.01796698699238,41.71668269960789],[-83.97683830531429,41.71749986047293],[-83.9380471420793,41.71853720531078],[-83.91885116389503,41.71921588179214],[-83.90876870291079,41.719476867646755],[-83.89959904797928,41.719890078464125],[-83.88040762807591,41.72027626582757],[-83.85948415930991,41.72114672850142],[-83.84000106355,41.72146696195338],[-83.82073264646506,41.72189523980954],[-83.80230634379012,41.722538523686524],[-83.78142361103295,41.72302183807765],[-83.749207110758,41.723991334724644],[-83.70167379567407,41.72555952540766],[-83.68553792544891,41.726556787221355],[-83.66868218565774,41.726927978918425],[-83.65582267900174,41.727147800660084],[-83.65056552654622,41.72740215578657],[-83.63989075792895,41.727667510507494],[-83.62463560323343,41.72816233455672],[-83.61367282785599,41.728657929548646],[-83.605560095351,41.728746559160236],[-83.56694408593674,41.72963708740755],[-83.5476688072389,41.730129157577636],[-83.50916173729844,41.731434409798176],[-83.49243699608138,41.731924600425934],[-83.45523279983931,41.73280861647504],[-83.45512835461186,41.72975875561024],[-83.45584303517897,41.72744257593657],[-83.45945688789367,41.727418901952575],[-83.46086437540987,41.72702351828253],[-83.46175744533342,41.72580764808224],[-83.46444205781053,41.72469197955567],[-83.46734641383252,41.7225642986056],[-83.46894824224648,41.72057163037568],[-83.46990124317618,41.71875249522269],[-83.47012002091411,41.71678334221048],[-83.47168754422312,41.71525155351787],[-83.47171487055849,41.71431995248997],[-83.47308684947492,41.71171330140912],[-83.47305161486855,41.70949713957021],[-83.47370479155063,41.70773678723215],[-83.4747343260785,41.70745962797132],[-83.4739313834777,41.70561998976865],[-83.47458481557058,41.70451506981462],[-83.4777820656185,41.7037788374901],[-83.47855307881973,41.701545228009806],[-83.47734999173913,41.69870961849507],[-83.47601422579916,41.69817062544199],[-83.47360843383974,41.698069707969275],[-83.47209950283826,41.69702237663096],[-83.46964889038821,41.69640404013584],[-83.46601661116361,41.69140464574973],[-83.4659305331902,41.68950303737498],[-83.46482624798078,41.68940355951925],[-83.4636950350319,41.69381111765439],[-83.4626135882854,41.6938197637639],[-83.4634380620984,41.690803222961456],[-83.46264305083155,41.69062495415398],[-83.46109031801075,41.69590273444893],[-83.46000701642079,41.69578298094193],[-83.46104606754513,41.69203435381085],[-83.46011239596876,41.69188929483109],[-83.45881511797863,41.6966319156345],[-83.45595762204366,41.69803965720235],[-83.45175267445586,41.69706570930911],[-83.45063599814222,41.69760392255388],[-83.44944835227774,41.70046072537363],[-83.4491138399136,41.69626328037396],[-83.44775360497263,41.69970894665584],[-83.44587704344501,41.69951711798985],[-83.44263058619212,41.69592028291837],[-83.44049172445092,41.69512346950055],[-83.44475320509692,41.69954851877852],[-83.44498055556362,41.70102533511989],[-83.44355020691502,41.70471683938061],[-83.42771334150332,41.71221339867927],[-83.42021613939822,41.70330895032732],[-83.43372709187334,41.69684840186075],[-83.43464901449939,41.69655064312498],[-83.43682271875969,41.694567686084014],[-83.43168910466122,41.690572682709266],[-83.43133353528056,41.691355854293136],[-83.42922650307385,41.69131823197523],[-83.42598953976126,41.690067346535415],[-83.42100949025391,41.689620032713265],[-83.41917877588082,41.689949189501746],[-83.41584408956966,41.6897869955027],[-83.41464863096859,41.68914395743394],[-83.41144509967947,41.68929581974159],[-83.40973786381159,41.689964354276775],[-83.40977223556078,41.69111943011277],[-83.40725522045464,41.691343999334535],[-83.4053732157196,41.690978925171294],[-83.40262965138179,41.69123695032564],[-83.40076073125907,41.69077957462997],[-83.39985364011683,41.6897693068769],[-83.39829383989725,41.68979858296554],[-83.39761169353142,41.69112913929002],[-83.39543518652988,41.691372157025256],[-83.39464927894129,41.69200528195725],[-83.39246300177749,41.6911461595781],[-83.39086561334962,41.69120404885425],[-83.39029977123457,41.690237162290785],[-83.38689420838735,41.688334357630204],[-83.38157675224278,41.68626119886873],[-83.38008757856808,41.68663008859962],[-83.37567177503063,41.68589678530934],[-83.3704386419474,41.68630675021524],[-83.36967070243801,41.68687579356219],[-83.36693829537751,41.68653047219938],[-83.36490996905849,41.68577956878127],[-83.35987855653885,41.68606724312257],[-83.35842733597308,41.68682535295077],[-83.3520948564488,41.687047469056715],[-83.35158231501748,41.6880186531016],[-83.34952511268533,41.68983396688539],[-83.3456723973573,41.691416326864875],[-83.34356793553063,41.69190712174338],[-83.34030058326897,41.69555427717264],[-83.33892889090141,41.697803580155295],[-83.3382696553919,41.700696417859966],[-83.33858449155068,41.70321043999343],[-83.33594736701944,41.705642135481355],[-83.3303375101259,41.70323210688668],[-83.32931306766955,41.702604779477824],[-83.3237364551221,41.697451268673746],[-83.32171700630512,41.697032658468075],[-83.32062161467591,41.69599466090128],[-83.31742187717022,41.69493199162505],[-83.3148871525285,41.69294334502202],[-83.31303684780526,41.692020235029425],[-83.30789172650337,41.688780249206246],[-83.30560027995728,41.68772538324452],[-83.30563900489358,41.68700571091077],[-83.30898482316523,41.68410913725517],[-83.30970954567151,41.683048176474024],[-83.30875880541375,41.681023893439786],[-83.30619619671127,41.67900680067017],[-83.30706538580039,41.67737076970885],[-83.30571622865158,41.67641232860368],[-83.29931527633455,41.67556191273252],[-83.29516047469669,41.67598628414516],[-83.28902512934118,41.67600891023415],[-83.28793936910452,41.675736114284675],[-83.28607135596648,41.67361840210965],[-83.28313206403666,41.67577097805283],[-83.27988064861628,41.67374367374369],[-83.2781049010555,41.672234803394296],[-83.27066048931655,41.668022553319695],[-83.2640321223468,41.664984655791564],[-83.2578503401551,41.66186215338458],[-83.24830662127306,41.65617218086791],[-83.24752232737625,41.65627728340179],[-83.24366076857375,41.653904117469594],[-83.23857156272354,41.65118125538243],[-83.23774454325853,41.651577982579326],[-83.23672573345316,41.64951940842361],[-83.2352442447023,41.64841566575333],[-83.21755693748648,41.63980756524863],[-83.20789940956654,41.635238065742215],[-83.20492081157167,41.634208958394616],[-83.20129390484392,41.633857919107285],[-83.19741817965684,41.63252829444295],[-83.1951822477932,41.63131558893883],[-83.19040362972018,41.62953801352631],[-83.18754920920567,41.62871146585626],[-83.18502862008444,41.628480026860046],[-83.18169140891237,41.627571780333376],[-83.17378962262222,41.624557025443266],[-83.1695942546547,41.623195268363474],[-83.15417222720002,41.61896188986174],[-83.15325942664252,41.61905250571971],[-83.1475730919552,41.61758820312477],[-83.1418541991363,41.61668570465261],[-83.13496279528545,41.61522722774838],[-83.12996565982907,41.615482033044394],[-83.12738537813033,41.616381056943446],[-83.12095850658878,41.61482443180238],[-83.11411790761507,41.61420370545418],[-83.11089286966667,41.61432818354905],[-83.10505490330654,41.61314831594855],[-83.1034295626081,41.61319570775977],[-83.10198252302632,41.612422145008274],[-83.09519669304791,41.610194357476246],[-83.09056017896059,41.60848165520993],[-83.08258033073197,41.60489487577775],[-83.07829193207867,41.60265166764829],[-83.0721513046802,41.598871956476565],[-83.06820289838934,41.59623392342819],[-83.06574404116651,41.5942123913097],[-83.06270861637252,41.590722375414074],[-83.06100495969916,41.587935452952024],[-83.06111859194225,41.58634456780208],[-83.05985888129118,41.585864828520975],[-83.05976041057464,41.58467973948598],[-83.05568517898045,41.58158477147043],[-83.0519664340393,41.57785340633535],[-83.04759826216927,41.57180387586811],[-83.04483384494175,41.56892073432578],[-83.04151453926892,41.565882110241816],[-83.03943421971569,41.56433824062359],[-83.03939965946606,41.563532900984534],[-83.03732561076733,41.561873160674374],[-83.02896270245573,41.55648735581274],[-83.02773587850957,41.55556082659973],[-83.02103794779013,41.551393917093044],[-83.0164196210323,41.548712820463415],[-83.0143201973901,41.54820065582338],[-83.01315877191757,41.54661026725274],[-83.00532666714999,41.54251334148113],[-83.00380157295281,41.54148604497752],[-83.00024698109658,41.54009989101503],[-82.99878208797081,41.538104533140505],[-82.99197512078709,41.53448502615599],[-82.98927418214065,41.53287351008254],[-82.98394573380338,41.53030497092673],[-82.97450985725281,41.526389168583066],[-82.97167006826128,41.52552167713848],[-82.97051558215794,41.524368856682734],[-82.96853124377043,41.52409829670193],[-82.96586933625031,41.52305972750717],[-82.95989366540837,41.52177000095972],[-82.95802078265956,41.520752349194645],[-82.94403368033679,41.51787125727339],[-82.94233819410256,41.51815465690568],[-82.94123506089474,41.517217408828934],[-82.93724378757804,41.516985269471114],[-82.93611230270763,41.51907435991533],[-82.93524013687062,41.518987540457026],[-82.93651769929012,41.51656193355108],[-82.93451062987731,41.515357596750945],[-82.93184921883118,41.51471212091008],[-82.92896572862698,41.51451270230836],[-82.9247515130836,41.51464537280257],[-82.92373130363698,41.51499576761441],[-82.91883676087967,41.51519919458902],[-82.91717594854235,41.51606547393092],[-82.91037500473843,41.51635110530685],[-82.90930494687956,41.51732602324646],[-82.90577795064395,41.51723441791158],[-82.90441396837699,41.51800170523404],[-82.89937563634159,41.51920722123969],[-82.89856274626155,41.520520956920244],[-82.89649623785141,41.5195392533298],[-82.89279556598198,41.520299878136846],[-82.889544225132,41.52153115649995],[-82.8782455767861,41.527238519394295],[-82.87258062868024,41.530876337724344],[-82.8687978304584,41.533653747942246],[-82.86829015503949,41.53514520499404],[-82.86657406425097,41.536783688935266],[-82.86325727544803,41.53913424012577],[-82.86204532141608,41.5404867910714],[-82.86240151303383,41.54134133896396],[-82.8611407015569,41.54297593280783],[-82.86172666503401,41.544177112835946],[-82.85766090824146,41.54689713218544],[-82.85662638067228,41.549238146070266],[-82.85645169088336,41.551051840004725],[-82.8553763300336,41.552341008479644],[-82.85616124818428,41.55443376105867],[-82.85566571154438,41.5561067690477],[-82.85419057043055,41.557844478154784],[-82.84986615975724,41.55869016478384],[-82.85094550889765,41.55975272692397],[-82.85169642785917,41.561444200321894],[-82.85098485944158,41.56300452751982],[-82.84958437020117,41.56393700501455],[-82.8502252606695,41.5658726425207],[-82.8514293395928,41.56564184413668],[-82.85219116530006,41.56318977464959],[-82.85409046516035,41.56329082039451],[-82.8551900680807,41.56414498113023],[-82.85658092703677,41.56761510427024],[-82.85506155434531,41.569255041584064],[-82.8543579875708,41.5711093124134],[-82.85584085002793,41.573368953662424],[-82.85888613423113,41.57432167449247],[-82.85966692885482,41.57507164427071],[-82.85957102167687,41.57671222082156],[-82.85780847985632,41.5785980047483],[-82.85516061180326,41.58029868506894],[-82.8527551910788,41.58354817621139],[-82.85084030517515,41.583601375292005],[-82.84721993700775,41.58556635767993],[-82.84613219941026,41.58555878581928],[-82.8413147503115,41.58663310835737],[-82.83907342426386,41.58735602135758],[-82.83432185780941,41.58706223309408],[-82.83164262666148,41.58471982121338],[-82.82822054875611,41.58108226770736],[-82.82570330371155,41.5778180841623],[-82.82301149648981,41.575161386304366],[-82.8230416504623,41.573895052483266],[-82.82126098964918,41.57169987092568],[-82.81911407293964,41.570222394990964],[-82.81734200686367,41.56953434581903],[-82.81525563930899,41.5667187562784],[-82.81278367091241,41.5654872040828],[-82.81130287338333,41.5660671769288],[-82.8088780073803,41.56318774095525],[-82.80525419448487,41.56018209064651],[-82.80327702092731,41.55816806554602],[-82.80204581280955,41.55618713459654],[-82.7984941480123,41.551484347840756],[-82.79477122364914,41.54714087690014],[-82.79262403042182,41.54517377240068],[-82.79038571141393,41.54368535891637],[-82.78716324389104,41.54208246374733],[-82.78552501544695,41.541611813156976],[-82.78312801179773,41.54172249014085],[-82.78111449688134,41.5406496177374],[-82.77612051809072,41.54033834695299],[-82.77321174149147,41.54037603756177],[-82.7696098368587,41.54088212014152],[-82.76966429230937,41.541535611389314],[-82.76363840256646,41.543225662489505],[-82.75726956218934,41.54469830257434],[-82.75289369958115,41.54603811545878],[-82.75022317841271,41.54644438275671],[-82.74383545933418,41.54569502549451],[-82.73993863944632,41.54494425105141],[-82.73764120252818,41.54395679151807],[-82.73542849325702,41.54348263487129],[-82.73150735168524,41.54312070548021],[-82.72860685150162,41.54359460082937],[-82.72840453409576,41.5428037052461],[-82.7246749417559,41.54250345461347],[-82.72256317079197,41.542709657763886],[-82.71835583659995,41.5418809246965],[-82.71452671910708,41.53942921459063],[-82.71419502849352,41.53758584858276],[-82.71127021589797,41.536252663433466],[-82.7135082283872,41.53378442218993],[-82.7135886122609,41.530865047133744],[-82.71252288642492,41.52865269570943],[-82.71167303609816,41.5282563913942],[-82.71407737358881,41.52413362063332],[-82.7164626414383,41.52271952463278],[-82.72002250093072,41.519910054738055],[-82.72204564877904,41.51723937423132],[-82.72083923634123,41.514709516001595],[-82.72140512791013,41.51415463705853],[-82.72004279015205,41.510585040396435],[-82.71866515578837,41.50805645002254],[-82.71413900694014,41.50173758141725],[-82.71463152264054,41.50078207620716],[-82.714474116193,41.498657413932534],[-82.71302947023156,41.49488321844152],[-82.71322595250685,41.49231834755042],[-82.71195577422203,41.49012275120736],[-82.71401493158454,41.48732582837221],[-82.71539104673865,41.487186232848096],[-82.71559632169259,41.48848090944987],[-82.71451236664181,41.49341439276784],[-82.71549573839724,41.497172126872314],[-82.71958684579795,41.50001258502764],[-82.72075146692741,41.50171166341264],[-82.72005450134533,41.50312018013867],[-82.71936323189553,41.50670769346699],[-82.72039169598652,41.508763073997585],[-82.7219019363308,41.51004865715939],[-82.72270990953771,41.51287412421138],[-82.72269249574603,41.51431674421128],[-82.72599692520653,41.51377689180065],[-82.72671207392837,41.5119742880295],[-82.73163342305413,41.5122397944979],[-82.73342889727384,41.511721082714246],[-82.72980007238145,41.50384266711265],[-82.72717042188975,41.502307347618306],[-82.72922281791283,41.49939178706259],[-82.73032355668298,41.49478875959705],[-82.7314232590876,41.49227782162582],[-82.73227699129363,41.49236741661068],[-82.73479008993687,41.49045578042433],[-82.73759742287105,41.489428495662914],[-82.74060966090074,41.48920959698595],[-82.74134708440604,41.49186902031123],[-82.74242386059221,41.49325358553451],[-82.74175718160343,41.494580743112714],[-82.74154728876593,41.496977506571184],[-82.73883609732661,41.49917428373375],[-82.73505182802889,41.50062129428525],[-82.73265992534783,41.50262410683056],[-82.73007090990983,41.503760084605624],[-82.73374896446867,41.51177777885999],[-82.73941409604289,41.51149757626527],[-82.74133558769489,41.512134852907735],[-82.74582369014028,41.511917354748135],[-82.75080170128564,41.51191399389911],[-82.75020055073745,41.51043315353879],[-82.75201139841272,41.51062372963848],[-82.7538799098695,41.51016160651501],[-82.75565375891598,41.5091096425094],[-82.76164332768028,41.50444555692768],[-82.76418251409541,41.503152258071474],[-82.77067553132107,41.50228746530592],[-82.7733379329639,41.50303117220818],[-82.77472235432543,41.50513144759882],[-82.77821837114763,41.50639377415903],[-82.78045814651423,41.50648223743236],[-82.78355222593194,41.505475357959135],[-82.78680844987402,41.50569672288346],[-82.78829512880307,41.5067344415518],[-82.79042912359299,41.506909805845794],[-82.79340566955541,41.506517267411006],[-82.79618272005517,41.504827058286715],[-82.79860832400436,41.505178553891625],[-82.80252478711711,41.506404394896066],[-82.80570571883283,41.506309598521995],[-82.80729981335041,41.50551764348924],[-82.8120591572309,41.50405863188442],[-82.81542683121779,41.5023955015556],[-82.81898236287718,41.4984618616349],[-82.8210361317436,41.49137865096738],[-82.82343475593979,41.49053644586591],[-82.82580153779021,41.49132577477863],[-82.82799899551733,41.4940154333681],[-82.83060493256414,41.49629845747605],[-82.83223286862064,41.49717283276893],[-82.83277047987481,41.49599589161443],[-82.82937866536018,41.485377074955196],[-82.82985826491968,41.48529828209925],[-82.83297271171192,41.49596410687168],[-82.83442188358799,41.497815447308426],[-82.83626728491025,41.4993950796052],[-82.83605821749526,41.49582341730866],[-82.83409143732828,41.47931017287869],[-82.83451939158083,41.479274787191756],[-82.83657886444894,41.49580279288817],[-82.8373192222494,41.499846904832374],[-82.83847412763448,41.50049441381421],[-82.84412832780244,41.50184276056356],[-82.85050391611317,41.499687135834364],[-82.85401106430132,41.49935390024766],[-82.85819861024099,41.496500889743636],[-82.85840967456897,41.495378255566244],[-82.85972636468081,41.4944603556215],[-82.86188652012764,41.494752791675474],[-82.86513954804232,41.492645965144604],[-82.86900673599612,41.49211457853262],[-82.87074342783089,41.49115684031639],[-82.87222570779002,41.491128049521436],[-82.87474851889806,41.49024321983738],[-82.87870592824576,41.48996175322779],[-82.87951478111826,41.48935702639434],[-82.88231807665181,41.48855951361299],[-82.88493331737433,41.48867209791678],[-82.88725088442361,41.48936229396454],[-82.89035053114814,41.488421192387015],[-82.89409996471169,41.48920188698976],[-82.89697500355304,41.48840370594266],[-82.90113773004495,41.48863472027255],[-82.90301019056837,41.48767749709929],[-82.9057709073617,41.48898368070998],[-82.9088494203585,41.48835396748931],[-82.91092981383736,41.488613040172226],[-82.91159557397263,41.48788611647398],[-82.913290579395,41.48827604605671],[-82.9216343441085,41.48860157897865],[-82.92695757520737,41.48788944130429],[-82.93192426420377,41.48679258621289],[-82.93726522863861,41.486215172723945],[-82.94413254111674,41.4871680127509],[-82.94613583928326,41.48778984880748],[-82.95259138138228,41.488272485176005],[-82.95393586190109,41.48901860105185],[-82.9560258127769,41.48894292458152],[-82.9596441631791,41.48799149096321],[-82.96412675276734,41.484583535751526],[-82.96551965855681,41.483116609140346],[-82.96613995976341,41.48133375902212],[-82.96785423879534,41.48036515071553],[-82.96834656954252,41.479002654775094],[-82.96827571744936,41.476935517665],[-82.97001865507657,41.474008226473345],[-82.9713914125975,41.47325614328988],[-82.97182462898328,41.47101424507795],[-82.97410722841207,41.46850472205026],[-82.97355766962029,41.46621359382285],[-82.9820410026182,41.46781406917712],[-82.98351270180187,41.46709860954422],[-82.98611203731117,41.46698453802074],[-82.99021708063496,41.464499069233696],[-82.99309087418101,41.459855506627584],[-82.9961750362564,41.45999388546604],[-83.00057201855105,41.4623809757123],[-83.00426807156323,41.46272689255121],[-83.00913808765652,41.465819421415716],[-83.01114343950319,41.46469884617402],[-83.01385474803948,41.46444412711889],[-83.01637387906386,41.46331982254281],[-83.02183518867125,41.462605467438046],[-83.0264806580685,41.46482414243726],[-83.02921281520105,41.464610738683696],[-83.03201470061994,41.465145742749606],[-83.03488031178749,41.46453081778672],[-83.0392417809452,41.46442014847383],[-83.03960925432979,41.46385886949803],[-83.03961512325601,41.46053193711456],[-83.03895617477635,41.4572227406238],[-83.03763116222237,41.457222563733346],[-83.0367047704995,41.4550338082222],[-83.03119976979298,41.45431617188242],[-83.02469740729416,41.45325295611952],[-83.02126762985843,41.45309080561728],[-83.01958099786559,41.45249655267054],[-83.01929416862032,41.45005490095604],[-83.01482948116384,41.448311456600464],[-83.01181580864689,41.44606601178937],[-83.01104688322121,41.44488576692878],[-83.01167807177444,41.44360992631478],[-83.01111915619275,41.4426967688482],[-83.00812929623447,41.44307400803632],[-83.00755675751726,41.4413387591377],[-83.01064499335452,41.4405513980271],[-83.01097129762611,41.43750696013747],[-83.01149504415936,41.435755710056895],[-83.01004790809029,41.43403831608911],[-83.00734474458433,41.43205211401062],[-83.0030148793791,41.43135979208119],[-83.00240911863396,41.43014585904048],[-83.00093817066862,41.43056838869349],[-83.0004415744431,41.4323520617667],[-83.0034640843378,41.43384142050194],[-83.00348614076678,41.437350884966456],[-83.00292436220535,41.438355622471235],[-83.00150976415668,41.43840014805983],[-82.99776793117255,41.440714840063215],[-82.99620729419078,41.44295795899193],[-82.99416445096705,41.44523273571977],[-82.98901597296916,41.44716624607371],[-82.98732249406648,41.44859179007721],[-82.9869609338685,41.451094550607245],[-82.97715877107814,41.453596603239845],[-82.97635183091454,41.4535224195797],[-82.9749611917964,41.45139550265638],[-82.97123493685041,41.44934309062384],[-82.97055595913119,41.44834347389998],[-82.96856533303753,41.44342299566671],[-82.96881923677485,41.44299069199789],[-82.96626466132366,41.43937214720743],[-82.96541331488179,41.439143462707946],[-82.96395144940097,41.43689464800446],[-82.96077372775474,41.433974259831054],[-82.95905691593107,41.4308163000336],[-82.95545507781766,41.42575006255682],[-82.95221361534587,41.42420308270069],[-82.94853070060907,41.42193784068701],[-82.94739181861601,41.42179307105733],[-82.94454858125101,41.41976790055184],[-82.9405641058128,41.419223945343305],[-82.93904827145357,41.420455968996585],[-82.93587477714553,41.42036819341543],[-82.93436144981109,41.42096212292643],[-82.93030206166105,41.42004572261683],[-82.92864481414973,41.41936053710343],[-82.9253590923418,41.41865573684788],[-82.92253810570449,41.419005776674275],[-82.9222037598852,41.420397289756195],[-82.9202848006328,41.42157334879673],[-82.91895291603853,41.421682305073375],[-82.91588969680743,41.423443162493186],[-82.91222029500906,41.42428255626719],[-82.90615005969022,41.42740904584485],[-82.9062767931847,41.428188189016424],[-82.90185994235728,41.430520990529395],[-82.90103280878827,41.43198894991611],[-82.8971594142562,41.432324622096644],[-82.89592967343178,41.434245616600926],[-82.89316512321301,41.433988252025216],[-82.88925188652955,41.43461769976762],[-82.88814729595363,41.43578059479222],[-82.88857095591702,41.43705444375845],[-82.8853935030044,41.43972374242991],[-82.88387696629884,41.4399456539113],[-82.88097948280475,41.442907471825585],[-82.87097021245846,41.44027483923525],[-82.86795303622563,41.441226389058976],[-82.8638874172094,41.44105629163149],[-82.86179063730926,41.44127473223693],[-82.86014931677838,41.44083072148799],[-82.8592360824921,41.441701748651454],[-82.85757713957233,41.44165739023338],[-82.8557254965261,41.44235849660078],[-82.85289277163899,41.44480380763667],[-82.84933633128573,41.44551719314111],[-82.84723450222607,41.44670239453507],[-82.84613939439652,41.448614722820054],[-82.84364048156742,41.44942809682221],[-82.8418728275737,41.449087865398255],[-82.83915671315762,41.45058557382234],[-82.83794079680297,41.44983833373452],[-82.83512784774226,41.451369067511585],[-82.83437371412856,41.45267849713388],[-82.83173926541852,41.453669990729345],[-82.8289044741253,41.45796474291097],[-82.82804723292043,41.46310493045808],[-82.82861160137816,41.46522462100064],[-82.82931988324216,41.470617129625204],[-82.82998234682371,41.47197435761272],[-82.82944968035648,41.473031526178374],[-82.82705709734176,41.47369252910372],[-82.8253147384434,41.473302138414404],[-82.8230999113827,41.47084702534832],[-82.81981363084296,41.46924949714896],[-82.81682759279143,41.469020303238395],[-82.81384521031441,41.46983665496073],[-82.81060431424241,41.4720876944578],[-82.81073205110907,41.47492882036919],[-82.80379866330433,41.46679210773043],[-82.80272296820588,41.46578347798438],[-82.80043625323648,41.466605661136896],[-82.79864801391376,41.46636968191986],[-82.79548474693527,41.46668714962504],[-82.79380096858546,41.465318643439794],[-82.79226006026185,41.46330267758544],[-82.78919531752383,41.46248610086553],[-82.78739166093341,41.46235986327859],[-82.78497771892161,41.45896352279338],[-82.78338589015989,41.455683158691706],[-82.77922527901816,41.4526376942441],[-82.77241161320323,41.44889848381855],[-82.7688714749442,41.447135798006734],[-82.76371084821062,41.445272822595996],[-82.76092515063496,41.4447543778173],[-82.75448164853506,41.44415252379602],[-82.75245108985568,41.444833964328396],[-82.75139447590117,41.44645162651579],[-82.74772198937268,41.44812365788904],[-82.74517768610266,41.45000132369331],[-82.7431659494744,41.45070299181758],[-82.74072441466696,41.45103015517586],[-82.73798460383276,41.44822902918615],[-82.73637897817119,41.44878292041784],[-82.7368792228346,41.450758398042794],[-82.73362942344087,41.46042468451419],[-82.73103433796214,41.461127276462804],[-82.7340549699675,41.45193385215514],[-82.73223158637767,41.44970276105185],[-82.73032131594424,41.44995939425461],[-82.7276501331636,41.451400944093685],[-82.7283578659053,41.45404078700211],[-82.72727223278703,41.45431343602829],[-82.72670076877783,41.452819755700084],[-82.72565069360243,41.45255861462643],[-82.72352958382737,41.45471037445113],[-82.7209586283951,41.45610343997029],[-82.71914962176108,41.456116744949114],[-82.71782194501272,41.45792113019477],[-82.71438280885548,41.45924507425946],[-82.71296069552737,41.45880280600667],[-82.71061612454994,41.45994913194536],[-82.70801732062657,41.45954782809769],[-82.70599699975976,41.4603202400686],[-82.70659819503636,41.461531493256736],[-82.70419454889083,41.4621545267548],[-82.70249832184366,41.46157168418034],[-82.7010157924865,41.462168440522234],[-82.69896177792998,41.462110042486906],[-82.69689986463366,41.46060483411869],[-82.69885398441883,41.45904153084657],[-82.69252912625502,41.45466206019957],[-82.69121363516648,41.45619194541242],[-82.68916672178399,41.455265093801415],[-82.68797057645014,41.45409211516976],[-82.68580095683674,41.45383030436466],[-82.68377950148286,41.454257700992635],[-82.68334808214027,41.45311211771884],[-82.6807384745304,41.453031218856125],[-82.6794815991801,41.45451598583682],[-82.67705963741247,41.454306856087676],[-82.67756665200771,41.45224101540205],[-82.67545298382566,41.45202365765612],[-82.67501088104498,41.453403071149225],[-82.67384078898463,41.45346884170681],[-82.67267010941745,41.460080713146084],[-82.67256937149997,41.462993419161364],[-82.67420578116123,41.46384816628182],[-82.67441652259312,41.46527556697985],[-82.67649933416517,41.46998837058022],[-82.67714397774554,41.47013733596149],[-82.68126375401083,41.47636982367357],[-82.68125350717271,41.47683424875378],[-82.68448744592605,41.48001062806824],[-82.68644621818513,41.48101128569109],[-82.68831242793853,41.480414208201076],[-82.68914020365463,41.48156947298954],[-82.69183101541854,41.48234392633842],[-82.69344084396498,41.483321989269285],[-82.69393043617562,41.48686017334435],[-82.693770369085,41.48859675580924],[-82.69171595865629,41.48914517340452],[-82.68941484439279,41.492044490918246],[-82.68669112925642,41.49336107149019],[-82.6853765716535,41.490295756821986],[-82.6834351583391,41.48726458334107],[-82.675482805537,41.47801522761851],[-82.67234100647843,41.47473390708468],[-82.66543615168251,41.46785069539833],[-82.65827634264757,41.46132561858724],[-82.64843850396805,41.45294962142472],[-82.6399715464608,41.44640204081138],[-82.63274851864996,41.441221972227886],[-82.62532983836064,41.43614594819585],[-82.61912261962921,41.43233374486249],[-82.61634307525179,41.4299100454718],[-82.61074288487498,41.42610804883335],[-82.60667820346879,41.42316831121231],[-82.60262169806711,41.42058063685341],[-82.6012708490477,41.420477308305486],[-82.59780648894018,41.4180704714322],[-82.59052210777246,41.41411524697365],[-82.58939054754886,41.414121584899],[-82.58253343816416,41.41054601822956],[-82.57144346963194,41.40808077412241],[-82.56956940722793,41.40707192596549],[-82.56745339051031,41.405250489542716],[-82.56277266042395,41.40263595471439],[-82.5610397549833,41.40105672013521],[-82.55914129875624,41.40004528626014],[-82.55267331923174,41.39768237695713],[-82.55077600201857,41.397903220820616],[-82.54976842567865,41.39728748171922],[-82.54783463255052,41.39764030957025],[-82.54389260728937,41.3962443619065],[-82.5387822595343,41.393467676575845],[-82.52773094139279,41.388607297517964],[-82.52435163029071,41.38732611434751],[-82.51699516818464,41.38499473128025],[-82.50974885075905,41.38316899325206],[-82.49918990759903,41.381348777452445],[-82.4972122270865,41.38143675910811],[-82.48867388313263,41.38061643703852],[-82.48463081543916,41.38086913210608],[-82.4779457706948,41.38172075483632],[-82.4702674547481,41.38381516787642],[-82.46111422356472,41.38599104814507],[-82.45793874095465,41.38717281497592],[-82.45609140895864,41.38823944236532],[-82.45309830434755,41.389278150581085],[-82.451118,41.390831999999854],[-82.4485132636681,41.391113875931104],[-82.44282520300045,41.39351575150212],[-82.4391823496013,41.394196265453814],[-82.43605729777903,41.395201540235924],[-82.43370575121764,41.396311641444434],[-82.43100411276393,41.397036427338236],[-82.4267610638104,41.39888239528246],[-82.42525615588261,41.39985524730378],[-82.4188506864759,41.40260171088432],[-82.41650524548345,41.404239441503194],[-82.41220320477223,41.405760251414954],[-82.40680389400929,41.408710167400834],[-82.39556636421818,41.41413048849949],[-82.39339529354508,41.415641380396416],[-82.38893867623337,41.417210609331946],[-82.38534496931781,41.41787278412261],[-82.3844677472271,41.41842753195297],[-82.38059626610607,41.419199352047016],[-82.37830906101988,41.42006067308748],[-82.37456191900267,41.4208709386888],[-82.37141385142947,41.42239695756471],[-82.36919878065086,41.42442460712623],[-82.36528544833095,41.42536101244792],[-82.36426155785448,41.4260679744117],[-82.3639157588954,41.4278132593418],[-82.36010841436328,41.42685140862907],[-82.35040837519121,41.42751614575961],[-82.3479393742987,41.42880067887692],[-82.34604464804296,41.42888852035977],[-82.34503059439145,41.42967982767744],[-82.3410703330972,41.430215023813744],[-82.33680849598456,41.43008556957288],[-82.33323137930685,41.43081018167773],[-82.33045713086965,41.43080593358825],[-82.3251792392361,41.430232606292435],[-82.32405484530408,41.430451432795],[-82.31919939442228,41.4302656785174],[-82.31727748129003,41.43051860229512],[-82.31011028398468,41.429866309797575],[-82.3047214537107,41.42974490518994],[-82.29545390827013,41.428535413442226],[-82.29156930776814,41.42869889509935],[-82.27787492428392,41.429937664183264],[-82.2722576116764,41.4302905043211],[-82.26645184774978,41.43139429353302],[-82.26072214858321,41.432745239319374],[-82.25507702668884,41.4344536941483],[-82.25244342302892,41.435813581564055],[-82.2517137376871,41.437224967897066],[-82.24783671241643,41.43789043913835],[-82.24284732054852,41.43967293890535],[-82.23794782849583,41.44182950228152],[-82.2366222757306,41.442637474457875],[-82.22920110599463,41.446166445486824],[-82.22517319123304,41.44865028335465],[-82.22372058652262,41.44907276524211],[-82.21977416573289,41.451803887394924],[-82.2175778707899,41.45259718934258],[-82.21675474117366,41.454257118215075],[-82.21438151531095,41.45485800196125],[-82.2106966418425,41.45625521191567],[-82.20802483935871,41.45825003402145],[-82.20403858839343,41.45944950369672],[-82.19992741900235,41.46176156320179],[-82.19194002937941,41.46543740426856],[-82.19031036448476,41.46691716271354],[-82.18855222790148,41.4677252730752],[-82.18810466159897,41.468717549889845],[-82.18863220161315,41.470087505822434],[-82.18755749474873,41.470838520006346],[-82.18717477692074,41.47221231660513],[-82.18594646059645,41.473596319490355],[-82.1826206994448,41.47225867446667],[-82.18202207195259,41.47308747289223],[-82.17873703651273,41.47181191708257],[-82.17666651751065,41.47178359247479],[-82.1737894258758,41.472715164552895],[-82.17196866110899,41.4728678575195],[-82.16626989550423,41.47425159990575],[-82.16320349450552,41.47540357379618],[-82.1612805461211,41.47563347493638],[-82.15467633638391,41.47745350347115],[-82.15253462192669,41.47783785884036],[-82.14810228893548,41.479526382471256],[-82.13932951736088,41.482374100929434],[-82.13840275289128,41.48286604856753],[-82.13081889008977,41.48513811480521],[-82.12677897931393,41.4864836700974],[-82.12246481454734,41.48762234272671],[-82.11722604159839,41.48965091861114],[-82.11435338304214,41.4899873569096],[-82.112484921206,41.49065433299812],[-82.10949501142815,41.491056864788966],[-82.09930864391174,41.49386734295907],[-82.09002297868105,41.495734842419616],[-82.08207075282893,41.49769535398798],[-82.08054615099472,41.498626318729556],[-82.07872116568315,41.49863702831669],[-82.06955197494841,41.50089396873072],[-82.06753641442815,41.50117989472281],[-82.0654034164698,41.501989155532684],[-82.0637690819956,41.50208230278477],[-82.0604997508495,41.50360739054268],[-82.05830097860195,41.503793869157064],[-82.05623359672202,41.504735302755115],[-82.05385135647924,41.5051640666921],[-82.04977522059714,41.50645163464966],[-82.04594132095075,41.50691816370975],[-82.0412196977607,41.50834841146294],[-82.04001711014813,41.50893185167487],[-82.03419571598565,41.510041675720736],[-82.02482415553307,41.51301687904593],[-82.0195304706393,41.513602847810525],[-82.01641397285354,41.51431137510076],[-82.01515963426739,41.51497174163341],[-82.01216027265208,41.51565822519328],[-82.00761566349402,41.514965894785526],[-82.00381818971981,41.51479748010668],[-82.00163426911668,41.51412895645654],[-81.99901875991755,41.513824193968006],[-81.99625076342937,41.51450206779292],[-81.99362898683988,41.51397949316667],[-81.99253027795986,41.512658136780885],[-81.988898047504,41.51284043118406],[-81.98743343459756,41.51233406551649],[-81.9864374725248,41.51099608251377],[-81.98286398306078,41.510297150215514],[-81.97884391110482,41.50861805550239],[-81.9771231087426,41.50850799655909],[-81.97549038121458,41.50764351652048],[-81.9701819674463,41.50594211725979],[-81.96814658736501,41.50501690888613],[-81.9676929147222,41.5041469162165],[-81.96510131195863,41.5026986315443],[-81.96355647451425,41.502351602906984],[-81.96256846144612,41.50114563026398],[-81.96029889273115,41.50066636694239],[-81.95829149198232,41.49885134836443],[-81.95786887963247,41.497799865195304],[-81.95324687631881,41.49538532810207],[-81.94807444084172,41.493822932943495],[-81.94618029798089,41.49296250810899],[-81.93821998896925,41.491176590238396],[-81.93689454418583,41.49142288030197],[-81.9297899641792,41.49016565164855],[-81.92403048661964,41.48969112075266],[-81.92115348278236,41.489803266930174],[-81.91666031793879,41.4893354689428],[-81.91441445434708,41.48879884493874],[-81.90559017611217,41.487565704845856],[-81.90361563971501,41.486919178093416],[-81.89962089807238,41.48626982379054],[-81.89717523997287,41.48662966151164],[-81.89378948452915,41.485507684398115],[-81.88954480122769,41.48532537658488],[-81.88722630680627,41.48473307005392],[-81.88371394324301,41.48443065007109],[-81.8813515017481,41.48387669760221],[-81.87589342961554,41.483185707476245],[-81.86747656650432,41.48285218072474],[-81.8620130480159,41.48310790230154],[-81.85678164667951,41.48422155568365],[-81.849866132211,41.48618101090004],[-81.84807942565472,41.48713138330155],[-81.8428242376232,41.48881642808369],[-81.84152060503393,41.48960755011352],[-81.83838764549171,41.49068338624964],[-81.83561659651618,41.49020826120969],[-81.83102724839432,41.49161274565072],[-81.82743444094044,41.49224237442376],[-81.81255633651065,41.495462851010004],[-81.81007724622476,41.495322925597975],[-81.79976956867787,41.49593915142111],[-81.79789985541625,41.49743864200594],[-81.79479142046645,41.497341693287474],[-81.79359606252673,41.495904798770056],[-81.79071596195996,41.4952909496166],[-81.78868133576071,41.495651636815296],[-81.7825435485898,41.49587527624483],[-81.78149320712423,41.494955462317115],[-81.77999322723434,41.495063640575864],[-81.77769368114595,41.49365820203274],[-81.77448384502148,41.49329114844818],[-81.77407616083394,41.49271304483777],[-81.76798015304499,41.491434504613146],[-81.76601800314647,41.49202039597785],[-81.76348927426648,41.491400837557585],[-81.7624621140748,41.49021688440124],[-81.75948745452361,41.48958568197089],[-81.75652580088249,41.489432943196725],[-81.74642693904407,41.48738795317929],[-81.74248308742034,41.48753933314142],[-81.7390838409962,41.48911204407918],[-81.73938402612369,41.49149102709915],[-81.73414734069833,41.493235785443844],[-81.7327925030587,41.49126732560479],[-81.7275627334668,41.49311640640835],[-81.72570480743664,41.495242785362855],[-81.72070600323302,41.49789590905016],[-81.71833034840192,41.49715815299498],[-81.71613951591479,41.49805039407383],[-81.71707309299765,41.49895544360153],[-81.71197228423192,41.50076346743268],[-81.71118219353227,41.501522980935114],[-81.71097660573665,41.5034439963662],[-81.70924302249969,41.50382907300853],[-81.70796995641562,41.504918780082114],[-81.69659270860116,41.511373107109335],[-81.69285272399807,41.51454808786257],[-81.66992402224953,41.525052172971904],[-81.65808911258611,41.52871696058505],[-81.65565026272542,41.530724582941254],[-81.64815960021744,41.534683025369176],[-81.64986327007338,41.535658456975526],[-81.64882328927972,41.53637339547423],[-81.64689386812127,41.534588561835236],[-81.64426441198897,41.53642524431329],[-81.64160632647724,41.537645274402564],[-81.640601725891,41.53910329937988],[-81.63813342549352,41.54054920710375],[-81.63643222289843,41.54282698532937],[-81.63402288005051,41.54382142295607],[-81.63210105687048,41.5420087015447],[-81.63080434498023,41.54285543357766],[-81.62924546189063,41.542914696669854],[-81.62673261351566,41.544525525064444],[-81.6219905603537,41.54710850217693],[-81.61328658889799,41.55279074645249],[-81.60968398124267,41.55476425600568],[-81.60696826609318,41.55697406326277],[-81.60102249136422,41.56072215107091],[-81.5995204211395,41.56092668742289],[-81.59895729590671,41.5619127241256],[-81.59596922155283,41.56365439491304],[-81.5943657208447,41.56494373928054],[-81.59165546336811,41.566409707987646],[-81.59006001442715,41.56855235263523],[-81.5893872425458,41.5701933872846],[-81.59133102984217,41.571629713806956],[-81.58769064563758,41.574213234218185],[-81.58556423195503,41.573311033826776],[-81.58473725457772,41.57472627045008],[-81.58332899381192,41.57362010778369],[-81.58056658031114,41.57465603075245],[-81.57556306323809,41.57827973381521],[-81.57310156772176,41.5803005713341],[-81.57066237799343,41.58296525278311],[-81.56768744741603,41.5850244762388],[-81.56585597988986,41.586995241502954],[-81.56398666007314,41.58695155404509],[-81.56299773653203,41.588349712388506],[-81.56102637243546,41.58966542157208],[-81.55939971624669,41.59133876680678],[-81.55637296339965,41.593573567431214],[-81.55514198407133,41.59525778280756],[-81.55327281473824,41.596320148643656],[-81.54634602200565,41.60286951196435],[-81.54464518499546,41.60394828040475],[-81.54194705533405,41.606353213105784],[-81.53405698390755,41.611652713094394],[-81.52938527344625,41.614321508021526],[-81.52542457582153,41.61604921143928],[-81.51923405385368,41.61766631095565],[-81.51786984189445,41.61766058246342],[-81.51415820848771,41.618479900817846],[-81.50639684695118,41.62213218671994],[-81.50470948901986,41.62266558259549],[-81.4991209365514,41.6254424885609],[-81.49488192350763,41.62782325896122],[-81.48646276939165,41.63281419442841],[-81.48511537067414,41.634251396044675],[-81.48017924132056,41.63778269332486],[-81.47445902683529,41.64301334634704],[-81.4686886173396,41.64792908136578],[-81.46748663772443,41.64839943556662],[-81.46331656006014,41.65224556227588],[-81.45949824446292,41.65657640037258],[-81.45027168748797,41.665377685715605],[-81.44415448193341,41.67218835977477],[-81.44063637133605,41.67499969540254],[-81.43661930717846,41.676833168786],[-81.4349755086416,41.6785411272858],[-81.43271671784339,41.679963251572545],[-81.4269255469908,41.68269246958439],[-81.42384522470365,41.68481709366511],[-81.4203147671659,41.68653199755874],[-81.41682335230952,41.68936616007097],[-81.41359340633277,41.69155997929119],[-81.41085061370136,41.69388866725004],[-81.40720543729398,41.69549120524887],[-81.40335038885507,41.69794395478705],[-81.39506671980465,41.70356540457044],[-81.39219335496473,41.70510275924589],[-81.39065076770945,41.70632660050658],[-81.38537101624956,41.709000917352206],[-81.37840801549454,41.712912309308635],[-81.3772272898156,41.71381705863894],[-81.37425912126119,41.71514103011535],[-81.36800733406196,41.7186999120044],[-81.36060750863307,41.72198039840854],[-81.35521955654937,41.725894333604685],[-81.35282601095666,41.72789469007306],[-81.351023267693,41.727865012814505],[-81.34577464754342,41.72956464362514],[-81.3421626229276,41.73167142504506],[-81.33847201711636,41.734179153170565],[-81.33732582513649,41.73410503317429],[-81.33457924366135,41.73533280689707],[-81.33061349523031,41.737670193494694],[-81.32773012123963,41.74000340176834],[-81.31940885601965,41.74342964406905],[-81.31530730004805,41.74464963753238],[-81.31272475993967,41.746038760122126],[-81.30769399114499,41.747777200947716],[-81.30136574024061,41.75051354381643],[-81.29494271968754,41.7546213790069],[-81.29129903691012,41.757177953224215],[-81.28751388956077,41.760250231294],[-81.28309995757928,41.764822140940616],[-81.28384859178075,41.76277324687122],[-81.28190524591992,41.76131249071],[-81.2794211053395,41.76087818847686],[-81.27821879410928,41.75911329919339],[-81.27216851092862,41.75881153674213],[-81.26820257358997,41.75833185402324],[-81.26400523862388,41.7581032962594],[-81.25993074239925,41.75928263892777],[-81.2564907078289,41.75952666436728],[-81.25442620734543,41.760295841335214],[-81.25254771258422,41.760307554095654],[-81.24847563640648,41.76133781422599],[-81.24506892093802,41.76247167124638],[-81.2431740234312,41.762793376911226],[-81.23848964199979,41.76428620485304],[-81.23466456800223,41.76634856612118],[-81.23138782083866,41.76755564636909],[-81.22837913646444,41.767424274309576],[-81.22575977217697,41.7685648955008],[-81.22294737763269,41.769256532727596],[-81.21861849902442,41.7711450737782],[-81.21307383803958,41.77426271200325],[-81.20988839930922,41.775833840971124],[-81.20364686685603,41.77857605868279],[-81.20218182400988,41.77975699531833],[-81.20070611386487,41.77958942023441],[-81.19878899291722,41.7801298081116],[-81.19117584124054,41.78433387923248],[-81.18505577619912,41.78690037777633],[-81.18169826835529,41.78730593629594],[-81.17844620913223,41.788599566438215],[-81.1742883098666,41.79083035651087],[-81.17282180308881,41.79131743218565],[-81.16770393633321,41.793845934907836],[-81.16324625228405,41.796451980444715],[-81.16016995776111,41.7972753553364],[-81.15624660803503,41.79926844538303],[-81.15274814568463,41.800624493479134],[-81.14822111070332,41.80328552524327],[-81.13829471848932,41.80653839260137],[-81.13073968450082,41.810505271123404],[-81.12485086053091,41.8130176185649],[-81.12027449688169,41.81390024957769],[-81.11195080275408,41.8176233304155],[-81.10861299427896,41.81741306025504],[-81.1037536051797,41.81912131027797],[-81.10048602797175,41.82069074734258],[-81.09717020012393,41.8219120785215],[-81.09106845193651,41.82289822557322],[-81.08638478872399,41.82437058300903],[-81.08533524960458,41.82503511622112],[-81.07690071302888,41.8282252010494],[-81.07035423640193,41.831198655853804],[-81.0686088695567,41.83105813742592],[-81.06187614151487,41.83220060301688],[-81.05845331381659,41.833043083531756],[-81.04982677817486,41.8380635131956],[-81.0468558408823,41.83901833344899],[-81.04332281202628,41.8391385114123],[-81.03481141734039,41.842312765876365],[-81.028821499398,41.84292386396995],[-81.02383056895076,41.84426158291207],[-81.020707307312,41.84536774374473],[-81.01858830457361,41.84563874758582],[-81.01327211716338,41.84771283056945],[-81.00733774207762,41.85071622624428],[-81.00375721569073,41.85299630192765],[-81.00231897024221,41.853311621226275]]]]}}]}
body, html {
/*background: #101316;*/
background: #000306;
color: #f3f6f9;
font-family: "Helvetica Neue", Helvetica, sans-serif;
height: 100%;
}
a {
color: #06c;
cursor: pointer;
text-decoration: none;
}
a:hover {
color: #09f;
text-decoration: underline;
}
.fullscreen-map {
height: 90%;
width: 90%;
text-align: center;
}
.county {
fill: none;
}
.state {
fill: #333639;
/* Set the fill-opacity to 0 so we get click events */
fill-opacity: 0;
stroke-linecap: round;
stroke-linejoin: round;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment