您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds a WV MapRaid area overlay.
当前为
// ==UserScript== // @name WME WV MapRaid Overlay // @namespace https://greasyfork.org/users/45389 // @version 0.4 // @description Adds a WV MapRaid area overlay. // @author MapOMatic // @include https://beta.waze.com/*editor/* // @include https://www.waze.com/*editor/* // @exclude https://www.waze.com/*user/editor/* // @license MIT/BSD/X11 // ==/UserScript== (function() { 'use strict'; // Enter the state abbreviation: var _stateAbbr = "WV"; // Enter the MapRaid area names and the desired fill colors, in order they appear in the original map legend: var _areas = { 'WV-1':{fillColor:'#7cb342'}, 'WV-2':{fillColor:'#f57c00'}, 'WV-3':{fillColor:'#ffea00'}, 'WV-4':{fillColor:'#01579b'}, 'WV-5':{fillColor:'#c2185b'} }; var _settingsStoreName = '_wme_' + _stateAbbr + '_mapraid'; var _settings; var _features; var _kml; var _layerName = _stateAbbr + ' MapRaid'; var _layer = null; function loadSettingsFromStorage() { _settings = $.parseJSON(localStorage.getItem(_settingsStoreName)); if(!_settings) { _settings = { layerVisible: true }; } else { _settings.layerVisible = (_settings.layerVisible === true); } } function saveSettingsToStorage() { if (localStorage) { var settings = { layerVisible: _layer.visibility }; localStorage.setItem(_settingsStoreName, JSON.stringify(settings)); } } function GetFeaturesFromKMLString(strKML) { var format = new OpenLayers.Format.KML({ 'internalProjection': Waze.map.baseLayer.projection, 'externalProjection': new OpenLayers.Projection("EPSG:4326") }); return format.read(strKML); } function updateDistrictNameDisplay(){ $('.mapraid-region').remove(); if (_layer !== null) { var mapCenter = new OpenLayers.Geometry.Point(W.map.center.lon,W.map.center.lat); for (var i=0;i<_layer.features.length;i++){ var feature = _layer.features[i]; var color; var text = ''; var num; var url; if(feature.geometry.containsPoint(mapCenter)) { text = feature.attributes.name; color = '#00ffff'; var $div = $('<div>', {id:'mapraid', class:"mapraid-region", style:'display:inline-block;margin-left:10px;'}).css({color:color}); var $span = $('<span>').css({display:'inline-block'}); $span.text('MapRaid Area: ' + text).appendTo($div); $('.location-info-region').parent().append($div); if (color) { break; } } } } } function init() { InstallKML(); loadSettingsFromStorage(); var layerid = 'wme_' + _stateAbbr + '_mapraid'; var _features = GetFeaturesFromKMLString(_kml); var i = 0; for(var areaName in _areas) { _features[i].attributes.name = areaName; _features[i].attributes.fillColor = _areas[areaName].fillColor; i++; } var layerStyle = new OpenLayers.StyleMap({ strokeDashstyle: 'solid', strokeColor: '#ff0000', strokeOpacity: 0.4, strokeWidth: 2, fillOpacity: 0.3, fillColor: '${fillColor}' }); _layer = new OL.Layer.Vector(_stateAbbr + " MapRaid", { rendererOptions: { zIndexing: true }, uniqueName: layerid, shortcutKey: "S+" + 0, layerGroup: _stateAbbr + '_mapraid', zIndex: -9999, displayInLayerSwitcher: true, visibility: _settings.layerVisible, styleMap: layerStyle }); I18n.translations[I18n.locale].layers.name[layerid] = _stateAbbr + " MapRaid"; _layer.addFeatures(_features); W.map.addLayer(_layer); W.map.events.register("moveend", null, updateDistrictNameDisplay); window.addEventListener('beforeunload', function saveOnClose() { saveSettingsToStorage(); }, false); updateDistrictNameDisplay(); } function awaitLogin(e) { if (e && e.user === null) { return; } if (typeof Waze === 'undefined' || typeof Waze.loginManager === 'undefined') { setTimeout(awaitLogin, 100); return; } if (!Waze.loginManager.hasUser()) { Waze.loginManager.events.register("login", null, awaitLogin); Waze.loginManager.events.register("loginStatus", null, awaitLogin); return; } // TODO: check whether this is actually useful to do if (typeof document.getElementById('WazeMap') === undefined) { setTimeout(awaitLogin, 100); return; } init(); } awaitLogin(); function InstallKML(){ OpenLayers.Format.KML=OpenLayers.Class(OpenLayers.Format.XML,{namespaces:{kml:"http://www.opengis.net/kml/2.2",gx:"http://www.google.com/kml/ext/2.2"},kmlns:"http://earth.google.com/kml/2.0",placemarksDesc:"No description available",foldersName:"OpenLayers export",foldersDesc:"Exported on "+new Date,extractAttributes:!0,kvpAttributes:!1,extractStyles:!1,extractTracks:!1,trackAttributes:null,internalns:null,features:null,styles:null,styleBaseUrl:"",fetched:null,maxDepth:0,initialize:function(a){this.regExes= {trimSpace:/^\s*|\s*$/g,removeSpace:/\s*/g,splitSpace:/\s+/,trimComma:/\s*,\s*/g,kmlColor:/(\w{2})(\w{2})(\w{2})(\w{2})/,kmlIconPalette:/root:\/\/icons\/palette-(\d+)(\.\w+)/,straightBracket:/\$\[(.*?)\]/g};this.externalProjection=new OpenLayers.Projection("EPSG:4326");OpenLayers.Format.XML.prototype.initialize.apply(this,[a])},read:function(a){this.features=[];this.styles={};this.fetched={};return this.parseData(a,{depth:0,styleBaseUrl:this.styleBaseUrl})},parseData:function(a,b){"string"==typeof a&& (a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));for(var c=["Link","NetworkLink","Style","StyleMap","Placemark"],d=0,e=c.length;d<e;++d){var f=c[d],g=this.getElementsByTagNameNS(a,"*",f);if(0!=g.length)switch(f.toLowerCase()){case "link":case "networklink":this.parseLinks(g,b);break;case "style":this.extractStyles&&this.parseStyles(g,b);break;case "stylemap":this.extractStyles&&this.parseStyleMaps(g,b);break;case "placemark":this.parseFeatures(g,b)}}return this.features},parseLinks:function(a, b){if(b.depth>=this.maxDepth)return!1;var c=OpenLayers.Util.extend({},b);c.depth++;for(var d=0,e=a.length;d<e;d++){var f=this.parseProperty(a[d],"*","href");f&&!this.fetched[f]&&(this.fetched[f]=!0,(f=this.fetchLink(f))&&this.parseData(f,c))}},fetchLink:function(a){if(a=OpenLayers.Request.GET({url:a,async:!1}))return a.responseText},parseStyles:function(a,b){for(var c=0,d=a.length;c<d;c++){var e=this.parseStyle(a[c]);e&&(this.styles[(b.styleBaseUrl||"")+"#"+e.id]=e)}},parseKmlColor:function(a){var b= null;a&&(a=a.match(this.regExes.kmlColor))&&(b={color:"#"+a[4]+a[3]+a[2],opacity:parseInt(a[1],16)/255});return b},parseStyle:function(a){for(var b={},c=["LineStyle","PolyStyle","IconStyle","BalloonStyle","LabelStyle"],d,e,f=0,g=c.length;f<g;++f)if(d=c[f],e=this.getElementsByTagNameNS(a,"*",d)[0])switch(d.toLowerCase()){case "linestyle":d=this.parseProperty(e,"*","color");if(d=this.parseKmlColor(d))b.strokeColor=d.color,b.strokeOpacity=d.opacity;(d=this.parseProperty(e,"*","width"))&&(b.strokeWidth= d);break;case "polystyle":d=this.parseProperty(e,"*","color");if(d=this.parseKmlColor(d))b.fillOpacity=d.opacity,b.fillColor=d.color;"0"==this.parseProperty(e,"*","fill")&&(b.fillColor="none");"0"==this.parseProperty(e,"*","outline")&&(b.strokeWidth="0");break;case "iconstyle":var h=parseFloat(this.parseProperty(e,"*","scale")||1);d=32*h;var i=32*h,j=this.getElementsByTagNameNS(e,"*","Icon")[0];if(j){var k=this.parseProperty(j,"*","href");if(k){var l=this.parseProperty(j,"*","w"),m=this.parseProperty(j, "*","h");OpenLayers.String.startsWith(k,"http://maps.google.com/mapfiles/kml")&&(!l&&!m)&&(m=l=64,h/=2);l=l||m;m=m||l;l&&(d=parseInt(l)*h);m&&(i=parseInt(m)*h);if(m=k.match(this.regExes.kmlIconPalette))l=m[1],m=m[2],k=this.parseProperty(j,"*","x"),j=this.parseProperty(j,"*","y"),k="http://maps.google.com/mapfiles/kml/pal"+l+"/icon"+(8*(j?7-j/32:7)+(k?k/32:0))+m;b.graphicOpacity=1;b.externalGraphic=k}}if(e=this.getElementsByTagNameNS(e,"*","hotSpot")[0])k=parseFloat(e.getAttribute("x")),j=parseFloat(e.getAttribute("y")), l=e.getAttribute("xunits"),"pixels"==l?b.graphicXOffset=-k*h:"insetPixels"==l?b.graphicXOffset=-d+k*h:"fraction"==l&&(b.graphicXOffset=-d*k),e=e.getAttribute("yunits"),"pixels"==e?b.graphicYOffset=-i+j*h+1:"insetPixels"==e?b.graphicYOffset=-(j*h)+1:"fraction"==e&&(b.graphicYOffset=-i*(1-j)+1);b.graphicWidth=d;b.graphicHeight=i;break;case "balloonstyle":(e=OpenLayers.Util.getXmlNodeValue(e))&&(b.balloonStyle=e.replace(this.regExes.straightBracket,"${$1}"));break;case "labelstyle":if(d=this.parseProperty(e, "*","color"),d=this.parseKmlColor(d))b.fontColor=d.color,b.fontOpacity=d.opacity}!b.strokeColor&&b.fillColor&&(b.strokeColor=b.fillColor);if((a=a.getAttribute("id"))&&b)b.id=a;return b},parseStyleMaps:function(a,b){for(var c=0,d=a.length;c<d;c++)for(var e=a[c],f=this.getElementsByTagNameNS(e,"*","Pair"),e=e.getAttribute("id"),g=0,h=f.length;g<h;g++){var i=f[g],j=this.parseProperty(i,"*","key");(i=this.parseProperty(i,"*","styleUrl"))&&"normal"==j&&(this.styles[(b.styleBaseUrl||"")+"#"+e]=this.styles[(b.styleBaseUrl|| "")+i])}},parseFeatures:function(a,b){for(var c=[],d=0,e=a.length;d<e;d++){var f=a[d],g=this.parseFeature.apply(this,[f]);if(g){this.extractStyles&&(g.attributes&&g.attributes.styleUrl)&&(g.style=this.getStyle(g.attributes.styleUrl,b));if(this.extractStyles){var h=this.getElementsByTagNameNS(f,"*","Style")[0];if(h&&(h=this.parseStyle(h)))g.style=OpenLayers.Util.extend(g.style,h)}if(this.extractTracks){if((f=this.getElementsByTagNameNS(f,this.namespaces.gx,"Track"))&&0<f.length)g={features:[],feature:g}, this.readNode(f[0],g),0<g.features.length&&c.push.apply(c,g.features)}else c.push(g)}else throw"Bad Placemark: "+d;}this.features=this.features.concat(c)},readers:{kml:{when:function(a,b){b.whens.push(OpenLayers.Date.parse(this.getChildValue(a)))},_trackPointAttribute:function(a,b){var c=a.nodeName.split(":").pop();b.attributes[c].push(this.getChildValue(a))}},gx:{Track:function(a,b){var c={whens:[],points:[],angles:[]};if(this.trackAttributes){var d;c.attributes={};for(var e=0,f=this.trackAttributes.length;e< f;++e)d=this.trackAttributes[e],c.attributes[d]=[],d in this.readers.kml||(this.readers.kml[d]=this.readers.kml._trackPointAttribute)}this.readChildNodes(a,c);if(c.whens.length!==c.points.length)throw Error("gx:Track with unequal number of when ("+c.whens.length+") and gx:coord ("+c.points.length+") elements.");var g=0<c.angles.length;if(g&&c.whens.length!==c.angles.length)throw Error("gx:Track with unequal number of when ("+c.whens.length+") and gx:angles ("+c.angles.length+") elements.");for(var h, i,e=0,f=c.whens.length;e<f;++e){h=b.feature.clone();h.fid=b.feature.fid||b.feature.id;i=c.points[e];h.geometry=i;"z"in i&&(h.attributes.altitude=i.z);this.internalProjection&&this.externalProjection&&h.geometry.transform(this.externalProjection,this.internalProjection);if(this.trackAttributes){i=0;for(var j=this.trackAttributes.length;i<j;++i)h.attributes[d]=c.attributes[this.trackAttributes[i]][e]}h.attributes.when=c.whens[e];h.attributes.trackId=b.feature.id;g&&(i=c.angles[e],h.attributes.heading= parseFloat(i[0]),h.attributes.tilt=parseFloat(i[1]),h.attributes.roll=parseFloat(i[2]));b.features.push(h)}},coord:function(a,b){var c=this.getChildValue(a).replace(this.regExes.trimSpace,"").split(/\s+/),d=new OpenLayers.Geometry.Point(c[0],c[1]);2<c.length&&(d.z=parseFloat(c[2]));b.points.push(d)},angles:function(a,b){var c=this.getChildValue(a).replace(this.regExes.trimSpace,"").split(/\s+/);b.angles.push(c)}}},parseFeature:function(a){for(var b=["MultiGeometry","Polygon","LineString","Point"], c,d,e,f=0,g=b.length;f<g;++f)if(c=b[f],this.internalns=a.namespaceURI?a.namespaceURI:this.kmlns,d=this.getElementsByTagNameNS(a,this.internalns,c),0<d.length){if(b=this.parseGeometry[c.toLowerCase()])e=b.apply(this,[d[0]]),this.internalProjection&&this.externalProjection&&e.transform(this.externalProjection,this.internalProjection);else throw new TypeError("Unsupported geometry type: "+c);break}var h;this.extractAttributes&&(h=this.parseAttributes(a));c=new OpenLayers.Feature.Vector(e,h);a=a.getAttribute("id")|| a.getAttribute("name");null!=a&&(c.fid=a);return c},getStyle:function(a,b){var c=OpenLayers.Util.removeTail(a),d=OpenLayers.Util.extend({},b);d.depth++;d.styleBaseUrl=c;!this.styles[a]&&!OpenLayers.String.startsWith(a,"#")&&d.depth<=this.maxDepth&&!this.fetched[c]&&(c=this.fetchLink(c))&&this.parseData(c,d);return OpenLayers.Util.extend({},this.styles[a])},parseGeometry:{point:function(a){var b=this.getElementsByTagNameNS(a,this.internalns,"coordinates"),a=[];if(0<b.length)var c=b[0].firstChild.nodeValue, c=c.replace(this.regExes.removeSpace,""),a=c.split(",");b=null;if(1<a.length)2==a.length&&(a[2]=null),b=new OpenLayers.Geometry.Point(a[0],a[1],a[2]);else throw"Bad coordinate string: "+c;return b},linestring:function(a,b){var c=this.getElementsByTagNameNS(a,this.internalns,"coordinates"),d=null;if(0<c.length){for(var c=this.getChildValue(c[0]),c=c.replace(this.regExes.trimSpace,""),c=c.replace(this.regExes.trimComma,","),d=c.split(this.regExes.splitSpace),e=d.length,f=Array(e),g,h,i=0;i<e;++i)if(g= d[i].split(","),h=g.length,1<h)2==g.length&&(g[2]=null),f[i]=new OpenLayers.Geometry.Point(g[0],g[1],g[2]);else throw"Bad LineString point coordinates: "+d[i];if(e)d=b?new OpenLayers.Geometry.LinearRing(f):new OpenLayers.Geometry.LineString(f);else throw"Bad LineString coordinates: "+c;}return d},polygon:function(a){var a=this.getElementsByTagNameNS(a,this.internalns,"LinearRing"),b=a.length,c=Array(b);if(0<b)for(var d=0,e=a.length;d<e;++d)if(b=this.parseGeometry.linestring.apply(this,[a[d],!0]))c[d]= b;else throw"Bad LinearRing geometry: "+d;return new OpenLayers.Geometry.Polygon(c)},multigeometry:function(a){for(var b,c=[],d=a.childNodes,e=0,f=d.length;e<f;++e)a=d[e],1==a.nodeType&&(b=this.parseGeometry[(a.prefix?a.nodeName.split(":")[1]:a.nodeName).toLowerCase()])&&c.push(b.apply(this,[a]));return new OpenLayers.Geometry.Collection(c)}},parseAttributes:function(a){var b={},c=a.getElementsByTagName("ExtendedData");c.length&&(b=this.parseExtendedData(c[0]));for(var d,e,f,a=a.childNodes,c=0,g= a.length;c<g;++c)if(d=a[c],1==d.nodeType&&(e=d.childNodes,1<=e.length&&3>=e.length)){switch(e.length){case 1:f=e[0];break;case 2:f=e[0];e=e[1];f=3==f.nodeType||4==f.nodeType?f:e;break;default:f=e[1]}if(3==f.nodeType||4==f.nodeType)if(d=d.prefix?d.nodeName.split(":")[1]:d.nodeName,f=OpenLayers.Util.getXmlNodeValue(f))f=f.replace(this.regExes.trimSpace,""),b[d]=f}return b},parseExtendedData:function(a){var b={},c,d,e,f,g=a.getElementsByTagName("Data");c=0;for(d=g.length;c<d;c++){e=g[c];f=e.getAttribute("name"); var h={},i=e.getElementsByTagName("value");i.length&&(h.value=this.getChildValue(i[0]));this.kvpAttributes?b[f]=h.value:(e=e.getElementsByTagName("displayName"),e.length&&(h.displayName=this.getChildValue(e[0])),b[f]=h)}a=a.getElementsByTagName("SimpleData");c=0;for(d=a.length;c<d;c++)h={},e=a[c],f=e.getAttribute("name"),h.value=this.getChildValue(e),this.kvpAttributes?b[f]=h.value:(h.displayName=f,b[f]=h);return b},parseProperty:function(a,b,c){var d,a=this.getElementsByTagNameNS(a,b,c);try{d=OpenLayers.Util.getXmlNodeValue(a[0])}catch(e){d= null}return d},write:function(a){OpenLayers.Util.isArray(a)||(a=[a]);for(var b=this.createElementNS(this.kmlns,"kml"),c=this.createFolderXML(),d=0,e=a.length;d<e;++d)c.appendChild(this.createPlacemarkXML(a[d]));b.appendChild(c);return OpenLayers.Format.XML.prototype.write.apply(this,[b])},createFolderXML:function(){var a=this.createElementNS(this.kmlns,"Folder");if(this.foldersName){var b=this.createElementNS(this.kmlns,"name"),c=this.createTextNode(this.foldersName);b.appendChild(c);a.appendChild(b)}this.foldersDesc&& (b=this.createElementNS(this.kmlns,"description"),c=this.createTextNode(this.foldersDesc),b.appendChild(c),a.appendChild(b));return a},createPlacemarkXML:function(a){var b=this.createElementNS(this.kmlns,"name");b.appendChild(this.createTextNode(a.style&&a.style.label?a.style.label:a.attributes.name||a.id));var c=this.createElementNS(this.kmlns,"description");c.appendChild(this.createTextNode(a.attributes.description||this.placemarksDesc));var d=this.createElementNS(this.kmlns,"Placemark");null!= a.fid&&d.setAttribute("id",a.fid);d.appendChild(b);d.appendChild(c);b=this.buildGeometryNode(a.geometry);d.appendChild(b);a.attributes&&(a=this.buildExtendedData(a.attributes))&&d.appendChild(a);return d},buildGeometryNode:function(a){var b=a.CLASS_NAME,b=this.buildGeometry[b.substring(b.lastIndexOf(".")+1).toLowerCase()],c=null;b&&(c=b.apply(this,[a]));return c},buildGeometry:{point:function(a){var b=this.createElementNS(this.kmlns,"Point");b.appendChild(this.buildCoordinatesNode(a));return b},multipoint:function(a){return this.buildGeometry.collection.apply(this, [a])},linestring:function(a){var b=this.createElementNS(this.kmlns,"LineString");b.appendChild(this.buildCoordinatesNode(a));return b},multilinestring:function(a){return this.buildGeometry.collection.apply(this,[a])},linearring:function(a){var b=this.createElementNS(this.kmlns,"LinearRing");b.appendChild(this.buildCoordinatesNode(a));return b},polygon:function(a){for(var b=this.createElementNS(this.kmlns,"Polygon"),a=a.components,c,d,e=0,f=a.length;e<f;++e)c=0==e?"outerBoundaryIs":"innerBoundaryIs", c=this.createElementNS(this.kmlns,c),d=this.buildGeometry.linearring.apply(this,[a[e]]),c.appendChild(d),b.appendChild(c);return b},multipolygon:function(a){return this.buildGeometry.collection.apply(this,[a])},collection:function(a){for(var b=this.createElementNS(this.kmlns,"MultiGeometry"),c,d=0,e=a.components.length;d<e;++d)(c=this.buildGeometryNode.apply(this,[a.components[d]]))&&b.appendChild(c);return b}},buildCoordinatesNode:function(a){var b=this.createElementNS(this.kmlns,"coordinates"), c;if(c=a.components){for(var d=c.length,e=Array(d),f=0;f<d;++f)a=c[f],e[f]=this.buildCoordinates(a);c=e.join(" ")}else c=this.buildCoordinates(a);c=this.createTextNode(c);b.appendChild(c);return b},buildCoordinates:function(a){this.internalProjection&&this.externalProjection&&(a=a.clone(),a.transform(this.internalProjection,this.externalProjection));return a.x+","+a.y},buildExtendedData:function(a){var b=this.createElementNS(this.kmlns,"ExtendedData"),c;for(c in a)if(a[c]&&"name"!=c&&"description"!= c&&"styleUrl"!=c){var d=this.createElementNS(this.kmlns,"Data");d.setAttribute("name",c);var e=this.createElementNS(this.kmlns,"value");if("object"==typeof a[c]){if(a[c].value&&e.appendChild(this.createTextNode(a[c].value)),a[c].displayName){var f=this.createElementNS(this.kmlns,"displayName");f.appendChild(this.getXMLDoc().createCDATASection(a[c].displayName));d.appendChild(f)}}else e.appendChild(this.createTextNode(a[c]));d.appendChild(e);b.appendChild(d)}return this.isSimpleContent(b)?null:b}, CLASS_NAME:"OpenLayers.Format.KML"}); _kml = `<?xml version="1.0" encoding="UTF-8"?> <kml xmlns="http://www.opengis.net/kml/2.2"> <Document> <name>Groups</name> <Style id="poly-01579B-1-76-nodesc-normal"> <LineStyle> <color>ff9b5701</color> <width>1</width> </LineStyle> <PolyStyle> <color>4c9b5701</color> <fill>1</fill> <outline>1</outline> </PolyStyle> <BalloonStyle> <text><![CDATA[<h3>$[name]</h3>]]></text> </BalloonStyle> </Style> <Style id="poly-01579B-1-76-nodesc-highlight"> <LineStyle> <color>ff9b5701</color> <width>2</width> </LineStyle> <PolyStyle> <color>4c9b5701</color> <fill>1</fill> <outline>1</outline> </PolyStyle> <BalloonStyle> <text><![CDATA[<h3>$[name]</h3>]]></text> </BalloonStyle> </Style> <StyleMap id="poly-01579B-1-76-nodesc"> <Pair> <key>normal</key> <styleUrl>#poly-01579B-1-76-nodesc-normal</styleUrl> </Pair> <Pair> <key>highlight</key> <styleUrl>#poly-01579B-1-76-nodesc-highlight</styleUrl> </Pair> </StyleMap> <Style id="poly-7CB342-1-76-nodesc-normal"> <LineStyle> <color>ff42b37c</color> <width>1</width> </LineStyle> <PolyStyle> <color>4c42b37c</color> <fill>1</fill> <outline>1</outline> </PolyStyle> <BalloonStyle> <text><![CDATA[<h3>$[name]</h3>]]></text> </BalloonStyle> </Style> <Style id="poly-7CB342-1-76-nodesc-highlight"> <LineStyle> <color>ff42b37c</color> <width>2</width> </LineStyle> <PolyStyle> <color>4c42b37c</color> <fill>1</fill> <outline>1</outline> </PolyStyle> <BalloonStyle> <text><![CDATA[<h3>$[name]</h3>]]></text> </BalloonStyle> </Style> <StyleMap id="poly-7CB342-1-76-nodesc"> <Pair> <key>normal</key> <styleUrl>#poly-7CB342-1-76-nodesc-normal</styleUrl> </Pair> <Pair> <key>highlight</key> <styleUrl>#poly-7CB342-1-76-nodesc-highlight</styleUrl> </Pair> </StyleMap> <Style id="poly-C2185B-1-76-nodesc-normal"> <LineStyle> <color>ff5b18c2</color> <width>1</width> </LineStyle> <PolyStyle> <color>4c5b18c2</color> <fill>1</fill> <outline>1</outline> </PolyStyle> <BalloonStyle> <text><![CDATA[<h3>$[name]</h3>]]></text> </BalloonStyle> </Style> <Style id="poly-C2185B-1-76-nodesc-highlight"> <LineStyle> <color>ff5b18c2</color> <width>2</width> </LineStyle> <PolyStyle> <color>4c5b18c2</color> <fill>1</fill> <outline>1</outline> </PolyStyle> <BalloonStyle> <text><![CDATA[<h3>$[name]</h3>]]></text> </BalloonStyle> </Style> <StyleMap id="poly-C2185B-1-76-nodesc"> <Pair> <key>normal</key> <styleUrl>#poly-C2185B-1-76-nodesc-normal</styleUrl> </Pair> <Pair> <key>highlight</key> <styleUrl>#poly-C2185B-1-76-nodesc-highlight</styleUrl> </Pair> </StyleMap> <Style id="poly-F57C00-1-76-nodesc-normal"> <LineStyle> <color>ff007cf5</color> <width>1</width> </LineStyle> <PolyStyle> <color>4c007cf5</color> <fill>1</fill> <outline>1</outline> </PolyStyle> <BalloonStyle> <text><![CDATA[<h3>$[name]</h3>]]></text> </BalloonStyle> </Style> <Style id="poly-F57C00-1-76-nodesc-highlight"> <LineStyle> <color>ff007cf5</color> <width>2</width> </LineStyle> <PolyStyle> <color>4c007cf5</color> <fill>1</fill> <outline>1</outline> </PolyStyle> <BalloonStyle> <text><![CDATA[<h3>$[name]</h3>]]></text> </BalloonStyle> </Style> <StyleMap id="poly-F57C00-1-76-nodesc"> <Pair> <key>normal</key> <styleUrl>#poly-F57C00-1-76-nodesc-normal</styleUrl> </Pair> <Pair> <key>highlight</key> <styleUrl>#poly-F57C00-1-76-nodesc-highlight</styleUrl> </Pair> </StyleMap> <Style id="poly-FFEA00-1-76-nodesc-normal"> <LineStyle> <color>ff00eaff</color> <width>1</width> </LineStyle> <PolyStyle> <color>4c00eaff</color> <fill>1</fill> <outline>1</outline> </PolyStyle> <BalloonStyle> <text><![CDATA[<h3>$[name]</h3>]]></text> </BalloonStyle> </Style> <Style id="poly-FFEA00-1-76-nodesc-highlight"> <LineStyle> <color>ff00eaff</color> <width>2</width> </LineStyle> <PolyStyle> <color>4c00eaff</color> <fill>1</fill> <outline>1</outline> </PolyStyle> <BalloonStyle> <text><![CDATA[<h3>$[name]</h3>]]></text> </BalloonStyle> </Style> <StyleMap id="poly-FFEA00-1-76-nodesc"> <Pair> <key>normal</key> <styleUrl>#poly-FFEA00-1-76-nodesc-normal</styleUrl> </Pair> <Pair> <key>highlight</key> <styleUrl>#poly-FFEA00-1-76-nodesc-highlight</styleUrl> </Pair> </StyleMap> <Placemark> <name>WV-1</name> <styleUrl>#poly-7CB342-1-76-nodesc</styleUrl> <Polygon> <outerBoundaryIs> <LinearRing> <tessellate>1</tessellate> <coordinates> -78.097977,39.678402,0 -78.102097,39.680729,0 -78.106941,39.681599,0 -78.114563,39.68409,0 -78.127907,39.68737,0 -78.139496,39.68964,0 -78.146667,39.69091,0 -78.158447,39.694031,0 -78.169243,39.697151,0 -78.179413,39.697552,0 -78.184784,39.695709,0 -78.188339,39.69342,0 -78.190712,39.691139,0 -78.193207,39.689011,0 -78.196472,39.683929,0 -78.198303,39.682602,0 -78.199516,39.681709,0 -78.201347,39.67992,0 -78.202606,39.67947,0 -78.206177,39.678181,0 -78.207962,39.67831,0 -78.208511,39.678341,0 -78.210358,39.678341,0 -78.210907,39.678329,0 -78.2127,39.678322,0 -78.217476,39.677841,0 -78.219933,39.677921,0 -78.223518,39.677971,0 -78.225769,39.677151,0 -78.228218,39.676422,0 -78.230003,39.675049,0 -78.231163,39.673672,0 -78.23185,39.67284,0 -78.231796,39.671761,0 -78.23175,39.670959,0 -78.231277,39.66991,0 -78.230942,39.669441,0 -78.23053,39.668701,0 -78.228119,39.666901,0 -78.227249,39.66592,0 -78.226883,39.665581,0 -78.225212,39.664082,0 -78.22448,39.66148,0 -78.225746,39.66032,0 -78.226532,39.659069,0 -78.227386,39.65823,0 -78.23278,39.654629,0 -78.238716,39.65097,0 -78.241547,39.649212,0 -78.245186,39.646992,0 -78.249451,39.643879,0 -78.25251,39.641689,0 -78.252922,39.641331,0 -78.256126,39.6385,0 -78.259033,39.63559,0 -78.261223,39.632252,0 -78.26236,39.628639,0 -78.262413,39.626381,0 -78.263069,39.624119,0 -78.263092,39.623211,0 -78.263443,39.621792,0 -78.263947,39.620579,0 -78.265381,39.61972,0 -78.26738,39.61874,0 -78.26976,39.61861,0 -78.272743,39.61858,0 -78.279877,39.62027,0 -78.281227,39.620632,0 -78.287277,39.622311,0 -78.293388,39.624802,0 -78.300026,39.626892,0 -78.308983,39.630131,0 -78.317421,39.633541,0 -78.320587,39.634449,0 -78.326958,39.63591,0 -78.327759,39.636509,0 -78.328957,39.636501,0 -78.340729,39.638542,0 -78.349106,39.640331,0 -78.352936,39.64122,0 -78.355087,39.641621,0 -78.357048,39.641251,0 -78.357666,39.6399,0 -78.358063,39.63908,0 -78.358047,39.63855,0 -78.357567,39.63773,0 -78.356247,39.636162,0 -78.354233,39.633511,0 -78.353096,39.630779,0 -78.353729,39.629421,0 -78.355026,39.627831,0 -78.357277,39.6273,0 -78.359146,39.627682,0 -78.360306,39.627529,0 -78.363297,39.62796,0 -78.3657,39.628849,0 -78.368103,39.629742,0 -78.370491,39.63018,0 -78.372292,39.631069,0 -78.375282,39.63105,0 -78.376396,39.63063,0 -78.378212,39.629742,0 -78.380043,39.62841,0 -78.380692,39.62569,0 -78.380157,39.622971,0 -78.375481,39.61837,0 -78.373741,39.616081,0 -78.373299,39.6152,0 -78.372078,39.613392,0 -78.372047,39.61158,0 -78.373238,39.61021,0 -78.375023,39.609291,0 -78.376892,39.608871,0 -78.378082,39.608891,0 -78.379272,39.60936,0 -78.380386,39.609371,0 -78.381058,39.609379,0 -78.382729,39.609871,0 -78.385193,39.61058,0 -78.387573,39.611019,0 -78.389381,39.61237,0 -78.390579,39.612812,0 -78.394188,39.614601,0 -78.396439,39.615921,0 -78.398788,39.617771,0 -78.402313,39.62011,0 -78.40686,39.62204,0 -78.411606,39.623089,0 -78.415207,39.62397,0 -78.418938,39.624821,0 -78.420601,39.62529,0 -78.423111,39.625332,0 -78.425003,39.625351,0 -78.425499,39.625359,0 -78.427902,39.624481,0 -78.428726,39.62418,0 -78.430611,39.62328,0 -78.4319,39.621571,0 -78.432617,39.619049,0 -78.431847,39.6175,0 -78.430542,39.614941,0 -78.430008,39.61388,0 -78.425262,39.608582,0 -78.421761,39.606239,0 -78.421272,39.60582,0 -78.419273,39.604111,0 -78.415733,39.601879,0 -78.409943,39.599319,0 -78.407669,39.598419,0 -78.406517,39.597729,0 -78.404022,39.596981,0 -78.400467,39.59557,0 -78.396942,39.593262,0 -78.395081,39.590111,0 -78.394043,39.58696,0 -78.394417,39.585579,0 -78.394997,39.583759,0 -78.397362,39.581932,0 -78.400917,39.58009,0 -78.404488,39.579159,0 -78.406273,39.578701,0 -78.412849,39.579559,0 -78.419769,39.581959,0 -78.423409,39.58408,0 -78.426949,39.585499,0 -78.431129,39.587669,0 -78.432892,39.588211,0 -78.433853,39.588509,0 -78.437439,39.589382,0 -78.43985,39.59024,0 -78.442383,39.59021,0 -78.446548,39.59071,0 -78.450127,39.590759,0 -78.451317,39.590771,0 -78.453056,39.589859,0 -78.455872,39.588219,0 -78.457977,39.586319,0 -78.458267,39.584202,0 -78.456497,39.57988,0 -78.450958,39.572472,0 -78.443367,39.567699,0 -78.435196,39.56337,0 -78.42868,39.56189,0 -78.428276,39.561581,0 -78.425148,39.559162,0 -78.422791,39.55777,0 -78.421036,39.556389,0 -78.417686,39.551991,0 -78.417839,39.549599,0 -78.417816,39.548241,0 -78.419601,39.547321,0 -78.420723,39.546879,0 -78.422417,39.54734,0 -78.423576,39.547451,0 -78.424728,39.547939,0 -78.42672,39.54911,0 -78.427391,39.54998,0 -78.42823,39.551559,0 -78.429466,39.55286,0 -78.431061,39.553982,0 -78.431633,39.55426,0 -78.43222,39.554482,0 -78.433601,39.55492,0 -78.435211,39.554909,0 -78.436401,39.554451,0 -78.437576,39.553989,0 -78.438171,39.55307,0 -78.437561,39.55172,0 -78.436783,39.54998,0 -78.435249,39.548012,0 -78.433777,39.54612,0 -78.432686,39.544052,0 -78.432671,39.54248,0 -78.432648,39.541332,0 -78.433907,39.540691,0 -78.436813,39.54039,0 -78.439201,39.540829,0 -78.442207,39.543049,0 -78.443947,39.545341,0 -78.446869,39.5481,0 -78.448029,39.549469,0 -78.450981,39.55217,0 -78.453102,39.552921,0 -78.454628,39.553181,0 -78.456306,39.5532,0 -78.459038,39.55201,0 -78.460327,39.551201,0 -78.460617,39.55019,0 -78.460579,39.548721,0 -78.459572,39.54747,0 -78.457756,39.54612,0 -78.455963,39.545231,0 -78.454102,39.544559,0 -78.452942,39.54319,0 -78.45237,39.541821,0 -78.4524,39.54073,0 -78.452423,39.540009,0 -78.453056,39.539619,0 -78.453529,39.539421,0 -78.454834,39.53936,0 -78.455406,39.539589,0 -78.456512,39.53896,0 -78.460838,39.53648,0 -78.460472,39.535679,0 -78.461517,39.53241,0 -78.461113,39.528419,0 -78.461693,39.526611,0 -78.46344,39.52433,0 -78.46402,39.522961,0 -78.46637,39.520222,0 -78.468361,39.519352,0 -78.470169,39.518471,0 -78.470757,39.518471,0 -78.472961,39.5186,0 -78.474648,39.518909,0 -78.4767,39.519909,0 -78.477936,39.520222,0 -78.47966,39.520851,0 -78.482033,39.52179,0 -78.484879,39.521889,0 -78.487862,39.52187,0 -78.49025,39.521019,0 -78.492783,39.52055,0 -78.495796,39.519329,0 -78.499153,39.519051,0 -78.501671,39.519539,0 -78.503937,39.520382,0 -78.50885,39.52256,0 -78.511787,39.52441,0 -78.514153,39.525799,0 -78.51712,39.526279,0 -78.519516,39.526142,0 -78.521317,39.526581,0 -78.521919,39.52655,0 -78.525467,39.526379,0 -78.5299,39.526062,0 -78.530853,39.52599,0 -78.536827,39.524822,0 -78.53743,39.524712,0 -78.541626,39.523849,0 -78.545776,39.522881,0 -78.546318,39.522758,0 -78.551208,39.521702,0 -78.555832,39.520859,0 -78.559402,39.520432,0 -78.560097,39.520439,0 -78.563583,39.52079,0 -78.566719,39.52142,0 -78.568489,39.52235,0 -78.570778,39.523449,0 -78.573792,39.525692,0 -78.575012,39.527489,0 -78.576721,39.528339,0 -78.580872,39.529739,0 -78.582657,39.529739,0 -78.58445,39.529789,0 -78.586227,39.5298,0 -78.587433,39.529819,0 -78.589638,39.53043,0 -78.590309,39.531269,0 -78.591026,39.533161,0 -78.590439,39.534451,0 -78.589813,39.535751,0 -78.589676,39.536789,0 -78.590263,39.53801,0 -78.592033,39.538479,0 -78.594833,39.537712,0 -78.597771,39.536739,0 -78.598999,39.5359,0 -78.601357,39.5354,0 -78.603157,39.53503,0 -78.604622,39.535019,0 -78.6064,39.535492,0 -78.610306,39.537262,0 -78.61396,39.53894,0 -78.619347,39.539799,0 -78.624123,39.540211,0 -78.628281,39.539261,0 -78.634811,39.538521,0 -78.637802,39.537819,0 -78.639587,39.5378,0 -78.643173,39.537319,0 -78.646744,39.536869,0 -78.648529,39.536839,0 -78.650528,39.536861,0 -78.654472,39.537399,0 -78.657112,39.53772,0 -78.658638,39.53825,0 -78.659866,39.53857,0 -78.661102,39.538929,0 -78.664093,39.539841,0 -78.665993,39.540619,0 -78.666451,39.540821,0 -78.668388,39.54147,0 -78.668877,39.54166,0 -78.671913,39.54208,0 -78.673668,39.542469,0 -78.68026,39.54422,0 -78.682091,39.54567,0 -78.68264,39.546101,0 -78.685272,39.547291,0 -78.686653,39.547909,0 -78.687309,39.54813,0 -78.689293,39.54958,0 -78.68972,39.549889,0 -78.692482,39.55196,0 -78.694366,39.55365,0 -78.695549,39.554569,0 -78.697319,39.555489,0 -78.701477,39.556438,0 -78.703148,39.557152,0 -78.704941,39.55759,0 -78.707336,39.558472,0 -78.709747,39.559349,0 -78.712166,39.56115,0 -78.7145,39.562469,0 -78.717468,39.563412,0 -78.719238,39.564331,0 -78.724556,39.567101,0 -78.728043,39.571682,0 -78.732132,39.577271,0 -78.733299,39.578979,0 -78.734016,39.583061,0 -78.734039,39.584049,0 -78.734543,39.585972,0 -78.735237,39.586842,0 -78.737053,39.587749,0 -78.738266,39.588009,0 -78.738823,39.587879,0 -78.739723,39.587662,0 -78.741119,39.586632,0 -78.741669,39.585972,0 -78.742661,39.58403,0 -78.742973,39.58305,0 -78.743301,39.582012,0 -78.744003,39.58181,0 -78.745789,39.581829,0 -78.74939,39.58218,0 -78.751152,39.58252,0 -78.752937,39.5825,0 -78.754143,39.582489,0 -78.755333,39.582481,0 -78.756691,39.582458,0 -78.759361,39.583519,0 -78.761986,39.58527,0 -78.76358,39.586601,0 -78.764618,39.58709,0 -78.765953,39.589729,0 -78.765907,39.591549,0 -78.767029,39.593239,0 -78.768402,39.59581,0 -78.769478,39.59684,0 -78.771088,39.598331,0 -78.771759,39.59885,0 -78.772949,39.599319,0 -78.773117,39.59985,0 -78.77314,39.601341,0 -78.772972,39.603001,0 -78.772591,39.604061,0 -78.772072,39.60561,0 -78.77079,39.606731,0 -78.769592,39.607582,0 -78.76741,39.608791,0 -78.766212,39.60923,0 -78.764397,39.610119,0 -78.76255,39.610512,0 -78.75898,39.611,0 -78.756592,39.611019,0 -78.754791,39.610592,0 -78.752403,39.610161,0 -78.749977,39.608829,0 -78.747116,39.608589,0 -78.745232,39.60899,0 -78.739258,39.610291,0 -78.736893,39.611221,0 -78.7351,39.612549,0 -78.733231,39.614319,0 -78.732216,39.617161,0 -78.733597,39.620892,0 -78.734932,39.622059,0 -78.737877,39.624809,0 -78.742531,39.626579,0 -78.743073,39.62682,0 -78.74559,39.627609,0 -78.74852,39.62788,0 -78.750313,39.627411,0 -78.755173,39.625889,0 -78.757591,39.6241,0 -78.759941,39.622719,0 -78.760979,39.622341,0 -78.762726,39.621811,0 -78.763916,39.62149,0 -78.767578,39.622009,0 -78.770569,39.62252,0 -78.77195,39.62289,0 -78.774727,39.623989,0 -78.77594,39.624882,0 -78.777176,39.62759,0 -78.777817,39.629848,0 -78.777176,39.63155,0 -78.775383,39.634731,0 -78.774086,39.637882,0 -78.772316,39.639721,0 -78.770523,39.641552,0 -78.76841,39.643421,0 -78.766037,39.645321,0 -78.764961,39.647301,0 -78.764938,39.648659,0 -78.766052,39.64912,0 -78.767319,39.649139,0 -78.76857,39.649151,0 -78.769653,39.648991,0 -78.77092,39.648262,0 -78.772758,39.647579,0 -78.775146,39.64558,0 -78.777466,39.643459,0 -78.779236,39.642082,0 -78.780983,39.63979,0 -78.782768,39.639389,0 -78.78421,39.63932,0 -78.785721,39.63942,0 -78.78756,39.639721,0 -78.78933,39.639229,0 -78.790497,39.638729,0 -78.793221,39.63718,0 -78.79454,39.636391,0 -78.796249,39.633999,0 -78.798187,39.63282,0 -78.798737,39.630539,0 -78.799278,39.627369,0 -78.798271,39.619972,0 -78.79734,39.61628,0 -78.796707,39.614021,0 -78.796021,39.61179,0 -78.796806,39.61005,0 -78.79702,39.60957,0 -78.797867,39.608631,0 -78.798943,39.608242,0 -78.799538,39.608322,0 -78.800728,39.608311,0 -78.804321,39.608692,0 -78.80587,39.608711,0 -78.807899,39.60873,0 -78.808952,39.608479,0 -78.811028,39.606941,0 -78.811401,39.60508,0 -78.812187,39.603302,0 -78.812508,39.60202,0 -78.812927,39.600159,0 -78.814163,39.598362,0 -78.815361,39.597462,0 -78.815979,39.596561,0 -78.81778,39.595669,0 -78.818863,39.594219,0 -78.820213,39.592979,0 -78.820671,39.5919,0 -78.821396,39.59156,0 -78.821953,39.59145,0 -78.823097,39.590839,0 -78.823837,39.59029,0 -78.825073,39.588951,0 -78.825317,39.58849,0 -78.826286,39.586689,0 -78.826576,39.58543,0 -78.826553,39.584011,0 -78.82653,39.58271,0 -78.826523,39.582199,0 -78.825302,39.580849,0 -78.823929,39.579491,0 -78.823448,39.57909,0 -78.821823,39.577419,0 -78.818703,39.575729,0 -78.81575,39.573891,0 -78.813347,39.57119,0 -78.812477,39.56847,0 -78.813103,39.56601,0 -78.81472,39.563911,0 -78.817726,39.56258,0 -78.821373,39.562222,0 -78.821907,39.562241,0 -78.823166,39.562279,0 -78.827263,39.563122,0 -78.829506,39.564251,0 -78.831993,39.56588,0 -78.835159,39.56686,0 -78.837601,39.567261,0 -78.840347,39.567101,0 -78.843353,39.566631,0 -78.84584,39.565151,0 -78.848152,39.562859,0 -78.848747,39.558392,0 -78.849876,39.554749,0 -78.852203,39.55154,0 -78.852562,39.551159,0 -78.856972,39.546589,0 -78.857376,39.546181,0 -78.859818,39.543762,0 -78.861603,39.542591,0 -78.865211,39.54081,0 -78.866318,39.540062,0 -78.868683,39.538681,0 -78.869247,39.537312,0 -78.869339,39.536419,0 -78.869423,39.53455,0 -78.869339,39.534012,0 -78.869751,39.53231,0 -78.870323,39.530949,0 -78.873207,39.52639,0 -78.874367,39.524109,0 -78.875633,39.52367,0 -78.877419,39.523239,0 -78.878609,39.523251,0 -78.881577,39.523731,0 -78.883369,39.5242,0 -78.884506,39.524452,0 -78.886307,39.524879,0 -78.8881,39.52486,0 -78.889877,39.524841,0 -78.891068,39.52438,0 -78.892242,39.523449,0 -78.89222,39.522091,0 -78.891006,39.52166,0 -78.890396,39.520302,0 -78.890007,39.518822,0 -78.89048,39.516861,0 -78.892448,39.515209,0 -78.895058,39.514809,0 -78.89743,39.513882,0 -78.90023,39.51347,0 -78.902611,39.513489,0 -78.903229,39.512581,0 -78.903831,39.511681,0 -78.902679,39.509411,0 -78.902283,39.507641,0 -78.903206,39.504749,0 -78.905266,39.50042,0 -78.90728,39.497921,0 -78.909042,39.496109,0 -78.910179,39.49514,0 -78.91246,39.493172,0 -78.913689,39.491482,0 -78.914253,39.489662,0 -78.914833,39.48875,0 -78.91777,39.4869,0 -78.919701,39.487339,0 -78.920883,39.487801,0 -78.922562,39.488209,0 -78.926353,39.488941,0 -78.926819,39.48967,0 -78.929848,39.487919,0 -78.93029,39.487652,0 -78.932831,39.486099,0 -78.935791,39.484249,0 -78.937599,39.482479,0 -78.939087,39.480309,0 -78.939667,39.479401,0 -78.938431,39.476692,0 -78.938423,39.47578,0 -78.938393,39.47488,0 -78.939537,39.472599,0 -78.940102,39.470779,0 -78.941849,39.468941,0 -78.945633,39.467159,0 -78.948067,39.465462,0 -78.950706,39.46439,0 -78.953079,39.46386,0 -78.955406,39.46328,0 -78.956421,39.462719,0 -78.957771,39.460602,0 -78.957161,39.459702,0 -78.955353,39.458359,0 -78.954117,39.45702,0 -78.953499,39.455669,0 -78.95417,39.45364,0 -78.955223,39.452469,0 -78.956451,39.451679,0 -78.957138,39.451321,0 -78.957581,39.45108,0 -78.958092,39.45055,0 -78.958817,39.44978,0 -78.957947,39.449059,0 -78.957321,39.448189,0 -78.956757,39.447079,0 -78.9562,39.446171,0 -78.955673,39.444759,0 -78.954437,39.443409,0 -78.95443,39.442509,0 -78.955017,39.442051,0 -78.956177,39.44067,0 -78.958542,39.439739,0 -78.960907,39.439259,0 -78.964493,39.439671,0 -78.968048,39.441059,0 -78.975746,39.444302,0 -78.983093,39.447212,0 -78.992157,39.452492,0 -79.000008,39.456932,0 -79.004723,39.459949,0 -79.009346,39.462429,0 -79.012993,39.464581,0 -79.015381,39.465412,0 -79.018707,39.466019,0 -79.02166,39.46664,0 -79.02285,39.466621,0 -79.024643,39.466599,0 -79.026428,39.466579,0 -79.028221,39.46653,0 -79.030853,39.466949,0 -79.033806,39.46833,0 -79.03614,39.471981,0 -79.0373,39.474251,0 -79.038467,39.476532,0 -79.03904,39.47789,0 -79.040756,39.478889,0 -79.042107,39.479771,0 -79.044609,39.480652,0 -79.048187,39.480679,0 -79.050568,39.480789,0 -79.052292,39.47892,0 -79.053352,39.477551,0 -79.054039,39.475761,0 -79.054596,39.473942,0 -79.055763,39.472561,0 -79.057602,39.472141,0 -79.05938,39.47261,0 -79.06115,39.4734,0 -79.062447,39.475159,0 -79.063103,39.476471,0 -79.064583,39.478199,0 -79.065346,39.47887,0 -79.065849,39.47945,0 -79.068771,39.47802,0 -79.069641,39.47747,0 -79.070198,39.476971,0 -79.073662,39.474529,0 -79.077263,39.47411,0 -79.079033,39.473629,0 -79.082016,39.473228,0 -79.084969,39.472649,0 -79.088547,39.472599,0 -79.091537,39.473019,0 -79.094536,39.474339,0 -79.097557,39.475662,0 -79.098671,39.47607,0 -79.100449,39.47699,0 -79.101051,39.47654,0 -79.102867,39.474289,0 -79.101692,39.472919,0 -79.099922,39.47155,0 -79.09803,39.470211,0 -79.096199,39.46843,0 -79.094383,39.467091,0 -79.094521,39.466049,0 -79.094627,39.46516,0 -79.095093,39.464489,0 -79.096176,39.463112,0 -79.097046,39.46246,0 -79.098846,39.462101,0 -79.100227,39.462051,0 -79.100906,39.46204,0 -79.102417,39.462051,0 -79.10421,39.462059,0 -79.105392,39.462521,0 -79.107193,39.462082,0 -79.107208,39.46072,0 -79.106033,39.459351,0 -79.104851,39.458439,0 -79.103081,39.457069,0 -79.102509,39.454792,0 -79.102539,39.45253,0 -79.104362,39.449821,0 -79.106041,39.448559,0 -79.107956,39.447571,0 -79.109093,39.44698,0 -79.110016,39.446491,0 -79.111771,39.44511,0 -79.113319,39.44326,0 -79.113403,39.441021,0 -79.112839,39.438549,0 -79.11161,39.437859,0 -79.109787,39.43652,0 -79.109322,39.43399,0 -79.109108,39.432041,0 -79.111137,39.431419,0 -79.112892,39.43153,0 -79.115067,39.431862,0 -79.117027,39.432411,0 -79.118057,39.432762,0 -79.120453,39.433208,0 -79.123398,39.432259,0 -79.125862,39.430599,0 -79.126663,39.428669,0 -79.126678,39.427311,0 -79.126701,39.425049,0 -79.12674,39.422329,0 -79.127953,39.420521,0 -79.129753,39.41872,0 -79.131332,39.417942,0 -79.133331,39.41853,0 -79.135002,39.41851,0 -79.136192,39.418499,0 -79.13797,39.418022,0 -79.139221,39.416622,0 -79.139091,39.414829,0 -79.139427,39.413429,0 -79.139839,39.412659,0 -79.140152,39.409382,0 -79.141296,39.407089,0 -79.143631,39.405251,0 -79.145996,39.404781,0 -79.147179,39.405701,0 -79.148346,39.40752,0 -79.1483,39.41153,0 -79.148422,39.412491,0 -79.14859,39.413799,0 -79.148842,39.41613,0 -79.150612,39.417961,0 -79.152382,39.41888,0 -79.154762,39.418892,0 -79.156357,39.417702,0 -79.157127,39.416622,0 -79.158279,39.414371,0 -79.158417,39.411392,0 -79.159813,39.409569,0 -79.160973,39.408199,0 -79.162743,39.407719,0 -79.165077,39.405422,0 -79.165611,39.402691,0 -79.16494,39.399529,0 -79.164307,39.398182,0 -79.163689,39.396832,0 -79.161827,39.393681,0 -79.160446,39.391289,0 -79.160469,39.389469,0 -79.161697,39.388241,0 -79.163467,39.38776,0 -79.16468,39.388199,0 -79.166489,39.38908,0 -79.167603,39.389969,0 -79.168167,39.391788,0 -79.169937,39.39407,0 -79.171638,39.395981,0 -79.173462,39.397282,0 -79.175247,39.398182,0 -79.177628,39.397259,0 -79.179733,39.396122,0 -79.179718,39.395191,0 -79.179398,39.39463,0 -79.178383,39.393181,0 -79.177887,39.391479,0 -79.178261,39.39024,0 -79.179581,39.388912,0 -79.181313,39.388248,0 -79.183716,39.387951,0 -79.186111,39.388371,0 -79.188446,39.389202,0 -79.190323,39.389641,0 -79.190811,39.389759,0 -79.191872,39.38995,0 -79.192596,39.390141,0 -79.195587,39.389702,0 -79.197998,39.387001,0 -79.200409,39.384289,0 -79.202583,39.379532,0 -79.206062,39.375851,0 -79.207771,39.372662,0 -79.209488,39.369919,0 -79.21122,39.367619,0 -79.212372,39.365799,0 -79.213516,39.36396,0 -79.216103,39.363991,0 -79.219467,39.364021,0 -79.223251,39.36404,0 -79.227173,39.363209,0 -79.228867,39.36216,0 -79.231018,39.361382,0 -79.234001,39.360512,0 -79.236969,39.36002,0 -79.239326,39.359531,0 -79.242348,39.358269,0 -79.244743,39.357368,0 -79.246544,39.35648,0 -79.250229,39.356201,0 -79.252609,39.356171,0 -79.254356,39.354782,0 -79.253723,39.352982,0 -79.251877,39.350739,0 -79.251236,39.34893,0 -79.251808,39.347561,0 -79.254143,39.345722,0 -79.25444,39.344749,0 -79.254883,39.344009,0 -79.253967,39.34214,0 -79.253242,39.340649,0 -79.254562,39.338459,0 -79.256302,39.33662,0 -79.258057,39.33569,0 -79.259842,39.335251,0 -79.262207,39.33572,0 -79.265182,39.336189,0 -79.267578,39.334389,0 -79.268288,39.332211,0 -79.269997,39.33078,0 -79.273102,39.328899,0 -79.275703,39.32814,0 -79.277122,39.327152,0 -79.279533,39.324909,0 -79.281532,39.322212,0 -79.283203,39.318619,0 -79.283821,39.31636,0 -79.283836,39.313641,0 -79.284462,39.311371,0 -79.28508,39.309559,0 -79.286644,39.307999,0 -79.287056,39.307579,0 -79.288681,39.3055,0 -79.289299,39.303242,0 -79.2911,39.301891,0 -79.292892,39.300541,0 -79.295273,39.300709,0 -79.298828,39.300209,0 -79.303001,39.300602,0 -79.30542,39.30238,0 -79.307381,39.303951,0 -79.309753,39.30537,0 -79.310333,39.305809,0 -79.31147,39.30637,0 -79.314827,39.30632,0 -79.317368,39.304909,0 -79.31916,39.303612,0 -79.320816,39.302959,0 -79.323868,39.303009,0 -79.330986,39.30246,0 -79.339287,39.297619,0 -79.342728,39.296391,0 -79.343872,39.294559,0 -79.344078,39.29277,0 -79.343552,39.290531,0 -79.343117,39.288219,0 -79.343689,39.287312,0 -79.345459,39.286831,0 -79.347221,39.2859,0 -79.348969,39.284512,0 -79.349617,39.283249,0 -79.351257,39.2813,0 -79.354179,39.27985,0 -79.356712,39.278229,0 -79.359734,39.27652,0 -79.363281,39.27557,0 -79.365967,39.275188,0 -79.367752,39.274731,0 -79.368599,39.274559,0 -79.370697,39.274181,0 -79.3722,39.273769,0 -79.375359,39.272709,0 -79.377197,39.270981,0 -79.377548,39.270599,0 -79.378891,39.2691,0 -79.380577,39.267929,0 -79.382362,39.267029,0 -79.385353,39.265831,0 -79.387077,39.263988,0 -79.390007,39.262131,0 -79.392296,39.25893,0 -79.396187,39.25584,0 -79.399727,39.251701,0 -79.404518,39.246731,0 -79.408691,39.24358,0 -79.409119,39.243259,0 -79.412086,39.241032,0 -79.413437,39.240379,0 -79.416107,39.238159,0 -79.417671,39.23682,0 -79.420052,39.235931,0 -79.421242,39.235031,0 -79.422447,39.232319,0 -79.42247,39.230049,0 -79.423088,39.227329,0 -79.424347,39.225609,0 -79.425308,39.22493,0 -79.427048,39.22401,0 -79.42907,39.223301,0 -79.429237,39.223251,0 -79.447097,39.063373,0 -79.508211,38.51628,0 -79.508087,38.516109,0 -79.494118,38.495201,0 -79.474586,38.457409,0 -79.413986,38.441109,0 -79.391556,38.434902,0 -79.358887,38.42614,0 -79.342079,38.421539,0 -79.330177,38.418282,0 -79.317703,38.414261,0 -79.311821,38.413811,0 -79.310516,38.413639,0 -79.308296,38.413349,0 -79.303558,38.414631,0 -79.303116,38.41489,0 -79.301422,38.415852,0 -79.299057,38.417202,0 -79.296524,38.41872,0 -79.295692,38.419159,0 -79.293602,38.42012,0 -79.292068,38.420589,0 -79.290802,38.42078,0 -79.286682,38.421661,0 -79.283737,38.421638,0 -79.283066,38.421638,0 -79.281258,38.421909,0 -79.279236,38.422222,0 -79.27845,38.42252,0 -79.277847,38.42342,0 -79.27784,38.424782,0 -79.278976,38.427959,0 -79.27916,38.42868,0 -79.279549,38.430229,0 -79.27887,38.433331,0 -79.278107,38.434021,0 -79.276573,38.4352,0 -79.274826,38.436302,0 -79.272987,38.437309,0 -79.27063,38.43866,0 -79.268227,38.44006,0 -79.264137,38.443279,0 -79.258797,38.448242,0 -79.257027,38.450039,0 -79.255318,38.451321,0 -79.252876,38.45319,0 -79.249931,38.454079,0 -79.246498,38.454529,0 -79.244637,38.454952,0 -79.242859,38.455849,0 -79.241783,38.457191,0 -79.241653,38.459919,0 -79.241638,38.460499,0 -79.241173,38.462631,0 -79.240578,38.465351,0 -79.239342,38.467541,0 -79.238617,38.46851,0 -79.238228,38.469101,0 -79.23703,38.470322,0 -79.232712,38.472122,0 -79.231567,38.47274,0 -79.230331,38.47345,0 -79.228569,38.474331,0 -79.227013,38.475292,0 -79.224503,38.477459,0 -79.222107,38.479771,0 -79.221558,38.480629,0 -79.221222,38.48127,0 -79.220833,38.481991,0 -79.219078,38.48473,0 -79.217247,38.486961,0 -79.214279,38.490108,0 -79.2117,38.492519,0 -79.209343,38.494331,0 -79.208878,38.49469,0 -79.207153,38.496872,0 -79.20594,38.500031,0 -79.205917,38.500999,0 -79.206329,38.502892,0 -79.207573,38.505951,0 -79.208069,38.508331,0 -79.208122,38.51152,0 -79.206909,38.515141,0 -79.205063,38.521011,0 -79.202652,38.525959,0 -79.199158,38.531879,0 -79.198639,38.532669,0 -79.195602,38.537312,0 -79.190697,38.544312,0 -79.184166,38.553371,0 -79.174019,38.56736,0 -79.168587,38.575451,0 -79.168266,38.575901,0 -79.165642,38.579079,0 -79.163712,38.581699,0 -79.162651,38.583141,0 -79.161629,38.58506,0 -79.16066,38.587521,0 -79.15947,38.59024,0 -79.15773,38.594322,0 -79.156593,38.598961,0 -79.155853,38.604382,0 -79.155243,38.607101,0 -79.154587,38.610142,0 -79.153427,38.61343,0 -79.152222,38.616119,0 -79.149338,38.619232,0 -79.146301,38.624279,0 -79.138466,38.636909,0 -79.134857,38.643681,0 -79.130669,38.64909,0 -79.12767,38.653149,0 -79.126526,38.654442,0 -79.124977,38.655861,0 -79.124161,38.65649,0 -79.12291,38.6572,0 -79.119667,38.658569,0 -79.117073,38.658882,0 -79.116127,38.65897,0 -79.114052,38.659,0 -79.112282,38.658989,0 -79.110527,38.65802,0 -79.109543,38.656979,0 -79.108803,38.656151,0 -79.107033,38.65527,0 -79.105141,38.65453,0 -79.102013,38.654869,0 -79.100273,38.65538,0 -79.09729,38.657139,0 -79.09343,38.65881,0 -79.091583,38.66468,0 -79.090378,38.666931,0 -79.088417,38.670261,0 -79.087341,38.67416,0 -79.086632,38.678421,0 -79.085411,38.682011,0 -79.085388,38.685619,0 -79.086563,38.68911,0 -79.087708,38.690681,0 -79.088882,38.692299,0 -79.0895,38.6959,0 -79.090576,38.698349,0 -79.0905,38.7015,0 -79.089287,38.705589,0 -79.088631,38.709229,0 -79.08744,38.713589,0 -79.087303,38.714352,0 -79.086342,38.716919,0 -79.085022,38.721291,0 -79.082741,38.727329,0 -79.081337,38.730522,0 -79.07975,38.734119,0 -79.074127,38.742531,0 -79.066719,38.749969,0 -79.060928,38.757359,0 -79.058426,38.761379,0 -79.057716,38.76265,0 -79.056099,38.76548,0 -79.054283,38.769089,0 -79.052986,38.773911,0 -79.052406,38.776791,0 -79.052986,38.779049,0 -79.054169,38.782059,0 -79.054672,38.784512,0 -79.054657,38.78677,0 -79.054016,38.787701,0 -79.052872,38.78886,0 -79.051086,38.790222,0 -79.043396,38.792461,0 -79.03804,38.79248,0 -79.037491,38.79248,0 -79.033318,38.792049,0 -79.030968,38.79158,0 -79.028008,38.792011,0 -79.026207,38.7938,0 -79.024399,38.79697,0 -79.023727,38.802849,0 -79.023689,38.806019,0 -79.023651,38.808739,0 -79.023018,38.811909,0 -79.022667,38.812679,0 -79.021423,38.814579,0 -79.02018,38.816139,0 -79.019409,38.816872,0 -79.017052,38.819191,0 -79.013466,38.820961,0 -79.01075,38.821819,0 -79.008698,38.822681,0 -79.00631,38.824471,0 -79.005096,38.826729,0 -79.004478,38.828991,0 -79.003906,38.830429,0 -79.00325,38.83215,0 -79.001442,38.83485,0 -78.999771,38.836731,0 -78.999046,38.837551,0 -78.997246,38.839809,0 -78.997276,38.842472,0 -78.997803,38.843151,0 -78.998772,38.844398,0 -78.99894,38.844929,0 -78.998917,38.846161,0 -78.997559,38.84893,0 -78.994698,38.851101,0 -78.948387,38.819561,0 -78.880783,38.77327,0 -78.865952,38.763119,0 -78.862396,38.769459,0 -78.859329,38.778042,0 -78.856331,38.782852,0 -78.85453,38.785542,0 -78.849617,38.792252,0 -78.848167,38.79443,0 -78.844261,38.79995,0 -78.839417,38.806702,0 -78.833687,38.813782,0 -78.828041,38.819759,0 -78.826797,38.821541,0 -78.823158,38.826939,0 -78.817467,38.8372,0 -78.810997,38.847679,0 -78.807907,38.855801,0 -78.804199,38.863861,0 -78.803253,38.865299,0 -78.800003,38.869781,0 -78.796356,38.875179,0 -78.791626,38.880562,0 -78.787437,38.885979,0 -78.781296,38.892262,0 -78.779869,38.89349,0 -78.776703,38.895882,0 -78.773926,38.897511,0 -78.771141,38.89896,0 -78.767563,38.900742,0 -78.763397,38.902061,0 -78.760414,38.903358,0 -78.757713,38.905769,0 -78.756836,38.90654,0 -78.755287,38.90799,0 -78.752663,38.910599,0 -78.750237,38.9142,0 -78.749268,38.91552,0 -78.747498,38.917919,0 -78.745117,38.921101,0 -78.741501,38.92421,0 -78.736732,38.927311,0 -78.72979,38.929779,0 -78.726067,38.931389,0 -78.722496,38.93227,0 -78.719551,38.932251,0 -78.717163,38.931808,0 -78.715508,38.93037,0 -78.714943,38.929249,0 -78.715698,38.92469,0 -78.716187,38.921051,0 -78.717056,38.91473,0 -78.718353,38.908852,0 -78.718979,38.906139,0 -78.718987,38.90519,0 -78.718697,38.904259,0 -78.716682,38.903751,0 -78.714287,38.904751,0 -78.711586,38.90686,0 -78.709091,38.909931,0 -78.708649,38.910351,0 -78.707352,38.91132,0 -78.704918,38.913052,0 -78.70166,38.915421,0 -78.699043,38.915871,0 -78.698486,38.916,0 -78.696907,38.91679,0 -78.695122,38.917679,0 -78.693367,38.91872,0 -78.692482,38.919392,0 -78.691872,38.919849,0 -78.689926,38.92131,0 -78.688896,38.922081,0 -78.687881,38.923111,0 -78.687111,38.923882,0 -78.684349,38.924809,0 -78.681801,38.925301,0 -78.680473,38.925789,0 -78.678398,38.926559,0 -78.67588,38.92749,0 -78.672409,38.93058,0 -78.666313,38.93784,0 -78.661438,38.944561,0 -78.658417,38.949982,0 -78.656006,38.95314,0 -78.653603,38.957199,0 -78.651787,38.959911,0 -78.648727,38.963409,0 -78.646927,38.96521,0 -78.643951,38.96608,0 -78.642159,38.966969,0 -78.641678,38.967171,0 -78.640457,38.96769,0 -78.638069,38.96888,0 -78.635666,38.97113,0 -78.6325,38.974998,0 -78.630676,38.977711,0 -78.628456,38.981049,0 -78.627777,38.981682,0 -78.625862,38.983109,0 -78.624626,38.983559,0 -78.623688,38.98373,0 -78.62233,38.983032,0 -78.620758,38.981449,0 -78.620781,38.979179,0 -78.620659,38.976841,0 -78.619049,38.976002,0 -78.617271,38.975979,0 -78.616226,38.975979,0 -78.615486,38.975971,0 -78.613716,38.97641,0 -78.612526,38.976398,0 -78.61129,38.975761,0 -78.61058,38.975269,0 -78.609459,38.973869,0 -78.60714,38.971569,0 -78.606583,38.969749,0 -78.606033,38.967472,0 -78.604881,38.966099,0 -78.602516,38.965622,0 -78.600693,38.966,0 -78.599503,38.966911,0 -78.597107,38.969181,0 -78.593529,38.97324,0 -78.589912,38.978661,0 -78.585556,38.985371,0 -78.580788,38.991261,0 -78.570442,39.001972,0 -78.56382,39.007332,0 -78.552277,39.018929,0 -78.571602,39.03326,0 -78.560173,39.043098,0 -78.552979,39.049839,0 -78.545647,39.057442,0 -78.542221,39.05978,0 -78.538002,39.06242,0 -78.533211,39.06498,0 -78.529648,39.066891,0 -78.525452,39.07048,0 -78.522797,39.072739,0 -78.521606,39.073929,0 -78.517952,39.077541,0 -78.512833,39.083069,0 -78.507622,39.089142,0 -78.503166,39.094311,0 -78.502701,39.09473,0 -78.496597,39.09972,0 -78.493187,39.102661,0 -78.492416,39.103142,0 -78.490013,39.104649,0 -78.485222,39.10733,0 -78.481659,39.108212,0 -78.480469,39.1082,0 -78.478096,39.1087,0 -78.47464,39.1092,0 -78.473183,39.109612,0 -78.467476,39.111351,0 -78.466446,39.111721,0 -78.463799,39.113041,0 -78.459686,39.11488,0 -78.45668,39.117111,0 -78.452461,39.120232,0 -78.44883,39.12289,0 -78.445747,39.12611,0 -78.442757,39.129631,0 -78.439552,39.134079,0 -78.43795,39.136848,0 -78.436508,39.14003,0 -78.435997,39.140881,0 -78.433548,39.14447,0 -78.430504,39.14851,0 -78.425667,39.152069,0 -78.419296,39.156239,0 -78.412163,39.159809,0 -78.406387,39.164982,0 -78.403969,39.16721,0 -78.402969,39.168671,0 -78.40271,39.169491,0 -78.402649,39.17041,0 -78.40387,39.171749,0 -78.404533,39.172089,0 -78.405968,39.172379,0 -78.408279,39.17329,0 -78.409508,39.173771,0 -78.41362,39.176529,0 -78.420036,39.179821,0 -78.421417,39.181,0 -78.423027,39.182499,0 -78.424278,39.183479,0 -78.425522,39.184719,0 -78.426689,39.18745,0 -78.426033,39.190159,0 -78.42598,39.192421,0 -78.426537,39.194241,0 -78.428276,39.195259,0 -78.430557,39.195709,0 -78.431236,39.19611,0 -78.432907,39.19709,0 -78.43409,39.198009,0 -78.435242,39.200291,0 -78.434067,39.202499,0 -78.432198,39.20525,0 -78.426773,39.21064,0 -78.418327,39.218719,0 -78.41584,39.221241,0 -78.41037,39.227131,0 -78.40773,39.230732,0 -78.406242,39.23312,0 -78.404396,39.23674,0 -78.403648,39.238392,0 -78.403137,39.241261,0 -78.402916,39.242081,0 -78.402878,39.243809,0 -78.402832,39.246071,0 -78.403969,39.249229,0 -78.405983,39.250801,0 -78.409508,39.25264,0 -78.413147,39.25407,0 -78.41629,39.25531,0 -78.418091,39.25618,0 -78.41861,39.25806,0 -78.416748,39.2612,0 -78.414101,39.263569,0 -78.411743,39.26585,0 -78.408836,39.268799,0 -78.40847,39.269161,0 -78.405647,39.272099,0 -78.403267,39.276192,0 -78.402008,39.278881,0 -78.400726,39.281071,0 -78.400291,39.281391,0 -78.398361,39.282459,0 -78.394707,39.284161,0 -78.394066,39.28463,0 -78.392441,39.285839,0 -78.390488,39.287781,0 -78.388672,39.290039,0 -78.388107,39.290852,0 -78.386917,39.292339,0 -78.385597,39.294041,0 -78.384506,39.29525,0 -78.380859,39.298832,0 -78.378433,39.30106,0 -78.373581,39.30508,0 -78.369293,39.309071,0 -78.366287,39.312241,0 -78.364906,39.313591,0 -78.362762,39.316139,0 -78.358437,39.320789,0 -78.354263,39.327389,0 -78.35318,39.328999,0 -78.350937,39.33289,0 -78.350052,39.334412,0 -78.349358,39.336411,0 -78.348709,39.33807,0 -78.348122,39.339581,0 -78.347473,39.342739,0 -78.347137,39.343712,0 -78.346512,39.34462,0 -78.342903,39.34684,0 -78.340477,39.348171,0 -78.340103,39.34874,0 -78.339249,39.34996,0 -78.339226,39.350872,0 -78.340973,39.352722,0 -78.345123,39.354099,0 -78.345596,39.35421,0 -78.35321,39.355942,0 -78.358742,39.35693,0 -78.362297,39.357491,0 -78.364006,39.358479,0 -78.365097,39.360111,0 -78.364098,39.361782,0 -78.360909,39.366119,0 -78.355843,39.372059,0 -78.35479,39.373291,0 -78.353249,39.375069,0 -78.350479,39.37859,0 -78.348663,39.38092,0 -78.346817,39.38361,0 -78.346153,39.38678,0 -78.346718,39.390121,0 -78.347229,39.391781,0 -78.348953,39.39452,0 -78.350563,39.39674,0 -78.351257,39.39772,0 -78.3536,39.39957,0 -78.356529,39.401871,0 -78.358833,39.405079,0 -78.35994,39.408722,0 -78.359337,39.412392,0 -78.35891,39.412949,0 -78.357048,39.415359,0 -78.353386,39.420311,0 -78.350922,39.422489,0 -78.350456,39.423332,0 -78.35006,39.424461,0 -78.350006,39.42672,0 -78.350296,39.428242,0 -78.350868,39.429359,0 -78.351624,39.43145,0 -78.351997,39.432541,0 -78.352432,39.433552,0 -78.352783,39.435371,0 -78.352119,39.43853,0 -78.351486,39.439442,0 -78.350883,39.440331,0 -78.34906,39.44212,0 -78.348396,39.443081,0 -78.347641,39.44474,0 -78.347008,39.447449,0 -78.346962,39.45039,0 -78.346939,39.45153,0 -78.346909,39.45335,0 -78.346893,39.455242,0 -78.346893,39.45742,0 -78.348,39.459702,0 -78.348518,39.46196,0 -78.347832,39.464581,0 -78.347496,39.465771,0 -78.347313,39.466579,0 -78.268013,39.417912,0 -78.248558,39.405128,0 -78.229912,39.392891,0 -78.18132,39.360001,0 -78.084267,39.29805,0 -78.034943,39.26688,0 -78.031502,39.2644,0 -77.995003,39.241352,0 -77.9534,39.214729,0 -77.864349,39.156681,0 -77.829941,39.134251,0 -77.826157,39.135262,0 -77.823868,39.137131,0 -77.822662,39.140949,0 -77.82222,39.142921,0 -77.821342,39.146832,0 -77.820717,39.1492,0 -77.819809,39.15155,0 -77.817848,39.15741,0 -77.815979,39.160549,0 -77.813492,39.164131,0 -77.810402,39.168159,0 -77.807358,39.170822,0 -77.805328,39.17429,0 -77.803566,39.178009,0 -77.802826,39.18298,0 -77.800919,39.187481,0 -77.799507,39.192322,0 -77.79821,39.197399,0 -77.795647,39.204502,0 -77.791931,39.21217,0 -77.791687,39.2127,0 -77.78878,39.219372,0 -77.785088,39.224762,0 -77.782028,39.228329,0 -77.781006,39.229191,0 -77.777573,39.23241,0 -77.77549,39.23423,0 -77.77475,39.235039,0 -77.773636,39.236351,0 -77.772026,39.238659,0 -77.771309,39.240429,0 -77.771019,39.241791,0 -77.770332,39.245861,0 -77.770859,39.248589,0 -77.771347,39.253132,0 -77.77095,39.254509,0 -77.770699,39.25539,0 -77.769447,39.257641,0 -77.768143,39.258919,0 -77.765808,39.261219,0 -77.763603,39.263161,0 -77.762939,39.263882,0 -77.759781,39.267391,0 -77.757339,39.27195,0 -77.755928,39.276489,0 -77.754601,39.28236,0 -77.752716,39.286419,0 -77.749626,39.290909,0 -77.747131,39.29631,0 -77.744568,39.30027,0 -77.74025,39.30518,0 -77.737122,39.31012,0 -77.735306,39.312851,0 -77.734962,39.31332,0 -77.733986,39.315041,0 -77.727303,39.319912,0 -77.719727,39.32531,0 -77.729416,39.32811,0 -77.731018,39.328571,0 -77.736443,39.33012,0 -77.741219,39.331501,0 -77.748291,39.333439,0 -77.751228,39.33485,0 -77.753052,39.33569,0 -77.75351,39.335899,0 -77.753906,39.336201,0 -77.754723,39.337181,0 -77.755882,39.338112,0 -77.757034,39.339489,0 -77.757683,39.340519,0 -77.757843,39.342392,0 -77.757889,39.344189,0 -77.756714,39.345551,0 -77.756111,39.346462,0 -77.753807,39.347599,0 -77.751976,39.348919,0 -77.748322,39.351582,0 -77.745819,39.35561,0 -77.74485,39.358269,0 -77.744476,39.36058,0 -77.7444,39.362839,0 -77.744362,39.364201,0 -77.744896,39.36602,0 -77.745438,39.367851,0 -77.745956,39.370121,0 -77.746483,39.370949,0 -77.747276,39.372772,0 -77.748528,39.375469,0 -77.749687,39.37748,0 -77.749916,39.37904,0 -77.750397,39.38063,0 -77.750343,39.38245,0 -77.750298,39.383801,0 -77.749077,39.384689,0 -77.747543,39.385201,0 -77.746078,39.38554,0 -77.743073,39.38641,0 -77.740776,39.386841,0 -77.738403,39.386841,0 -77.737137,39.38731,0 -77.735878,39.388081,0 -77.735641,39.388741,0 -77.735382,39.38945,0 -77.735191,39.390919,0 -77.735771,39.392452,0 -77.736038,39.39365,0 -77.737236,39.39772,0 -77.739548,39.404011,0 -77.743843,39.410851,0 -77.748573,39.41695,0 -77.749229,39.41914,0 -77.750343,39.421879,0 -77.751251,39.42342,0 -77.751617,39.423981,0 -77.752998,39.42503,0 -77.754013,39.425789,0 -77.755997,39.42767,0 -77.758423,39.428539,0 -77.761398,39.42894,0 -77.764946,39.429859,0 -77.767723,39.42984,0 -77.771286,39.42984,0 -77.774872,39.430279,0 -77.786331,39.43206,0 -77.792259,39.433071,0 -77.795189,39.434479,0 -77.798119,39.435669,0 -77.799911,39.437481,0 -77.80101,39.439121,0 -77.801529,39.44046,0 -77.801109,39.44109,0 -77.800377,39.442039,0 -77.798729,39.442429,0 -77.796707,39.44294,0 -77.79493,39.443012,0 -77.793976,39.442932,0 -77.791603,39.44294,0 -77.788376,39.44297,0 -77.78743,39.443401,0 -77.784653,39.444889,0 -77.784126,39.445679,0 -77.784096,39.446392,0 -77.78447,39.447491,0 -77.78447,39.448391,0 -77.785797,39.44928,0 -77.786926,39.451111,0 -77.792229,39.453472,0 -77.794632,39.45607,0 -77.796463,39.457409,0 -77.797623,39.45969,0 -77.797829,39.46069,0 -77.797043,39.46151,0 -77.79599,39.462471,0 -77.79538,39.462601,0 -77.79467,39.462711,0 -77.793159,39.462471,0 -77.789871,39.46207,0 -77.787483,39.461601,0 -77.784836,39.461502,0 -77.782143,39.46154,0 -77.78035,39.461552,0 -77.777969,39.46246,0 -77.777977,39.46336,0 -77.778763,39.465019,0 -77.779228,39.46558,0 -77.780968,39.46698,0 -77.783432,39.468281,0 -77.786354,39.469692,0 -77.793388,39.473061,0 -77.795288,39.47467,0 -77.797432,39.476742,0 -77.797806,39.477211,0 -77.798439,39.478809,0 -77.797653,39.48024,0 -77.796753,39.481209,0 -77.794296,39.482952,0 -77.789978,39.484642,0 -77.785812,39.485561,0 -77.784027,39.486019,0 -77.779266,39.487839,0 -77.776253,39.48856,0 -77.773827,39.489872,0 -77.770332,39.491489,0 -77.767662,39.49271,0 -77.766663,39.49374,0 -77.765579,39.495121,0 -77.765053,39.49662,0 -77.765823,39.498341,0 -77.767563,39.499741,0 -77.768738,39.50021,0 -77.771126,39.500641,0 -77.775726,39.500999,0 -77.779488,39.50058,0 -77.782883,39.499619,0 -77.784073,39.499161,0 -77.788612,39.496132,0 -77.790138,39.495281,0 -77.791908,39.493351,0 -77.792992,39.49279,0 -77.795967,39.490971,0 -77.799538,39.490059,0 -77.801903,39.490231,0 -77.802467,39.490269,0 -77.806557,39.49181,0 -77.810867,39.49321,0 -77.814163,39.494442,0 -77.818199,39.495419,0 -77.818977,39.495602,0 -77.824333,39.49577,0 -77.826393,39.495899,0 -77.830269,39.4963,0 -77.830864,39.49638,0 -77.833237,39.496799,0 -77.83593,39.497219,0 -77.838333,39.49757,0 -77.839172,39.497669,0 -77.841293,39.4986,0 -77.844467,39.500179,0 -77.845367,39.502232,0 -77.84539,39.504669,0 -77.844322,39.506721,0 -77.84066,39.508301,0 -77.840149,39.508522,0 -77.838966,39.509449,0 -77.837143,39.510769,0 -77.833946,39.513149,0 -77.831841,39.515362,0 -77.830978,39.516022,0 -77.829353,39.516972,0 -77.827087,39.520359,0 -77.825912,39.522629,0 -77.825333,39.526711,0 -77.825157,39.527359,0 -77.825119,39.52887,0 -77.825661,39.530689,0 -77.82679,39.531761,0 -77.82859,39.532192,0 -77.830971,39.532589,0 -77.832756,39.532619,0 -77.835747,39.532681,0 -77.836967,39.531792,0 -77.838013,39.531281,0 -77.83847,39.530762,0 -77.839882,39.52895,0 -77.840157,39.52845,0 -77.840691,39.526871,0 -77.841339,39.525059,0 -77.842003,39.522812,0 -77.842628,39.521912,0 -77.843872,39.520119,0 -77.844978,39.519409,0 -77.846909,39.51836,0 -77.849327,39.51704,0 -77.851517,39.51622,0 -77.853897,39.515751,0 -77.855949,39.515362,0 -77.858078,39.515362,0 -77.860107,39.515881,0 -77.862816,39.516762,0 -77.865852,39.519802,0 -77.86647,39.524792,0 -77.865891,39.527962,0 -77.864723,39.53159,0 -77.864143,39.53363,0 -77.864197,39.535912,0 -77.864754,39.538391,0 -77.865952,39.540199,0 -77.867752,39.542461,0 -77.87059,39.544609,0 -77.874939,39.54697,0 -77.875999,39.548199,0 -77.877617,39.548531,0 -77.881523,39.550579,0 -77.882927,39.552052,0 -77.883293,39.552422,0 -77.884148,39.5532,0 -77.885178,39.55574,0 -77.885719,39.55756,0 -77.885086,39.55891,0 -77.883827,39.56115,0 -77.881996,39.562481,0 -77.880203,39.562901,0 -77.877167,39.563709,0 -77.874191,39.564159,0 -77.87365,39.564201,0 -77.869057,39.564209,0 -77.862236,39.56443,0 -77.851166,39.565201,0 -77.844299,39.566441,0 -77.84005,39.568119,0 -77.835678,39.57201,0 -77.834618,39.57309,0 -77.8339,39.57436,0 -77.832657,39.575699,0 -77.832619,39.577049,0 -77.83136,39.5793,0 -77.831131,39.580219,0 -77.830681,39.582012,0 -77.829773,39.584721,0 -77.82991,39.587891,0 -77.830406,39.591072,0 -77.830307,39.59425,0 -77.830826,39.59697,0 -77.831398,39.599331,0 -77.832481,39.60154,0 -77.832817,39.602219,0 -77.834038,39.603752,0 -77.835373,39.604759,0 -77.837143,39.605701,0 -77.839417,39.606911,0 -77.84182,39.607349,0 -77.849007,39.60817,0 -77.862137,39.61092,0 -77.868111,39.61272,0 -77.869911,39.613171,0 -77.871696,39.613621,0 -77.8741,39.614971,0 -77.875656,39.615879,0 -77.878899,39.61718,0 -77.882156,39.618259,0 -77.883148,39.617901,0 -77.885727,39.616871,0 -77.886421,39.616081,0 -77.886032,39.614479,0 -77.884727,39.61195,0 -77.883583,39.610119,0 -77.881859,39.607819,0 -77.880737,39.60508,0 -77.881401,39.603279,0 -77.882393,39.601799,0 -77.883873,39.60104,0 -77.884499,39.600769,0 -77.885933,39.6003,0 -77.888641,39.60041,0 -77.890976,39.600479,0 -77.893417,39.60117,0 -77.901726,39.602261,0 -77.914627,39.60442,0 -77.919548,39.60574,0 -77.920723,39.606659,0 -77.922493,39.60714,0 -77.923637,39.608521,0 -77.9254,39.609909,0 -77.925423,39.610729,0 -77.927643,39.614052,0 -77.928856,39.61628,0 -77.930603,39.618542,0 -77.933388,39.620708,0 -77.936226,39.621571,0 -77.938797,39.621559,0 -77.94101,39.621101,0 -77.9422,39.62064,0 -77.943497,39.619411,0 -77.9431,39.617462,0 -77.942772,39.6161,0 -77.940178,39.614269,0 -77.936676,39.61237,0 -77.934967,39.609791,0 -77.934937,39.606159,0 -77.935516,39.60117,0 -77.935936,39.596489,0 -77.936653,39.592552,0 -77.939018,39.588009,0 -77.941048,39.587231,0 -77.942772,39.58707,0 -77.945747,39.58712,0 -77.9487,39.588531,0 -77.951019,39.590839,0 -77.950279,39.59581,0 -77.950417,39.59885,0 -77.950722,39.601261,0 -77.95108,39.602669,0 -77.951401,39.604412,0 -77.952461,39.606449,0 -77.953468,39.60836,0 -77.955269,39.609261,0 -77.957657,39.609699,0 -77.961227,39.609692,0 -77.966011,39.608768,0 -77.96727,39.60743,0 -77.969711,39.605652,0 -77.973137,39.60376,0 -77.974609,39.602631,0 -77.975517,39.601929,0 -77.978676,39.601231,0 -77.979668,39.600929,0 -77.982407,39.600582,0 -77.988052,39.600071,0 -77.992561,39.600121,0 -77.997337,39.600281,0 -77.999992,39.600479,0 -78.003578,39.601372,0 -78.006737,39.602352,0 -78.009148,39.60363,0 -78.013771,39.60767,0 -78.016167,39.610909,0 -78.023369,39.618999,0 -78.02581,39.622589,0 -78.026718,39.624142,0 -78.027641,39.625751,0 -78.03125,39.62936,0 -78.033478,39.632519,0 -78.036079,39.635231,0 -78.037933,39.636982,0 -78.040283,39.63839,0 -78.042816,39.63953,0 -78.043266,39.63974,0 -78.045776,39.641342,0 -78.046211,39.641621,0 -78.048683,39.643341,0 -78.051086,39.646049,0 -78.054703,39.649662,0 -78.055656,39.651451,0 -78.057877,39.652992,0 -78.061501,39.656528,0 -78.064926,39.659592,0 -78.069733,39.663189,0 -78.074387,39.666252,0 -78.08287,39.67009,0 -78.086182,39.671471,0 -78.089127,39.673309,0 -78.092148,39.675419,0 -78.09494,39.67667,0 -78.097977,39.678402,0 </coordinates> </LinearRing> </outerBoundaryIs> </Polygon> </Placemark> <Placemark> <name>WV-2</name> <styleUrl>#poly-F57C00-1-76-nodesc</styleUrl> <Polygon> <outerBoundaryIs> <LinearRing> <tessellate>1</tessellate> <coordinates> -80.519066,40.63855,0 -80.521843,40.637531,0 -80.531563,40.63393,0 -80.541832,40.632069,0 -80.54702,40.63055,0 -80.549622,40.629791,0 -80.555733,40.626572,0 -80.560646,40.623981,0 -80.565956,40.620159,0 -80.570793,40.617882,0 -80.573517,40.616589,0 -80.576027,40.615589,0 -80.579239,40.61562,0 -80.58326,40.616611,0 -80.587372,40.619461,0 -80.590393,40.621712,0 -80.595139,40.625042,0 -80.599373,40.625931,0 -80.603592,40.626442,0 -80.609688,40.625172,0 -80.61335,40.623871,0 -80.619003,40.622219,0 -80.623497,40.620811,0 -80.628471,40.61829,0 -80.631081,40.61684,0 -80.636147,40.613491,0 -80.638382,40.611511,0 -80.639763,40.610199,0 -80.642273,40.607071,0 -80.64695,40.603001,0 -80.650368,40.599979,0 -80.654167,40.597092,0 -80.659576,40.59341,0 -80.661606,40.59148,0 -80.662033,40.591,0 -80.66436,40.58749,0 -80.664856,40.585552,0 -80.665283,40.58289,0 -80.664856,40.579781,0 -80.66256,40.57465,0 -80.658127,40.57077,0 -80.645927,40.562252,0 -80.642311,40.558521,0 -80.639313,40.554031,0 -80.637466,40.549942,0 -80.634758,40.545719,0 -80.632492,40.542751,0 -80.630898,40.540981,0 -80.630066,40.540039,0 -80.627167,40.536072,0 -80.625427,40.533321,0 -80.624847,40.531181,0 -80.624496,40.528728,0 -80.623833,40.525131,0 -80.622017,40.52058,0 -80.620346,40.516491,0 -80.617592,40.50827,0 -80.612793,40.501579,0 -80.609802,40.497662,0 -80.607101,40.494492,0 -80.602386,40.48988,0 -80.599991,40.486271,0 -80.597763,40.482101,0 -80.597252,40.47847,0 -80.595947,40.47607,0 -80.595589,40.475269,0 -80.595673,40.46991,0 -80.597023,40.464401,0 -80.600319,40.457649,0 -80.604019,40.451359,0 -80.607803,40.445511,0 -80.610977,40.439209,0 -80.611557,40.43745,0 -80.612213,40.434921,0 -80.612762,40.42902,0 -80.613129,40.426689,0 -80.613228,40.424721,0 -80.612167,40.417,0 -80.611702,40.41201,0 -80.612236,40.40921,0 -80.612503,40.408131,0 -80.61306,40.40659,0 -80.614563,40.405281,0 -80.616173,40.40406,0 -80.620369,40.401321,0 -80.625183,40.398571,0 -80.628166,40.39629,0 -80.628769,40.395382,0 -80.629372,40.39447,0 -80.629356,40.393269,0 -80.629128,40.392311,0 -80.62738,40.390011,0 -80.623802,40.388149,0 -80.619034,40.385448,0 -80.615967,40.384159,0 -80.615486,40.3839,0 -80.611763,40.381859,0 -80.611343,40.38155,0 -80.608932,40.379772,0 -80.606873,40.375992,0 -80.606216,40.373272,0 -80.606102,40.372459,0 -80.605606,40.36919,0 -80.606178,40.36655,0 -80.60804,40.362411,0 -80.609756,40.357391,0 -80.610863,40.352119,0 -80.610291,40.348499,0 -80.609329,40.34478,0 -80.606926,40.341629,0 -80.605446,40.339279,0 -80.604607,40.337971,0 -80.602867,40.33522,0 -80.60125,40.331532,0 -80.600006,40.329731,0 -80.599594,40.326771,0 -80.599098,40.322041,0 -80.600342,40.317039,0 -80.60231,40.311169,0 -80.603569,40.309151,0 -80.605087,40.307072,0 -80.60836,40.302422,0 -80.609161,40.301281,0 -80.613426,40.295231,0 -80.615799,40.291142,0 -80.616798,40.28883,0 -80.617416,40.286911,0 -80.616699,40.28389,0 -80.616371,40.282509,0 -80.615837,40.278271,0 -80.615959,40.273739,0 -80.61721,40.269089,0 -80.619446,40.266602,0 -80.620392,40.26564,0 -80.625237,40.262131,0 -80.62999,40.259781,0 -80.635391,40.25658,0 -80.642601,40.25428,0 -80.649719,40.249752,0 -80.65284,40.246159,0 -80.655922,40.2421,0 -80.656357,40.24152,0 -80.657486,40.238701,0 -80.659286,40.234249,0 -80.660439,40.231121,0 -80.661636,40.227879,0 -80.663986,40.221981,0 -80.664848,40.217899,0 -80.665039,40.216511,0 -80.665779,40.21109,0 -80.666862,40.207451,0 -80.668617,40.20245,0 -80.670387,40.19836,0 -80.673973,40.194721,0 -80.677483,40.191002,0 -80.681107,40.18652,0 -80.684692,40.182869,0 -80.690056,40.17696,0 -80.695763,40.168781,0 -80.701408,40.16116,0 -80.702667,40.157089,0 -80.70372,40.155579,0 -80.704697,40.152481,0 -80.70591,40.14806,0 -80.706886,40.143879,0 -80.707733,40.13966,0 -80.708191,40.137699,0 -80.708656,40.134491,0 -80.708237,40.128139,0 -80.705872,40.1227,0 -80.706093,40.116772,0 -80.706223,40.10997,0 -80.707573,40.10498,0 -80.709839,40.10207,0 -80.713753,40.09919,0 -80.717003,40.096828,0 -80.718117,40.096081,0 -80.723526,40.092529,0 -80.727203,40.089859,0 -80.731003,40.086712,0 -80.731468,40.086269,0 -80.734222,40.08329,0 -80.73629,40.080109,0 -80.737099,40.078659,0 -80.73761,40.07724,0 -80.738342,40.074661,0 -80.737701,40.07103,0 -80.736107,40.067341,0 -80.733971,40.06382,0 -80.732216,40.060162,0 -80.731033,40.056801,0 -80.730507,40.053169,0 -80.730629,40.048641,0 -80.730698,40.0457,0 -80.730827,40.044769,0 -80.731361,40.041981,0 -80.732063,40.039139,0 -80.73288,40.03722,0 -80.733536,40.035671,0 -80.734062,40.03466,0 -80.736542,40.02919,0 -80.737137,40.02787,0 -80.738739,40.024132,0 -80.739006,40.023411,0 -80.739777,40.018391,0 -80.740089,40.016781,0 -80.740471,40.014771,0 -80.740662,40.008442,0 -80.739616,40.00024,0 -80.738907,39.99551,0 -80.738586,39.993431,0 -80.737541,39.987522,0 -80.737076,39.982071,0 -80.737152,39.978981,0 -80.73735,39.977169,0 -80.738503,39.97308,0 -80.740898,39.969009,0 -80.743248,39.967159,0 -80.745186,39.96542,0 -80.746582,39.96413,0 -80.751564,39.96162,0 -80.758141,39.9571,0 -80.761757,39.95293,0 -80.763443,39.948452,0 -80.76342,39.946152,0 -80.763199,39.94434,0 -80.761642,39.939232,0 -80.759216,39.93298,0 -80.75602,39.926739,0 -80.754181,39.922668,0 -80.753143,39.919262,0 -80.753006,39.918602,0 -80.753487,39.914059,0 -80.755096,39.910721,0 -80.756653,39.909771,0 -80.758232,39.909039,0 -80.761833,39.90852,0 -80.764809,39.9086,0 -80.77002,39.910431,0 -80.77536,39.912781,0 -80.776848,39.91349,0 -80.780586,39.91531,0 -80.784111,39.917019,0 -80.788307,39.917912,0 -80.792503,39.91843,0 -80.799103,39.9174,0 -80.802559,39.916252,0 -80.803253,39.915962,0 -80.805908,39.91235,0 -80.806633,39.908661,0 -80.805641,39.904972,0 -80.803703,39.899689,0 -80.800644,39.894722,0 -80.799713,39.893009,0 -80.798073,39.890411,0 -80.794563,39.887051,0 -80.791023,39.883091,0 -80.78933,39.87986,0 -80.78878,39.8783,0 -80.788452,39.876671,0 -80.787811,39.873039,0 -80.78833,39.869701,0 -80.790863,39.86628,0 -80.793297,39.864052,0 -80.796356,39.86182,0 -80.801231,39.858261,0 -80.809097,39.85474,0 -80.812637,39.85313,0 -80.818787,39.85033,0 -80.820053,39.849899,0 -80.822876,39.848301,0 -80.825272,39.846512,0 -80.826187,39.844349,0 -80.826767,39.842731,0 -80.826927,39.838329,0 -80.825798,39.834099,0 -80.824677,39.829559,0 -80.824219,39.827641,0 -80.823593,39.825001,0 -80.82254,39.819351,0 -80.822029,39.816589,0 -80.822693,39.811852,0 -80.823067,39.80925,0 -80.823479,39.806881,0 -80.825256,39.80233,0 -80.828339,39.797539,0 -80.833046,39.793411,0 -80.835213,39.79192,0 -80.838783,39.789841,0 -80.847267,39.784512,0 -80.855049,39.78014,0 -80.859779,39.776459,0 -80.863167,39.77383,0 -80.863716,39.773422,0 -80.866753,39.768879,0 -80.867989,39.765499,0 -80.867432,39.76004,0 -80.865463,39.7565,0 -80.862976,39.752079,0 -80.858452,39.748081,0 -80.854172,39.744701,0 -80.850647,39.74155,0 -80.850082,39.741001,0 -80.847092,39.738312,0 -80.84433,39.735302,0 -80.842537,39.733311,0 -80.840698,39.731251,0 -80.837166,39.72731,0 -80.833412,39.722229,0 -80.832413,39.72073,0 -80.830978,39.71862,0 -80.829239,39.716042,0 -80.828583,39.712631,0 -80.829887,39.708111,0 -80.832947,39.704979,0 -80.835739,39.702599,0 -80.836647,39.7019,0 -80.8414,39.700012,0 -80.847481,39.698109,0 -80.851669,39.69706,0 -80.855217,39.695789,0 -80.858322,39.693981,0 -80.861366,39.69175,0 -80.862907,39.688931,0 -80.863571,39.68713,0 -80.863892,39.685429,0 -80.864532,39.68166,0 -80.865219,39.677589,0 -80.864777,39.672749,0 -80.864281,39.668209,0 -80.863907,39.66386,0 -80.863846,39.663082,0 -80.864517,39.658241,0 -80.865356,39.652851,0 -80.865997,39.6492,0 -80.868507,39.64016,0 -80.871063,39.632931,0 -80.872383,39.630569,0 -80.875313,39.626289,0 -80.878258,39.622639,0 -80.883583,39.618519,0 -80.889519,39.616211,0 -80.894287,39.61573,0 -80.899681,39.616039,0 -80.903793,39.616531,0 -80.908638,39.616982,0 -80.915207,39.61694,0 -80.919922,39.616901,0 -80.921593,39.61689,0 -80.925797,39.615982,0 -80.931183,39.61414,0 -80.93605,39.611099,0 -80.940239,39.60881,0 -80.942543,39.607632,0 -80.946098,39.604919,0 -80.947884,39.60355,0 -80.954079,39.599171,0 -80.96209,39.594189,0 -80.966881,39.590992,0 -80.97541,39.585289,0 -80.98172,39.58091,0 -80.985718,39.578159,0 -80.996033,39.570122,0 -81.009361,39.560299,0 -81.013062,39.557419,0 -81.019402,39.552212,0 -81.024178,39.54771,0 -81.034126,39.541161,0 -81.036629,39.539772,0 -81.041473,39.536659,0 -81.045097,39.53352,0 -81.04718,39.53162,0 -81.052422,39.525639,0 -81.057167,39.52195,0 -81.058342,39.521091,0 -81.064217,39.516479,0 -81.073662,39.510052,0 -81.077019,39.507278,0 -81.083313,39.50177,0 -81.086578,39.49892,0 -81.090126,39.495399,0 -81.097908,39.48761,0 -81.098343,39.48716,0 -81.105263,39.476631,0 -81.112587,39.46719,0 -81.113533,39.466179,0 -81.117088,39.460911,0 -81.118652,39.458611,0 -81.123611,39.4519,0 -81.127029,39.44799,0 -81.13092,39.445721,0 -81.135666,39.444332,0 -81.14045,39.44347,0 -81.146942,39.44289,0 -81.149406,39.442741,0 -81.155357,39.44223,0 -81.162537,39.44054,0 -81.169128,39.438801,0 -81.175148,39.435692,0 -81.177826,39.4342,0 -81.179733,39.43293,0 -81.182396,39.430851,0 -81.182953,39.430302,0 -81.18541,39.427631,0 -81.18969,39.422859,0 -81.194389,39.419189,0 -81.197052,39.417122,0 -81.197922,39.416439,0 -81.201859,39.413361,0 -81.203613,39.411999,0 -81.205429,39.409279,0 -81.207832,39.403652,0 -81.208488,39.401951,0 -81.20977,39.397972,0 -81.211128,39.393471,0 -81.213501,39.388939,0 -81.215919,39.38715,0 -81.220123,39.38538,0 -81.22963,39.385929,0 -81.232101,39.38623,0 -81.233727,39.38662,0 -81.240906,39.388309,0 -81.249847,39.388279,0 -81.252838,39.387669,0 -81.256996,39.386662,0 -81.263466,39.384941,0 -81.267647,39.38364,0 -81.268593,39.38353,0 -81.272957,39.38306,0 -81.277107,39.381649,0 -81.279213,39.380711,0 -81.281242,39.379799,0 -81.285957,39.377029,0 -81.287674,39.37627,0 -81.290527,39.37521,0 -81.294701,39.373802,0 -81.300713,39.37122,0 -81.302353,39.370361,0 -81.304916,39.368999,0 -81.307137,39.36755,0 -81.309731,39.365871,0 -81.312744,39.363632,0 -81.31636,39.361889,0 -81.320168,39.359901,0 -81.327843,39.35619,0 -81.339043,39.351089,0 -81.349037,39.345089,0 -81.354347,39.34346,0 -81.357109,39.342739,0 -81.364273,39.340992,0 -81.367416,39.340801,0 -81.370979,39.340759,0 -81.371567,39.340752,0 -81.375763,39.341599,0 -81.38353,39.3438,0 -81.388962,39.34782,0 -81.393806,39.352619,0 -81.396797,39.357738,0 -81.399033,39.36306,0 -81.401306,39.369881,0 -81.401672,39.3708,0 -81.403778,39.375759,0 -81.406281,39.38208,0 -81.409988,39.38884,0 -81.410667,39.389851,0 -81.41346,39.393112,0 -81.417557,39.397682,0 -81.421677,39.40089,0 -81.425842,39.40366,0 -81.42997,39.40583,0 -81.430977,39.406429,0 -81.432899,39.40733,0 -81.44001,39.409199,0 -81.447906,39.409691,0 -81.45311,39.409271,0 -81.458496,39.407539,0 -81.464493,39.40453,0 -81.468117,39.401279,0 -81.471466,39.398289,0 -81.473831,39.395802,0 -81.476112,39.392979,0 -81.477898,39.39077,0 -81.483101,39.384781,0 -81.488068,39.379681,0 -81.49408,39.375191,0 -81.499489,39.37162,0 -81.501053,39.370781,0 -81.503647,39.36961,0 -81.514839,39.364029,0 -81.52005,39.36219,0 -81.52523,39.360489,0 -81.528267,39.359459,0 -81.531807,39.358269,0 -81.537292,39.35651,0 -81.542007,39.354179,0 -81.546097,39.35096,0 -81.550186,39.347279,0 -81.553093,39.34407,0 -81.554443,39.341652,0 -81.555252,39.33987,0 -81.556656,39.335419,0 -81.557037,39.334049,0 -81.557556,39.33041,0 -81.557487,39.32679,0 -81.558563,39.321789,0 -81.559616,39.31543,0 -81.561256,39.309059,0 -81.562286,39.301842,0 -81.562958,39.295502,0 -81.563049,39.2887,0 -81.563667,39.283192,0 -81.563789,39.27737,0 -81.564178,39.274689,0 -81.564636,39.272751,0 -81.565147,39.270611,0 -81.567513,39.268181,0 -81.569847,39.26738,0 -81.571648,39.26701,0 -81.574341,39.267319,0 -81.575829,39.26762,0 -81.581131,39.26889,0 -81.584091,39.269821,0 -81.591393,39.272869,0 -81.595886,39.274509,0 -81.60215,39.27544,0 -81.606873,39.276039,0 -81.608696,39.27631,0 -81.612541,39.275921,0 -81.614723,39.275558,0 -81.617897,39.275051,0 -81.621727,39.274712,0 -81.622673,39.274689,0 -81.627403,39.275589,0 -81.632149,39.276909,0 -81.635696,39.277439,0 -81.637283,39.277599,0 -81.64045,39.277931,0 -81.65036,39.278439,0 -81.658279,39.277561,0 -81.669006,39.275402,0 -81.672516,39.2742,0 -81.676392,39.272659,0 -81.678719,39.271271,0 -81.680969,39.269588,0 -81.68631,39.26569,0 -81.690376,39.260681,0 -81.692093,39.257481,0 -81.692802,39.2551,0 -81.693031,39.253799,0 -81.692497,39.250229,0 -81.691338,39.246529,0 -81.689949,39.24255,0 -81.689293,39.239391,0 -81.689728,39.234749,0 -81.689728,39.23077,0 -81.690361,39.227039,0 -81.690773,39.224739,0 -81.691231,39.223202,0 -81.693451,39.22123,0 -81.696381,39.220299,0 -81.699928,39.219341,0 -81.705887,39.218979,0 -81.71196,39.218601,0 -81.717873,39.217239,0 -81.721367,39.2159,0 -81.724312,39.21352,0 -81.727211,39.210312,0 -81.72892,39.207569,0 -81.731522,39.203411,0 -81.732903,39.20026,0 -81.734581,39.196602,0 -81.737541,39.193439,0 -81.740417,39.19154,0 -81.743919,39.18922,0 -81.746849,39.18737,0 -81.749573,39.18478,0 -81.751999,39.181931,0 -81.751999,39.18074,0 -81.752022,39.179592,0 -81.752487,39.175499,0 -81.752457,39.174191,0 -81.752098,39.172131,0 -81.750458,39.167389,0 -81.74688,39.160309,0 -81.743401,39.15258,0 -81.74118,39.14571,0 -81.740578,39.138969,0 -81.74028,39.13652,0 -81.740242,39.134869,0 -81.740112,39.129429,0 -81.73996,39.123089,0 -81.739906,39.121151,0 -81.739853,39.118561,0 -81.739647,39.113579,0 -81.739693,39.110409,0 -81.740318,39.106781,0 -81.740814,39.10461,0 -81.741806,39.101299,0 -81.744591,39.09594,0 -81.747383,39.092102,0 -81.748016,39.091202,0 -81.75238,39.087372,0 -81.755409,39.085369,0 -81.757408,39.084309,0 -81.76371,39.08157,0 -81.770828,39.079769,0 -81.78447,39.079399,0 -81.79097,39.080799,0 -81.793617,39.08157,0 -81.7957,39.08218,0 -81.799843,39.083561,0 -81.803062,39.084061,0 -81.806007,39.084072,0 -81.808357,39.08313,0 -81.810303,39.080421,0 -81.8106,39.07991,0 -81.811157,39.076832,0 -81.811157,39.07275,0 -81.809807,39.069511,0 -81.808891,39.067539,0 -81.807922,39.06546,0 -81.805489,39.059872,0 -81.804817,39.058208,0 -81.800743,39.051392,0 -81.795549,39.046459,0 -79.447097,39.063373,0 -79.429237,39.223251,0 -79.431503,39.22258,0 -79.432892,39.22113,0 -79.433838,39.220131,0 -79.435181,39.219231,0 -79.436226,39.21833,0 -79.438736,39.217869,0 -79.440971,39.217411,0 -79.442757,39.216999,0 -79.445747,39.215191,0 -79.44754,39.214302,0 -79.449928,39.212502,0 -79.453438,39.212189,0 -79.457001,39.212139,0 -79.461746,39.212059,0 -79.464188,39.211201,0 -79.465981,39.20985,0 -79.466896,39.20742,0 -79.46727,39.206718,0 -79.46804,39.205139,0 -79.468483,39.204601,0 -79.470802,39.203381,0 -79.472252,39.203651,0 -79.473793,39.204311,0 -79.47506,39.204769,0 -79.47612,39.205029,0 -79.478203,39.204952,0 -79.482033,39.20546,0 -79.486168,39.20644,0 -79.487152,39.206669,0 -79.487061,39.236679,0 -79.4869,39.284649,0 -79.48336,39.459259,0 -79.482826,39.483719,0 -79.481781,39.532169,0 -79.477928,39.53191,0 -79.477837,39.540962,0 -79.477783,39.54985,0 -79.477753,39.63583,0 -79.477417,39.721611,0 -79.530052,39.721672,0 -79.761772,39.722141,0 -79.855476,39.722332,0 -79.914688,39.722111,0 -80.191147,39.72168,0 -80.42437,39.721352,0 -80.517052,39.721222,0 -80.51786,39.754311,0 -80.519249,39.92989,0 -80.519562,39.963909,0 -80.519272,40.01952,0 -80.518936,40.10817,0 -80.518883,40.1619,0 -80.51873,40.28828,0 -80.518982,40.401321,0 -80.518852,40.469799,0 -80.518852,40.48019,0 -80.519066,40.63855,0 </coordinates> </LinearRing> </outerBoundaryIs> </Polygon> </Placemark> <Placemark> <name>WV-3</name> <styleUrl>#poly-FFEA00-1-76-nodesc</styleUrl> <Polygon> <outerBoundaryIs> <LinearRing> <tessellate>1</tessellate> <coordinates> -79.447097,39.063373,0 -81.795549,39.046459,0 -81.795456,39.046371,0 -81.788979,39.042259,0 -81.782509,39.037689,0 -81.779297,39.035469,0 -81.77726,39.03397,0 -81.772141,39.02964,0 -81.766693,39.02441,0 -81.763657,39.020859,0 -81.762291,39.016701,0 -81.760979,39.01128,0 -81.760887,39.00782,0 -81.760857,39.006752,0 -81.761543,39.002209,0 -81.761841,39.000111,0 -81.762421,38.997662,0 -81.764687,38.993549,0 -81.768066,38.989349,0 -81.769997,38.985939,0 -81.772346,38.98241,0 -81.773056,38.981472,0 -81.776131,38.977062,0 -81.778389,38.9716,0 -81.779091,38.963791,0 -81.777977,38.95937,0 -81.776268,38.955719,0 -81.771866,38.950432,0 -81.7677,38.946812,0 -81.765266,38.94413,0 -81.762169,38.940571,0 -81.759827,38.93829,0 -81.758667,38.935112,0 -81.758507,38.933922,0 -81.758453,38.93108,0 -81.758987,38.92952,0 -81.759926,38.92786,0 -81.762917,38.925159,0 -81.764053,38.92448,0 -81.765953,38.923721,0 -81.767616,38.92305,0 -81.768257,38.922932,0 -81.772987,38.922962,0 -81.775436,38.92329,0 -81.776596,38.923569,0 -81.781357,38.92485,0 -81.784447,38.925991,0 -81.785957,38.926659,0 -81.790672,38.929409,0 -81.795372,38.93261,0 -81.798271,38.934219,0 -81.799492,38.934891,0 -81.804184,38.939911,0 -81.807549,38.942532,0 -81.810677,38.94397,0 -81.81144,38.944332,0 -81.814186,38.945309,0 -81.819763,38.94606,0 -81.822601,38.946011,0 -81.823639,38.945999,0 -81.827988,38.944118,0 -81.831947,38.94141,0 -81.835548,38.937809,0 -81.836906,38.93626,0 -81.838974,38.933529,0 -81.841217,38.92942,0 -81.841957,38.926609,0 -81.842171,38.925159,0 -81.842766,38.92123,0 -81.842827,38.917,0 -81.843483,38.912022,0 -81.844681,38.906582,0 -81.846512,38.902969,0 -81.850487,38.897999,0 -81.852112,38.896049,0 -81.854279,38.89394,0 -81.858597,38.890671,0 -81.859047,38.89035,0 -81.8638,38.886921,0 -81.865677,38.88559,0 -81.869026,38.883221,0 -81.872864,38.881069,0 -81.874847,38.879959,0 -81.880783,38.876091,0 -81.881241,38.875771,0 -81.887123,38.873878,0 -81.890503,38.874191,0 -81.896408,38.874672,0 -81.905823,38.877941,0 -81.912163,38.881161,0 -81.914543,38.882519,0 -81.922386,38.887871,0 -81.923706,38.88932,0 -81.926018,38.891861,0 -81.927856,38.894562,0 -81.928162,38.896149,0 -81.928146,38.89748,0 -81.927376,38.899971,0 -81.92514,38.90321,0 -81.923393,38.90593,0 -81.922218,38.906929,0 -81.918793,38.90966,0 -81.914742,38.912899,0 -81.909668,38.917351,0 -81.908722,38.918251,0 -81.905487,38.921402,0 -81.901901,38.925461,0 -81.900101,38.928619,0 -81.899483,38.931789,0 -81.900543,38.934872,0 -81.902458,38.939011,0 -81.90612,38.94521,0 -81.912346,38.953701,0 -81.912949,38.955318,0 -81.914642,38.959969,0 -81.915833,38.962769,0 -81.916962,38.96542,0 -81.919838,38.969559,0 -81.923409,38.97406,0 -81.926338,38.9786,0 -81.927612,38.980389,0 -81.929016,38.982941,0 -81.931473,38.98745,0 -81.934532,38.990871,0 -81.936913,38.993122,0 -81.941208,38.99493,0 -81.943962,38.995609,0 -81.945351,38.995911,0 -81.948906,38.995781,0 -81.950241,38.99575,0 -81.95166,38.995491,0 -81.952507,38.995312,0 -81.955383,38.994308,0 -81.958557,38.993561,0 -81.959503,38.99334,0 -81.963623,38.992371,0 -81.968941,38.99229,0 -81.972122,38.992538,0 -81.973579,38.99287,0 -81.975456,38.993599,0 -81.975937,38.99379,0 -81.977898,38.994862,0 -81.980652,38.997429,0 -81.981659,38.9986,0 -81.98278,39.000229,0 -81.984642,39.003372,0 -81.986488,39.009239,0 -81.989128,39.015991,0 -81.992348,39.020119,0 -81.997627,39.02356,0 -82.003036,39.026199,0 -82.009636,39.028282,0 -82.010628,39.028419,0 -82.020287,39.029091,0 -82.025543,39.02869,0 -82.027817,39.028519,0 -82.02877,39.028141,0 -82.032066,39.02663,0 -82.036133,39.024841,0 -82.039711,39.020771,0 -82.042107,39.016701,0 -82.04332,39.011719,0 -82.043373,39.006741,0 -82.043907,39.002419,0 -82.046089,38.998291,0 -82.047157,38.99691,0 -82.049347,38.99498,0 -82.053856,38.991131,0 -82.061256,38.986912,0 -82.061722,38.986649,0 -82.067017,38.984802,0 -82.072693,38.98251,0 -82.078712,38.97961,0 -82.083282,38.977409,0 -82.084534,38.976749,0 -82.086647,38.974869,0 -82.089127,38.97245,0 -82.091431,38.968979,0 -82.093323,38.96476,0 -82.094307,38.96302,0 -82.094772,38.961658,0 -82.096458,38.95821,0 -82.097008,38.957088,0 -82.099258,38.95298,0 -82.099892,38.95208,0 -82.101532,38.94976,0 -82.102211,38.948521,0 -82.103493,38.945309,0 -82.104317,38.943829,0 -82.105278,38.942139,0 -82.108864,38.935799,0 -82.111198,38.932091,0 -82.115059,38.926411,0 -82.11982,38.919491,0 -82.120743,38.918159,0 -82.12413,38.912659,0 -82.127968,38.908699,0 -82.131607,38.905731,0 -82.136253,38.90234,0 -82.139221,38.898731,0 -82.141609,38.894199,0 -82.142143,38.89278,0 -82.142418,38.891029,0 -82.14283,38.886971,0 -82.142128,38.881069,0 -82.141792,38.879711,0 -82.140518,38.876072,0 -82.138802,38.87117,0 -82.138153,38.866169,0 -82.137993,38.861191,0 -82.138908,38.853859,0 -82.140663,38.846611,0 -82.143059,38.840729,0 -82.147202,38.835281,0 -82.151367,38.83123,0 -82.156502,38.826889,0 -82.161148,38.82365,0 -82.168541,38.81992,0 -82.173927,38.81831,0 -82.174461,38.81813,0 -82.180969,38.815899,0 -82.185547,38.81435,0 -82.186226,38.814102,0 -82.190918,38.81266,0 -82.194977,38.810322,0 -82.196953,38.80933,0 -82.19931,38.807789,0 -82.205238,38.803272,0 -82.20945,38.800541,0 -82.214706,38.794231,0 -82.216187,38.791309,0 -82.217346,38.788162,0 -82.217796,38.783619,0 -82.218323,38.778629,0 -82.217522,38.774559,0 -82.21627,38.77232,0 -82.214638,38.770531,0 -82.213631,38.769749,0 -82.210098,38.767929,0 -82.207153,38.766109,0 -82.203636,38.764832,0 -82.200607,38.762169,0 -82.196587,38.758789,0 -82.194412,38.75507,0 -82.193207,38.751419,0 -82.193108,38.74794,0 -82.192963,38.743259,0 -82.192802,38.737831,0 -82.191467,38.732861,0 -82.187683,38.724319,0 -82.185623,38.72015,0 -82.183907,38.716679,0 -82.183052,38.714989,0 -82.181419,38.711201,0 -82.181747,38.704021,0 -82.182823,38.699921,0 -82.185051,38.695801,0 -82.187843,38.690311,0 -82.188881,38.68576,0 -82.189217,38.682789,0 -82.189217,38.68177,0 -82.188408,38.677631,0 -82.187996,38.67588,0 -82.185387,38.66769,0 -82.181541,38.65733,0 -82.176849,38.646889,0 -82.176483,38.646091,0 -82.17276,38.639351,0 -82.170708,38.629871,0 -82.170006,38.625702,0 -82.169449,38.621429,0 -82.170197,38.617249,0 -82.1707,38.614651,0 -82.172974,38.608501,0 -82.175781,38.604332,0 -82.180428,38.600231,0 -82.182579,38.598709,0 -82.185463,38.597,0 -82.187393,38.595699,0 -82.190262,38.594162,0 -82.194107,38.59285,0 -82.197258,38.592041,0 -82.203537,38.59166,0 -82.204323,38.59161,0 -82.21257,38.590721,0 -82.215469,38.59108,0 -82.223747,38.59211,0 -82.231461,38.593952,0 -82.23848,38.59568,0 -82.244926,38.59713,0 -82.249321,38.59782,0 -82.251038,38.598061,0 -82.257507,38.597931,0 -82.262207,38.597401,0 -82.265312,38.596439,0 -82.266716,38.595821,0 -82.271477,38.59269,0 -82.277832,38.58849,0 -82.281868,38.585701,0 -82.284569,38.58395,0 -82.284981,38.583599,0 -82.288193,38.580601,0 -82.289642,38.57822,0 -82.290321,38.576832,0 -82.291962,38.573071,0 -82.292526,38.568729,0 -82.292702,38.566639,0 -82.292709,38.56414,0 -82.292717,38.55825,0 -82.29216,38.551449,0 -82.292763,38.548729,0 -82.293358,38.544201,0 -82.293869,38.54147,0 -82.296181,38.53466,0 -82.298378,38.530079,0 -82.300507,38.52565,0 -82.30159,38.52095,0 -82.302597,38.514591,0 -82.303017,38.50959,0 -82.304016,38.503681,0 -82.304947,38.49596,0 -82.305212,38.494658,0 -79.695843,38.483815,0 -79.695831,38.487709,0 -79.695518,38.489349,0 -79.694969,38.490841,0 -79.69471,38.492081,0 -79.694054,38.493591,0 -79.692268,38.49585,0 -79.689903,38.498119,0 -79.688133,38.49947,0 -79.686943,38.50069,0 -79.686363,38.501282,0 -79.684593,38.50399,0 -79.683311,38.50634,0 -79.682838,38.50679,0 -79.681038,38.508522,0 -79.679283,38.51041,0 -79.676201,38.510811,0 -79.673256,38.511269,0 -79.671036,38.511299,0 -79.669739,38.511322,0 -79.667221,38.51178,0 -79.664551,38.513,0 -79.66333,38.514469,0 -79.662773,38.516171,0 -79.663353,38.51844,0 -79.665642,38.52306,0 -79.667412,38.524872,0 -79.669182,38.527142,0 -79.670364,38.52895,0 -79.670364,38.530312,0 -79.669189,38.53212,0 -79.667389,38.534309,0 -79.66687,38.535889,0 -79.667023,38.53664,0 -79.667961,38.538849,0 -79.669144,38.541119,0 -79.669746,38.54657,0 -79.668503,38.552902,0 -79.667297,38.555161,0 -79.666451,38.5569,0 -79.665169,38.558941,0 -79.664383,38.559299,0 -79.662788,38.56023,0 -79.661606,38.561142,0 -79.66021,38.562851,0 -79.660202,38.564659,0 -79.661369,38.566929,0 -79.661942,38.569191,0 -79.661926,38.569962,0 -79.661636,38.570652,0 -79.659332,38.573891,0 -79.65757,38.57523,0 -79.655426,38.577789,0 -79.654236,38.580509,0 -79.653641,38.582321,0 -79.65316,38.58305,0 -79.651863,38.58503,0 -79.650078,38.5882,0 -79.648117,38.590569,0 -79.645973,38.591869,0 -79.643501,38.59198,0 -79.642853,38.59198,0 -79.640961,38.59169,0 -79.640053,38.591339,0 -79.630058,38.587688,0 -79.618477,38.582951,0 -79.608078,38.578419,0 -79.592453,38.571869,0 -79.588638,38.570301,0 -79.580757,38.56749,0 -79.573341,38.565319,0 -79.569557,38.564381,0 -79.562737,38.562599,0 -79.554283,38.56023,0 -79.549202,38.558521,0 -79.544342,38.55685,0 -79.543716,38.556572,0 -79.538658,38.553921,0 -79.53614,38.551991,0 -79.534477,38.549911,0 -79.530952,38.54538,0 -79.524902,38.538719,0 -79.522667,38.536098,0 -79.515663,38.526562,0 -79.508211,38.51628,0 -79.447097,39.063373,0 </coordinates> </LinearRing> </outerBoundaryIs> </Polygon> </Placemark> <Placemark> <name>WV-4</name> <styleUrl>#poly-01579B-1-76-nodesc</styleUrl> <Polygon> <outerBoundaryIs> <LinearRing> <tessellate>1</tessellate> <coordinates> -79.691353,38.43512,0 -79.690742,38.437382,0 -79.68956,38.43919,0 -79.69014,38.44146,0 -79.690727,38.44281,0 -79.691246,38.44521,0 -79.690109,38.447811,0 -79.688339,38.45052,0 -79.687737,38.454151,0 -79.687721,38.456871,0 -79.689011,38.460941,0 -79.690781,38.464111,0 -79.693138,38.46682,0 -79.693527,38.467201,0 -79.695503,38.46909,0 -79.6968,38.470421,0 -79.697067,38.47094,0 -79.69706,38.473209,0 -79.696861,38.47411,0 -79.696457,38.475922,0 -79.695862,38.478642,0 -79.695847,38.480869,0 -79.695847,38.482719,0 -79.695843,38.483815,0 -82.305212,38.494658,0 -82.305916,38.491199,0 -82.307632,38.484852,0 -82.309807,38.48093,0 -82.311768,38.478062,0 -82.312973,38.47398,0 -82.314133,38.47036,0 -82.315147,38.464939,0 -82.31572,38.46241,0 -82.316513,38.460392,0 -82.3181,38.455551,0 -82.318291,38.454952,0 -82.321823,38.450882,0 -82.325363,38.44817,0 -82.330368,38.445171,0 -82.33477,38.443649,0 -82.337936,38.442291,0 -82.339676,38.441811,0 -82.346123,38.440781,0 -82.351379,38.43977,0 -82.358971,38.438259,0 -82.365921,38.43689,0 -82.367607,38.4366,0 -82.371239,38.436211,0 -82.377693,38.435642,0 -82.38237,38.435089,0 -82.385307,38.435089,0 -82.39119,38.436459,0 -82.394127,38.436909,0 -82.398239,38.43782,0 -82.400597,38.438251,0 -82.403931,38.438599,0 -82.405418,38.438709,0 -82.409988,38.437832,0 -82.412903,38.437191,0 -82.414169,38.436741,0 -82.417183,38.435741,0 -82.419983,38.434811,0 -82.424637,38.433361,0 -82.433487,38.430141,0 -82.437889,38.429131,0 -82.451126,38.426071,0 -82.465416,38.422989,0 -82.472847,38.421551,0 -82.478737,38.420189,0 -82.484016,38.418831,0 -82.491066,38.41708,0 -82.495712,38.415169,0 -82.49958,38.41357,0 -82.501503,38.412781,0 -82.502663,38.4123,0 -82.507294,38.4104,0 -82.517281,38.407742,0 -82.518089,38.40752,0 -82.530006,38.404491,0 -82.539116,38.403419,0 -82.549789,38.4025,0 -82.558006,38.402519,0 -82.55957,38.40276,0 -82.566238,38.403851,0 -82.575638,38.407021,0 -82.578743,38.408222,0 -82.581276,38.409321,0 -82.585487,38.411949,0 -82.590302,38.415501,0 -82.592789,38.418591,0 -82.593079,38.415852,0 -82.5933,38.41452,0 -82.594147,38.409542,0 -82.592438,38.40123,0 -82.592697,38.400009,0 -82.593529,38.3979,0 -82.594353,38.39666,0 -82.596359,38.393581,0 -82.594833,38.38818,0 -82.591827,38.379112,0 -82.593376,38.368721,0 -82.595833,38.352451,0 -82.594307,38.346069,0 -82.590088,38.342491,0 -82.582802,38.336319,0 -82.57859,38.332752,0 -82.575623,38.330151,0 -82.572426,38.323071,0 -82.571533,38.315609,0 -82.573448,38.3106,0 -82.579147,38.297401,0 -82.578476,38.288891,0 -82.578186,38.28788,0 -82.576866,38.283371,0 -82.573196,38.27211,0 -82.5737,38.259418,0 -82.578011,38.250759,0 -82.579071,38.24971,0 -82.58239,38.247002,0 -82.583038,38.246529,0 -82.587799,38.244789,0 -82.588959,38.24437,0 -82.604218,38.24382,0 -82.609146,38.237591,0 -82.609642,38.2337,0 -82.609596,38.230991,0 -82.608299,38.22739,0 -82.606689,38.225971,0 -82.603943,38.224079,0 -82.598122,38.2201,0 -82.595337,38.2164,0 -82.595627,38.20916,0 -82.595917,38.20829,0 -82.598846,38.199581,0 -82.602287,38.1894,0 -82.604958,38.182579,0 -82.606529,38.177559,0 -82.606949,38.176861,0 -82.610527,38.172779,0 -82.617073,38.170219,0 -82.618286,38.170238,0 -82.633812,38.170589,0 -82.639366,38.168919,0 -82.640778,38.163059,0 -82.638069,38.157021,0 -82.636467,38.153439,0 -82.636681,38.14801,0 -82.636963,38.140739,0 -82.636818,38.140179,0 -82.635223,38.139252,0 -82.62812,38.13686,0 -82.622551,38.134979,0 -82.619209,38.128632,0 -82.616013,38.122581,0 -82.609833,38.121269,0 -82.600227,38.119232,0 -82.599182,38.119011,0 -82.589943,38.11105,0 -82.587097,38.108139,0 -82.586258,38.106911,0 -82.585373,38.104359,0 -82.585152,38.10371,0 -82.585083,38.100029,0 -82.584953,38.094559,0 -82.582993,38.091,0 -82.58065,38.089161,0 -82.575012,38.085331,0 -82.573639,38.084389,0 -82.564941,38.082371,0 -82.564453,38.081799,0 -82.563797,38.081032,0 -82.558426,38.074718,0 -82.557358,38.07431,0 -82.551369,38.072559,0 -82.549522,38.071762,0 -82.548927,38.067669,0 -82.548187,38.06543,0 -82.547752,38.06451,0 -82.54258,38.057789,0 -82.542244,38.05394,0 -82.542137,38.052799,0 -82.537796,38.046761,0 -82.537163,38.045879,0 -82.536247,38.041691,0 -82.534698,38.034489,0 -82.534027,38.03384,0 -82.530037,38.029949,0 -82.525383,38.02541,0 -82.524406,38.020149,0 -82.523827,38.016029,0 -82.517906,38.009392,0 -82.516716,38.008121,0 -82.516373,38.007149,0 -82.51683,38.00597,0 -82.519066,38.002831,0 -82.517906,38.001431,0 -82.509666,38.002022,0 -82.508537,38.00211,0 -82.50045,37.999229,0 -82.499702,37.998959,0 -82.497627,37.998131,0 -82.490067,37.99757,0 -82.485756,37.994492,0 -82.485451,37.991459,0 -82.48539,37.989651,0 -82.485359,37.988739,0 -82.483467,37.986069,0 -82.476311,37.986382,0 -82.472473,37.986549,0 -82.470093,37.986332,0 -82.468681,37.985821,0 -82.463928,37.982861,0 -82.463531,37.98238,0 -82.463478,37.980652,0 -82.46373,37.979179,0 -82.463882,37.978279,0 -82.465416,37.977089,0 -82.466339,37.976582,0 -82.476639,37.973961,0 -82.479317,37.97327,0 -82.482971,37.96973,0 -82.482063,37.964661,0 -82.473991,37.960899,0 -82.471451,37.957062,0 -82.472061,37.95615,0 -82.480011,37.950359,0 -82.481691,37.949135,0 -80.059735,37.952445,0 -80.056602,37.95446,0 -80.054863,37.955372,0 -80.049629,37.95948,0 -80.047974,37.960979,0 -80.045578,37.96312,0 -80.043121,37.96505,0 -80.041817,37.9664,0 -80.039619,37.968391,0 -80.038307,37.96957,0 -80.034233,37.973202,0 -80.030136,37.975922,0 -80.025467,37.979099,0 -80.021797,37.98167,0 -80.019638,37.983181,0 -80.014839,37.986889,0 -80.009598,37.990509,0 -80.004913,37.99366,0 -80.003166,37.995029,0 -79.999222,37.997292,0 -79.997963,37.999599,0 -79.996887,38.001331,0 -79.996231,38.004581,0 -79.995056,38.00819,0 -79.993881,38.010429,0 -79.992188,38.012299,0 -79.990448,38.01366,0 -79.988037,38.015442,0 -79.987152,38.016819,0 -79.985809,38.018669,0 -79.98291,38.022312,0 -79.980003,38.02504,0 -79.978706,38.026821,0 -79.977692,38.028221,0 -79.975227,38.031212,0 -79.973076,38.035049,0 -79.972816,38.03553,0 -79.971329,38.03867,0 -79.969032,38.044571,0 -79.964417,38.05592,0 -79.9627,38.060009,0 -79.961617,38.062241,0 -79.96003,38.065212,0 -79.959763,38.066082,0 -79.958862,38.067471,0 -79.956551,38.07164,0 -79.955353,38.073822,0 -79.954437,38.075409,0 -79.953011,38.0779,0 -79.950493,38.082199,0 -79.947739,38.085602,0 -79.943642,38.08923,0 -79.941246,38.09182,0 -79.940681,38.09227,0 -79.934868,38.09692,0 -79.930176,38.10146,0 -79.928429,38.104172,0 -79.927246,38.106441,0 -79.926743,38.108631,0 -79.929077,38.110081,0 -79.92971,38.11018,0 -79.932022,38.110882,0 -79.934357,38.111782,0 -79.935753,38.112572,0 -79.936607,38.113239,0 -79.937103,38.113632,0 -79.938477,38.115391,0 -79.939827,38.117119,0 -79.940117,38.117779,0 -79.940697,38.121861,0 -79.940857,38.12291,0 -79.94088,38.125351,0 -79.94149,38.128979,0 -79.941498,38.131321,0 -79.941147,38.132572,0 -79.940346,38.133511,0 -79.939041,38.134281,0 -79.938347,38.134541,0 -79.93589,38.135361,0 -79.93425,38.135899,0 -79.930992,38.137161,0 -79.92926,38.138988,0 -79.928101,38.141262,0 -79.926949,38.14444,0 -79.925209,38.14716,0 -79.92347,38.149441,0 -79.921936,38.150631,0 -79.920563,38.151711,0 -79.918907,38.153,0 -79.917847,38.154022,0 -79.917259,38.156292,0 -79.917076,38.157009,0 -79.917076,38.15852,0 -79.917091,38.159859,0 -79.917252,38.160942,0 -79.917252,38.16264,0 -79.915977,38.16428,0 -79.915489,38.164902,0 -79.914253,38.16766,0 -79.915451,38.169472,0 -79.916702,38.17075,0 -79.917816,38.173061,0 -79.917236,38.174419,0 -79.917236,38.176689,0 -79.918396,38.178951,0 -79.918976,38.181671,0 -79.917809,38.183941,0 -79.916046,38.185749,0 -79.909637,38.188461,0 -79.904961,38.189381,0 -79.901459,38.191212,0 -79.898537,38.193031,0 -79.897308,38.194351,0 -79.895126,38.198971,0 -79.892731,38.20166,0 -79.890976,38.20348,0 -79.888092,38.205379,0 -79.884987,38.20657,0 -79.881943,38.207581,0 -79.88105,38.208042,0 -79.879097,38.208912,0 -79.876793,38.21019,0 -79.875237,38.211212,0 -79.872879,38.213051,0 -79.868553,38.217869,0 -79.864456,38.22242,0 -79.862106,38.22604,0 -79.86058,38.227989,0 -79.860237,38.228371,0 -79.858307,38.22987,0 -79.8554,38.231689,0 -79.853653,38.232601,0 -79.851311,38.234421,0 -79.850136,38.235779,0 -79.849106,38.236862,0 -79.848396,38.237602,0 -79.845467,38.23988,0 -79.844292,38.240341,0 -79.843338,38.24052,0 -79.841774,38.241009,0 -79.840408,38.241421,0 -79.836296,38.241871,0 -79.834541,38.242321,0 -79.832779,38.243679,0 -79.831596,38.245941,0 -79.830498,38.24691,0 -79.829033,38.24765,0 -79.827927,38.248081,0 -79.825592,38.248089,0 -79.822067,38.249001,0 -79.821312,38.249241,0 -79.819153,38.24992,0 -79.816811,38.250832,0 -79.814598,38.25227,0 -79.814003,38.254982,0 -79.812241,38.257702,0 -79.809891,38.25951,0 -79.806366,38.25996,0 -79.803436,38.26086,0 -79.799873,38.262199,0 -79.795807,38.264019,0 -79.790497,38.2663,0 -79.78817,38.268581,0 -79.78701,38.272659,0 -79.788147,38.276241,0 -79.789391,38.281269,0 -79.792267,38.286289,0 -79.794647,38.290379,0 -79.795219,38.290909,0 -79.797493,38.29303,0 -79.79995,38.294941,0 -79.801003,38.29575,0 -79.801743,38.296471,0 -79.80294,38.298,0 -79.805893,38.300709,0 -79.808243,38.303879,0 -79.80825,38.30632,0 -79.808006,38.307999,0 -79.807533,38.309299,0 -79.806511,38.311142,0 -79.804886,38.312912,0 -79.803291,38.314339,0 -79.800346,38.317051,0 -79.798004,38.319771,0 -79.795837,38.321709,0 -79.794243,38.322948,0 -79.792076,38.324501,0 -79.786827,38.327911,0 -79.781387,38.330719,0 -79.780937,38.33102,0 -79.777863,38.333412,0 -79.773819,38.336632,0 -79.769783,38.342831,0 -79.769112,38.344311,0 -79.767349,38.347492,0 -79.766136,38.35017,0 -79.765556,38.350792,0 -79.763268,38.35294,0 -79.761269,38.354481,0 -79.760353,38.355049,0 -79.759132,38.355522,0 -79.756821,38.356121,0 -79.754677,38.356129,0 -79.753296,38.355949,0 -79.751579,38.355751,0 -79.749191,38.355232,0 -79.747261,38.35498,0 -79.745659,38.354782,0 -79.742126,38.35434,0 -79.738029,38.354801,0 -79.736267,38.355259,0 -79.73391,38.3563,0 -79.732162,38.357262,0 -79.731277,38.357941,0 -79.729828,38.359352,0 -79.727409,38.36161,0 -79.726936,38.364479,0 -79.727577,38.367001,0 -79.729179,38.369499,0 -79.730476,38.371109,0 -79.731506,38.373169,0 -79.73101,38.37677,0 -79.730377,38.37949,0 -79.727417,38.385849,0 -79.725067,38.389481,0 -79.72451,38.390259,0 -79.722633,38.393501,0 -79.721756,38.394619,0 -79.720863,38.39576,0 -79.719872,38.397789,0 -79.719093,38.39938,0 -79.718323,38.400372,0 -79.717323,38.401642,0 -79.715446,38.404232,0 -79.714371,38.40572,0 -79.712013,38.40797,0 -79.711029,38.409031,0 -79.709061,38.41114,0 -79.706429,38.414612,0 -79.705673,38.415482,0 -79.704338,38.417019,0 -79.701981,38.419281,0 -79.699043,38.421539,0 -79.696678,38.423801,0 -79.695976,38.425129,0 -79.695381,38.426231,0 -79.694901,38.426971,0 -79.694313,38.42878,0 -79.693123,38.430141,0 -79.691353,38.43195,0 -79.691353,38.433762,0 -79.691353,38.43512,0 </coordinates> </LinearRing> </outerBoundaryIs> </Polygon> </Placemark> <Placemark> <name>WV-5</name> <styleUrl>#poly-C2185B-1-76-nodesc</styleUrl> <Polygon> <outerBoundaryIs> <LinearRing> <tessellate>1</tessellate> <coordinates> -80.108223,37.91523,0 -80.103546,37.918831,0 -80.099472,37.921539,0 -80.098633,37.922089,0 -80.096039,37.92345,0 -80.093063,37.92522,0 -80.091377,37.927399,0 -80.087891,37.931931,0 -80.084396,37.935562,0 -80.080307,37.938732,0 -80.078453,37.940479,0 -80.077507,37.941219,0 -80.075439,37.942841,0 -80.070976,37.945992,0 -80.067589,37.948021,0 -80.062988,37.950352,0 -80.059735,37.952445,0 -82.481691,37.949135,0 -82.483879,37.94754,0 -82.490417,37.945591,0 -82.495377,37.944279,0 -82.495506,37.943359,0 -82.495491,37.942719,0 -82.491287,37.940769,0 -82.490768,37.940529,0 -82.489571,37.937778,0 -82.490807,37.93642,0 -82.494797,37.93615,0 -82.500023,37.93581,0 -82.501083,37.935371,0 -82.501457,37.931641,0 -82.49559,37.92918,0 -82.493401,37.928329,0 -82.484543,37.92741,0 -82.481537,37.927101,0 -82.481171,37.926571,0 -82.480827,37.92263,0 -82.48745,37.918179,0 -82.48587,37.91687,0 -82.48468,37.916672,0 -82.48175,37.916199,0 -82.478737,37.916119,0 -82.474747,37.913342,0 -82.47419,37.906231,0 -82.474068,37.90464,0 -82.473747,37.903721,0 -82.471619,37.903332,0 -82.471008,37.903339,0 -82.470207,37.904209,0 -82.469612,37.905632,0 -82.468681,37.909279,0 -82.468216,37.911121,0 -82.467697,37.913151,0 -82.463661,37.91394,0 -82.462326,37.912159,0 -82.460548,37.910351,0 -82.458786,37.909939,0 -82.456436,37.909531,0 -82.453506,37.90913,0 -82.45108,37.90815,0 -82.436813,37.90012,0 -82.436073,37.899071,0 -82.435707,37.89856,0 -82.434471,37.89679,0 -82.431992,37.89325,0 -82.430779,37.892361,0 -82.430336,37.891712,0 -82.428574,37.890682,0 -82.422623,37.887218,0 -82.420052,37.885319,0 -82.419762,37.884899,0 -82.418823,37.88353,0 -82.418167,37.881279,0 -82.418083,37.878559,0 -82.418007,37.876289,0 -82.417313,37.873131,0 -82.416412,37.872299,0 -82.411888,37.869942,0 -82.408928,37.868401,0 -82.413467,37.865971,0 -82.42263,37.862122,0 -82.417633,37.85762,0 -82.415886,37.856049,0 -82.416939,37.851791,0 -82.417381,37.849972,0 -82.417831,37.848129,0 -82.416458,37.846851,0 -82.41497,37.845749,0 -82.410591,37.84322,0 -82.409996,37.842472,0 -82.403938,37.83474,0 -82.399132,37.828629,0 -82.401878,37.813389,0 -82.400726,37.81134,0 -82.400131,37.81105,0 -82.396797,37.810181,0 -82.388329,37.816372,0 -82.384598,37.817101,0 -82.383202,37.815731,0 -82.382858,37.815269,0 -82.379173,37.81039,0 -82.373917,37.80344,0 -82.368011,37.802231,0 -82.363708,37.797749,0 -82.358223,37.795471,0 -82.353752,37.793789,0 -82.34761,37.788559,0 -82.339951,37.787071,0 -82.339241,37.786079,0 -82.337379,37.779961,0 -82.336563,37.777279,0 -82.330276,37.776451,0 -82.327736,37.776249,0 -82.32325,37.773899,0 -82.323883,37.77116,0 -82.327599,37.76973,0 -82.330681,37.768532,0 -82.331207,37.76833,0 -82.331467,37.767632,0 -82.331123,37.765999,0 -82.319153,37.76593,0 -82.313622,37.7659,0 -82.31237,37.765369,0 -82.311867,37.764999,0 -82.311211,37.764042,0 -82.310974,37.76236,0 -82.31118,37.761841,0 -82.312897,37.76088,0 -82.319801,37.758049,0 -82.321663,37.75428,0 -82.322052,37.75351,0 -82.322983,37.75164,0 -82.323547,37.751221,0 -82.325912,37.7495,0 -82.330536,37.746132,0 -82.331017,37.744801,0 -82.331528,37.742329,0 -82.327507,37.740089,0 -82.326828,37.739719,0 -82.318573,37.735111,0 -82.317841,37.73452,0 -82.31591,37.72501,0 -82.315201,37.722771,0 -82.314888,37.722309,0 -82.313873,37.72134,0 -82.313446,37.72094,0 -82.311562,37.719139,0 -82.307327,37.709499,0 -82.303322,37.708069,0 -82.300133,37.70676,0 -82.297173,37.70393,0 -82.296593,37.703209,0 -82.299072,37.697979,0 -82.300934,37.694069,0 -82.298447,37.690472,0 -82.295486,37.68652,0 -82.29583,37.686111,0 -82.302132,37.678261,0 -82.29641,37.679279,0 -82.294807,37.677151,0 -82.290062,37.670849,0 -82.287323,37.67131,0 -82.286308,37.672989,0 -82.285782,37.674809,0 -82.282379,37.677559,0 -82.280777,37.677509,0 -82.277069,37.673111,0 -82.274071,37.669689,0 -82.268036,37.665169,0 -82.267036,37.664509,0 -82.255386,37.659061,0 -82.252151,37.659119,0 -82.24752,37.65966,0 -82.244652,37.661072,0 -82.241211,37.662491,0 -82.239326,37.662529,0 -82.234917,37.661781,0 -82.231636,37.658691,0 -82.231117,37.658211,0 -82.230591,37.657711,0 -82.227562,37.656292,0 -82.223053,37.654209,0 -82.222496,37.65221,0 -82.221542,37.64872,0 -82.217621,37.644062,0 -82.215042,37.640991,0 -82.215942,37.636189,0 -82.216408,37.63406,0 -82.215919,37.632572,0 -82.215286,37.63089,0 -82.213692,37.629009,0 -82.212738,37.62822,0 -82.211082,37.62722,0 -82.208946,37.62632,0 -82.206863,37.625648,0 -82.203369,37.625549,0 -82.20121,37.626579,0 -82.199738,37.627281,0 -82.195717,37.627609,0 -82.191223,37.62714,0 -82.187569,37.62785,0 -82.185509,37.628971,0 -82.183922,37.631382,0 -82.184357,37.63456,0 -82.185913,37.637821,0 -82.18647,37.6385,0 -82.188301,37.640732,0 -82.189262,37.641949,0 -82.189003,37.646469,0 -82.187317,37.648979,0 -82.184402,37.650749,0 -82.180977,37.65134,0 -82.177467,37.650951,0 -82.174553,37.650101,0 -82.173279,37.648319,0 -82.172798,37.646042,0 -82.174309,37.643719,0 -82.175377,37.642071,0 -82.175949,37.639771,0 -82.17379,37.637001,0 -82.172157,37.635101,0 -82.171196,37.63311,0 -82.171143,37.631119,0 -82.174973,37.627232,0 -82.176018,37.626171,0 -82.17701,37.624752,0 -82.17691,37.623192,0 -82.176697,37.622581,0 -82.173927,37.62064,0 -82.170776,37.620689,0 -82.16674,37.6217,0 -82.163826,37.621761,0 -82.16217,37.621281,0 -82.162033,37.619492,0 -82.162392,37.618549,0 -82.163498,37.616982,0 -82.165207,37.614231,0 -82.166191,37.611839,0 -82.16626,37.610489,0 -82.165718,37.609562,0 -82.165283,37.609192,0 -82.164261,37.608692,0 -82.159981,37.60952,0 -82.159241,37.609661,0 -82.156517,37.610069,0 -82.154121,37.608799,0 -82.15406,37.605579,0 -82.154007,37.603771,0 -82.155052,37.601109,0 -82.155876,37.595371,0 -82.15432,37.59391,0 -82.153709,37.593349,0 -82.15078,37.592491,0 -82.14975,37.59251,0 -82.147873,37.592751,0 -82.140999,37.595821,0 -82.137817,37.59655,0 -82.136002,37.5965,0 -82.135208,37.596481,0 -82.13398,37.595692,0 -82.132118,37.594131,0 -82.130013,37.592659,0 -82.129257,37.591961,0 -82.127449,37.589272,0 -82.125008,37.5844,0 -82.123657,37.578911,0 -82.123894,37.577671,0 -82.124199,37.576672,0 -82.125473,37.57444,0 -82.131851,37.572559,0 -82.132553,37.572441,0 -82.135429,37.572361,0 -82.141907,37.570362,0 -82.143112,37.568592,0 -82.141899,37.56776,0 -82.140343,37.566681,0 -82.137512,37.565609,0 -82.134842,37.563751,0 -82.133583,37.561962,0 -82.133102,37.559681,0 -82.132957,37.558609,0 -82.132668,37.556499,0 -82.129852,37.552929,0 -82.129303,37.552509,0 -82.127647,37.552029,0 -82.1259,37.551739,0 -82.12056,37.552639,0 -82.116737,37.557472,0 -82.115532,37.558651,0 -82.113243,37.559551,0 -82.109756,37.55965,0 -82.105171,37.560719,0 -82.103447,37.560219,0 -82.101776,37.558811,0 -82.100922,37.555229,0 -82.1008,37.554699,0 -82.099388,37.5541,0 -82.098557,37.553959,0 -82.097328,37.554222,0 -82.096252,37.554451,0 -82.093956,37.555389,0 -82.090508,37.556808,0 -82.082397,37.557362,0 -82.081253,37.55727,0 -82.076309,37.556652,0 -82.073792,37.555302,0 -82.073013,37.554882,0 -82.07003,37.551731,0 -82.068298,37.5499,0 -82.064598,37.545971,0 -82.064011,37.543659,0 -82.063972,37.542309,0 -82.063637,37.541149,0 -82.063133,37.540039,0 -82.062721,37.53915,0 -82.060997,37.538651,0 -82.057442,37.537609,0 -82.052223,37.53746,0 -82.049957,37.53603,0 -82.048813,37.534229,0 -82.047447,37.5326,0 -82.046066,37.53183,0 -82.043831,37.530869,0 -82.042053,37.53125,0 -82.041336,37.531792,0 -82.041046,37.532261,0 -82.041023,37.534531,0 -82.041199,37.537151,0 -82.042572,37.542652,0 -82.043137,37.544922,0 -82.043182,37.54628,0 -82.04187,37.547661,0 -82.038933,37.547581,0 -82.036667,37.546112,0 -82.035614,37.543812,0 -82.033707,37.541481,0 -82.031906,37.539261,0 -82.025467,37.538059,0 -82.022293,37.539192,0 -82.020752,37.539742,0 -82.016693,37.539631,0 -82.015358,37.53878,0 -82.014511,37.538151,0 -82.013939,37.536369,0 -82.012108,37.535019,0 -82.011513,37.534531,0 -82.010773,37.534679,0 -82.007286,37.535389,0 -82.005753,37.53603,0 -82.004852,37.536751,0 -82.002869,37.538898,0 -81.999718,37.542309,0 -81.995651,37.542572,0 -81.993683,37.54171,0 -81.990768,37.540352,0 -81.989677,37.540951,0 -81.988556,37.541889,0 -81.987373,37.5429,0 -81.986786,37.54314,0 -81.985046,37.54364,0 -81.98217,37.54417,0 -81.980446,37.544479,0 -81.975693,37.547062,0 -81.972481,37.547729,0 -81.971581,37.54792,0 -81.968681,37.547771,0 -81.966774,37.54734,0 -81.965263,37.546299,0 -81.964783,37.545769,0 -81.964203,37.54401,0 -81.964287,37.542191,0 -81.964943,37.540859,0 -81.967346,37.537159,0 -81.96225,37.53764,0 -81.958763,37.537701,0 -81.9571,37.53677,0 -81.956398,37.536392,0 -81.955223,37.535492,0 -81.954521,37.534172,0 -81.953369,37.53236,0 -81.952583,37.531952,0 -81.951447,37.531689,0 -81.949928,37.53204,0 -81.949158,37.53241,0 -81.947426,37.533131,0 -81.945641,37.532749,0 -81.944107,37.531559,0 -81.944641,37.53022,0 -81.945702,37.526569,0 -81.945427,37.525459,0 -81.945053,37.523861,0 -81.944496,37.522659,0 -81.943497,37.522289,0 -81.942711,37.521999,0 -81.941467,37.52029,0 -81.941406,37.518059,0 -81.942543,37.516651,0 -81.941917,37.515301,0 -81.939003,37.515282,0 -81.93692,37.516209,0 -81.935043,37.518589,0 -81.933907,37.519512,0 -81.931023,37.520012,0 -81.928856,37.518799,0 -81.927734,37.516739,0 -81.927689,37.515381,0 -81.9282,37.514061,0 -81.930313,37.51329,0 -81.934517,37.51078,0 -81.937401,37.509811,0 -81.940193,37.508289,0 -81.941689,37.507111,0 -81.943016,37.5051,0 -81.944519,37.503029,0 -81.945473,37.502632,0 -81.946991,37.5023,0 -81.948402,37.502048,0 -81.949867,37.501789,0 -81.950432,37.501629,0 -81.951424,37.501091,0 -81.951378,37.499729,0 -81.950287,37.497719,0 -81.94957,37.49501,0 -81.951263,37.492981,0 -81.951706,37.492432,0 -81.954727,37.492119,0 -81.956398,37.49194,0 -81.959251,37.492531,0 -81.96048,37.49279,0 -81.963379,37.492741,0 -81.96627,37.492241,0 -81.968697,37.491241,0 -81.969696,37.490791,0 -81.973251,37.489071,0 -81.974403,37.488441,0 -81.976593,37.487541,0 -81.979576,37.486309,0 -81.984093,37.485229,0 -81.98819,37.483879,0 -81.991562,37.481441,0 -81.993797,37.47913,0 -81.995239,37.47588,0 -81.995277,37.47139,0 -81.992767,37.465549,0 -81.989723,37.461071,0 -81.987312,37.458401,0 -81.985046,37.45657,0 -81.982613,37.45668,0 -81.979279,37.456589,0 -81.975136,37.45491,0 -81.973167,37.45393,0 -81.972023,37.453362,0 -81.971024,37.452049,0 -81.970253,37.451042,0 -81.968987,37.448349,0 -81.967209,37.447021,0 -81.964317,37.447079,0 -81.961426,37.44759,0 -81.957359,37.44722,0 -81.955757,37.44651,0 -81.95462,37.446182,0 -81.950523,37.444431,0 -81.946396,37.44268,0 -81.945389,37.44223,0 -81.943466,37.441372,0 -81.939972,37.440521,0 -81.937027,37.439209,0 -81.935738,37.437912,0 -81.935516,37.43623,0 -81.935768,37.43515,0 -81.936409,37.43235,0 -81.936813,37.430599,0 -81.937271,37.42606,0 -81.936623,37.424061,0 -81.935013,37.42001,0 -81.932022,37.416859,0 -81.928459,37.4147,0 -81.927017,37.41328,0 -81.92646,37.412659,0 -81.924927,37.411079,0 -81.924187,37.40844,0 -81.925339,37.407112,0 -81.927002,37.40609,0 -81.927429,37.40575,0 -81.929176,37.404221,0 -81.929733,37.402439,0 -81.929787,37.400188,0 -81.93174,37.392582,0 -81.932838,37.38895,0 -81.933327,37.385311,0 -81.933807,37.38168,0 -81.934273,37.379669,0 -81.931862,37.374462,0 -81.931236,37.372929,0 -81.931152,37.371101,0 -81.930611,37.36948,0 -81.929749,37.3671,0 -81.928093,37.364811,0 -81.92733,37.362122,0 -81.926247,37.360531,0 -81.923698,37.358131,0 -81.922157,37.356922,0 -81.920036,37.354931,0 -81.919388,37.354012,0 -81.918556,37.352451,0 -81.916496,37.350899,0 -81.915916,37.35059,0 -81.913307,37.349281,0 -81.910713,37.34787,0 -81.907928,37.344929,0 -81.906998,37.343971,0 -81.906166,37.343121,0 -81.902626,37.34045,0 -81.900818,37.337761,0 -81.899086,37.335682,0 -81.897827,37.334179,0 -81.896332,37.33305,0 -81.893898,37.331501,0 -81.891258,37.330101,0 -81.889603,37.329391,0 -81.885002,37.329449,0 -81.882103,37.330372,0 -81.87925,37.33033,0 -81.876297,37.32859,0 -81.875069,37.326832,0 -81.873726,37.32531,0 -81.872688,37.324139,0 -81.870972,37.32201,0 -81.867981,37.320572,0 -81.865616,37.318802,0 -81.864479,37.317459,0 -81.8638,37.314762,0 -81.864296,37.312939,0 -81.864738,37.31144,0 -81.864799,37.308491,0 -81.863586,37.306702,0 -81.861786,37.30492,0 -81.858307,37.304539,0 -81.854813,37.303699,0 -81.853996,37.302792,0 -81.853668,37.302219,0 -81.853584,37.29995,0 -81.853889,37.295109,0 -81.853218,37.291031,0 -81.852623,37.28923,0 -81.851387,37.288082,0 -81.850357,37.287312,0 -81.84745,37.2869,0 -81.845627,37.28664,0 -81.844551,37.286491,0 -81.843163,37.286289,0 -81.841507,37.285809,0 -81.838593,37.284962,0 -81.836876,37.28442,0 -81.834641,37.28347,0 -81.833344,37.28281,0 -81.832733,37.28236,0 -81.829323,37.27998,0 -81.826248,37.278381,0 -81.820427,37.277611,0 -81.815437,37.27879,0 -81.811836,37.280472,0 -81.811073,37.280811,0 -81.807266,37.282391,0 -81.802078,37.28294,0 -81.79805,37.28352,0 -81.79454,37.282631,0 -81.788727,37.281841,0 -81.782303,37.27969,0 -81.779739,37.278419,0 -81.778793,37.277931,0 -81.775871,37.276112,0 -81.773102,37.27486,0 -81.771362,37.274441,0 -81.767891,37.27412,0 -81.765373,37.274521,0 -81.762123,37.274521,0 -81.761398,37.2743,0 -81.759773,37.273701,0 -81.758583,37.27235,0 -81.757988,37.271461,0 -81.75679,37.269661,0 -81.754944,37.268539,0 -81.753853,37.267891,0 -81.7528,37.26709,0 -81.751503,37.266109,0 -81.749283,37.263599,0 -81.748222,37.262192,0 -81.745773,37.257702,0 -81.743187,37.24868,0 -81.74189,37.244171,0 -81.741821,37.241901,0 -81.741096,37.240131,0 -81.740608,37.239651,0 -81.739861,37.239159,0 -81.737556,37.239109,0 -81.735252,37.23914,0 -81.732361,37.239182,0 -81.731102,37.239201,0 -81.730049,37.239212,0 -81.728973,37.239231,0 -81.72728,37.238991,0 -81.725433,37.238739,0 -81.724251,37.238392,0 -81.722046,37.237232,0 -81.718468,37.234169,0 -81.715607,37.230831,0 -81.714172,37.22905,0 -81.708939,37.224819,0 -81.704872,37.222061,0 -81.702446,37.220409,0 -81.697212,37.21648,0 -81.6931,37.214272,0 -81.690086,37.212921,0 -81.686607,37.211449,0 -81.686081,37.21122,0 -81.683006,37.208061,0 -81.681427,37.205711,0 -81.67881,37.20322,0 -81.675461,37.202759,0 -81.559937,37.208012,0 -81.554077,37.211781,0 -81.553093,37.212601,0 -81.550247,37.214458,0 -81.546288,37.217251,0 -81.54174,37.220051,0 -81.536591,37.221951,0 -81.532013,37.223389,0 -81.525139,37.226219,0 -81.518837,37.228142,0 -81.512573,37.231419,0 -81.509148,37.233292,0 -81.506203,37.236271,0 -81.504021,37.239971,0 -81.502487,37.243832,0 -81.501923,37.248169,0 -81.500206,37.251801,0 -81.496986,37.254772,0 -81.495667,37.25552,0 -81.494148,37.254791,0 -81.491539,37.252831,0 -81.488029,37.250591,0 -81.484131,37.250122,0 -81.482758,37.250519,0 -81.480522,37.251129,0 -81.477081,37.25209,0 -81.474953,37.253731,0 -81.471931,37.255749,0 -81.468498,37.257172,0 -81.465599,37.257202,0 -81.463318,37.258141,0 -81.461037,37.260441,0 -81.458199,37.262741,0 -81.456062,37.264179,0 -81.454773,37.265049,0 -81.449661,37.26836,0 -81.445953,37.269779,0 -81.443626,37.27066,0 -81.44075,37.27113,0 -81.438446,37.271622,0 -81.436134,37.271221,0 -81.434326,37.27103,0 -81.431747,37.270802,0 -81.426857,37.270889,0 -81.423409,37.271801,0 -81.420006,37.27243,0 -81.416229,37.275482,0 -81.414047,37.276989,0 -81.41259,37.278381,0 -81.409317,37.283009,0 -81.405991,37.289391,0 -81.404869,37.29211,0 -81.402641,37.296219,0 -81.400963,37.29985,0 -81.398697,37.303242,0 -81.39772,37.306519,0 -81.396568,37.309891,0 -81.394943,37.31245,0 -81.392822,37.314651,0 -81.390999,37.316349,0 -81.386986,37.31823,0 -81.38578,37.31863,0 -81.384056,37.31892,0 -81.381233,37.319511,0 -81.379463,37.319881,0 -81.374268,37.321301,0 -81.370811,37.322689,0 -81.36747,37.32774,0 -81.364159,37.333691,0 -81.362953,37.33588,0 -81.361237,37.336411,0 -81.358902,37.335529,0 -81.334686,37.313499,0 -81.313477,37.294411,0 -81.247856,37.248581,0 -81.242889,37.245129,0 -81.227562,37.23447,0 -81.218933,37.23682,0 -81.218147,37.23719,0 -81.212051,37.24007,0 -81.207542,37.242382,0 -81.205849,37.243382,0 -81.195602,37.249031,0 -81.193367,37.25008,0 -81.186249,37.253471,0 -81.178398,37.25732,0 -81.169243,37.26112,0 -81.159241,37.265018,0 -81.144279,37.269291,0 -81.133331,37.27211,0 -81.122162,37.27589,0 -81.104881,37.280128,0 -81.093933,37.282482,0 -81.080872,37.284382,0 -81.069336,37.286289,0 -81.062309,37.287041,0 -81.055473,37.287769,0 -81.042587,37.28997,0 -81.041634,37.290131,0 -81.031807,37.291599,0 -81.014389,37.29586,0 -81.008957,37.297161,0 -80.995377,37.300571,0 -80.988579,37.302441,0 -80.985077,37.30196,0 -80.982178,37.300629,0 -80.981003,37.299282,0 -80.979828,37.297932,0 -80.979797,37.29612,0 -80.97847,37.29398,0 -80.977737,37.293419,0 -80.977249,37.293171,0 -80.975563,37.29311,0 -80.968597,37.29274,0 -80.96508,37.293152,0 -80.959518,37.29401,0 -80.956596,37.294762,0 -80.949013,37.29705,0 -80.939369,37.2999,0 -80.934738,37.30146,0 -80.920921,37.307011,0 -80.911133,37.310711,0 -80.898483,37.317139,0 -80.891617,37.321762,0 -80.885918,37.326359,0 -80.881256,37.329971,0 -80.879547,37.331169,0 -80.876678,37.333179,0 -80.873497,37.335209,0 -80.870926,37.336849,0 -80.864609,37.340092,0 -80.862709,37.341122,0 -80.859016,37.34343,0 -80.854431,37.345299,0 -80.851578,37.347599,0 -80.850403,37.349461,0 -80.85321,37.35326,0 -80.870476,37.37101,0 -80.873611,37.373661,0 -80.878189,37.37767,0 -80.881737,37.38171,0 -80.882431,37.38483,0 -80.880783,37.388901,0 -80.877808,37.392632,0 -80.864296,37.409561,0 -80.865517,37.413219,0 -80.866142,37.41589,0 -80.866188,37.418381,0 -80.866096,37.41893,0 -80.863251,37.423031,0 -80.862679,37.423939,0 -80.857506,37.430382,0 -80.853027,37.427849,0 -80.848358,37.42561,0 -80.845108,37.425652,0 -80.841988,37.425682,0 -80.836746,37.424839,0 -80.832069,37.422169,0 -80.82444,37.416809,0 -80.815651,37.411461,0 -80.809746,37.40617,0 -80.805061,37.401222,0 -80.802147,37.398079,0 -80.800369,37.396259,0 -80.798622,37.39537,0 -80.796806,37.394951,0 -80.79631,37.39484,0 -80.7939,37.39455,0 -80.793396,37.394482,0 -80.789917,37.39452,0 -80.786438,37.393631,0 -80.78344,37.392319,0 -80.779312,37.387829,0 -80.775726,37.381969,0 -80.770943,37.372929,0 -80.762863,37.374809,0 -80.753052,37.37759,0 -80.75074,37.378372,0 -80.742287,37.381222,0 -80.730736,37.384922,0 -80.724777,37.387421,0 -80.71978,37.389519,0 -80.705246,37.395752,0 -80.704788,37.395969,0 -80.684013,37.40556,0 -80.669617,37.411602,0 -80.651787,37.41993,0 -80.636276,37.42823,0 -80.62764,37.43285,0 -80.621887,37.436069,0 -80.61763,37.43853,0 -80.613029,37.440422,0 -80.607727,37.442692,0 -80.605202,37.443939,0 -80.602966,37.444981,0 -80.598587,37.447289,0 -80.589943,37.45232,0 -80.580711,37.45826,0 -80.573212,37.46283,0 -80.567276,37.466099,0 -80.556297,37.470669,0 -80.549957,37.472939,0 -80.540703,37.475239,0 -80.530876,37.47678,0 -80.518158,37.47961,0 -80.515602,37.48003,0 -80.512367,37.48056,0 -80.508316,37.481049,0 -80.505409,37.480171,0 -80.502609,37.478931,0 -80.50016,37.476109,0 -80.498367,37.472961,0 -80.495399,37.46664,0 -80.493172,37.45956,0 -80.493126,37.452759,0 -80.493683,37.448669,0 -80.49395,37.446671,0 -80.494232,37.444592,0 -80.493637,37.441879,0 -80.491882,37.43961,0 -80.490509,37.437851,0 -80.49012,37.437359,0 -80.48838,37.435551,0 -80.486038,37.433289,0 -80.483131,37.431942,0 -80.480209,37.428329,0 -80.476143,37.42691,0 -80.472656,37.426971,0 -80.470352,37.42746,0 -80.465149,37.429302,0 -80.461113,37.430241,0 -80.45491,37.43166,0 -80.450073,37.433342,0 -80.44606,37.436169,0 -80.443756,37.437759,0 -80.441437,37.43935,0 -80.435669,37.443001,0 -80.426163,37.450001,0 -80.416336,37.455879,0 -80.403313,37.4617,0 -80.388268,37.46764,0 -80.381149,37.470322,0 -80.376106,37.47221,0 -80.373932,37.47308,0 -80.370209,37.474861,0 -80.368927,37.47588,0 -80.368019,37.476768,0 -80.366203,37.47905,0 -80.366302,37.48222,0 -80.364578,37.48494,0 -80.359367,37.488129,0 -80.355316,37.489502,0 -80.35183,37.49086,0 -80.343727,37.492729,0 -80.329269,37.496449,0 -80.318291,37.499699,0 -80.312508,37.50201,0 -80.306633,37.50499,0 -80.306221,37.505291,0 -80.303642,37.507229,0 -80.299843,37.51025,0 -80.29451,37.515949,0 -80.289383,37.5228,0 -80.282097,37.534389,0 -80.287781,37.53709,0 -80.294617,37.539982,0 -80.30703,37.528702,0 -80.333809,37.536819,0 -80.312668,37.546322,0 -80.325966,37.566689,0 -80.295937,37.579872,0 -80.282776,37.585331,0 -80.27507,37.588531,0 -80.261147,37.595791,0 -80.247856,37.604511,0 -80.23645,37.61264,0 -80.229538,37.61858,0 -80.2248,37.62421,0 -80.221497,37.628151,0 -80.2649,37.648979,0 -80.27729,37.65807,0 -80.307426,37.689529,0 -80.302933,37.690571,0 -80.301796,37.69091,0 -80.298721,37.691822,0 -80.296722,37.692341,0 -80.293678,37.69342,0 -80.287323,37.69664,0 -80.2827,37.699841,0 -80.28067,37.701679,0 -80.278992,37.703651,0 -80.277107,37.70554,0 -80.275223,37.70805,0 -80.271767,37.712151,0 -80.269478,37.714882,0 -80.26799,37.71682,0 -80.267288,37.717739,0 -80.266251,37.71909,0 -80.263931,37.720459,0 -80.261017,37.721371,0 -80.257538,37.722729,0 -80.255219,37.72501,0 -80.254059,37.727272,0 -80.254066,37.729542,0 -80.256386,37.732731,0 -80.258186,37.734119,0 -80.26049,37.73679,0 -80.262749,37.738949,0 -80.263916,37.740379,0 -80.263367,37.742569,0 -80.262688,37.743839,0 -80.261696,37.745392,0 -80.259377,37.74947,0 -80.2565,37.755829,0 -80.251122,37.762009,0 -80.247902,37.766689,0 -80.242607,37.77132,0 -80.235069,37.776352,0 -80.230957,37.778599,0 -80.227463,37.779049,0 -80.224541,37.77906,0 -80.22168,37.779091,0 -80.220078,37.779999,0 -80.219513,37.781822,0 -80.220123,37.784081,0 -80.221878,37.785431,0 -80.225166,37.787121,0 -80.226906,37.790329,0 -80.227409,37.791302,0 -80.227768,37.792652,0 -80.228386,37.796268,0 -80.228149,37.798119,0 -80.227531,37.800301,0 -80.225777,37.803482,0 -80.22155,37.808151,0 -80.215912,37.812561,0 -80.211113,37.81633,0 -80.208138,37.819191,0 -80.205452,37.822552,0 -80.203133,37.827091,0 -80.199532,37.83083,0 -80.196739,37.833439,0 -80.193832,37.834812,0 -80.190918,37.83572,0 -80.189613,37.83654,0 -80.187996,37.837299,0 -80.185669,37.83868,0 -80.183357,37.84005,0 -80.181526,37.842331,0 -80.181129,37.844109,0 -80.182259,37.846611,0 -80.182213,37.849121,0 -80.181999,37.851479,0 -80.180473,37.85387,0 -80.178139,37.857029,0 -80.176407,37.85931,0 -80.17424,37.862309,0 -80.173103,37.864582,0 -80.172417,37.865459,0 -80.171371,37.866859,0 -80.16951,37.869801,0 -80.167686,37.872021,0 -80.16481,37.875221,0 -80.163971,37.875889,0 -80.158081,37.880531,0 -80.15374,37.8834,0 -80.15081,37.88472,0 -80.147301,37.885582,0 -80.146698,37.885639,0 -80.144981,37.885639,0 -80.142067,37.885639,0 -80.14032,37.886101,0 -80.139107,37.88681,0 -80.138321,37.887432,0 -80.137123,37.888142,0 -80.136238,37.888821,0 -80.133911,37.89109,0 -80.130997,37.894272,0 -80.128517,37.896172,0 -80.12561,37.89798,0 -80.122726,37.899361,0 -80.122284,37.8997,0 -80.120941,37.901119,0 -80.11689,37.90567,0 -80.111687,37.912479,0 -80.108223,37.91523,0 </coordinates> </LinearRing> </outerBoundaryIs> </Polygon> </Placemark> </Document> </kml>`; } })();