Greasy Fork is available in English.

WME State Districts

Adds state districts as a layer, and displays district info for selected road segments.

// ==UserScript==
// @name         WME State Districts
// @namespace    https://greasyfork.org/users/45389
// @version      0.5.3
// @description  Adds state districts as a layer, and displays district info for selected road segments.
// @author       MapOMatic
// @include      /^https:\/\/(www|beta)\.waze\.com\/(?!user\/)(.{2,6}\/)?editor\/?.*$/
// @license      GNU GPLv3
// ==/UserScript==

(function() {
    'use strict';
    var _settingsStoreName = '_wme_state_districts';
    var _settings;
    var _features;
    var _inKml, _kyKml;
    var _colorLookup = {
        'IN-SEYMOUR':{fillColor:'#f9c8c8'},
        'IN-VINCENNES':{fillColor:'#b4e0ef'},
        'IN-CRAWFORDSVILLE':{fillColor:'#e3edbf'},
        'IN-GREENFIELD':{fillColor:'#e0c9e0'},
        'IN-LA PORTE':{fillColor:'#fedcb8'},
        'IN-FORT WAYNE':{fillColor:'#fff5f2'},
        'KY-1':{fillColor:'#f9c8c8'},
        'KY-2':{fillColor:'#b4e0ef'},
        'KY-3':{fillColor:'#e3edbf'},
        'KY-4':{fillColor:'#e0c9e0'},
        'KY-5':{fillColor:'#fedcb8'},
        'KY-6':{fillColor:'#fff5f2'},
        'KY-7':{fillColor:'#ffaf32'},
        'KY-8':{fillColor:'#ff9999'},
        'KY-9':{fillColor:'#ffffcc'},
        'KY-10':{fillColor:'#66ffff'},
        'KY-11':{fillColor:'#6666ff'},
        'KY-12':{fillColor:'#cc9900'}
    };
    var _layerName = 'State Districts';
    var _layer = null;

    function loadSettingsFromStorage() {
        _settings = $.parseJSON(localStorage.getItem(_settingsStoreName));
        if(!_settings) {
            _settings = {
                layerVisible: true
            };
        } else {
            _settings.layerVisible = (_settings.layerVisible === true);
        }
        console.log(_settings);
    }

    function saveSettingsToStorage() {
        if (localStorage) {
            var settings = {
                layerVisible: _layer.visibility
            };
            console.log('saving');
            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(){
        $('.state-district-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)) {
                    switch (feature.attributes.state) {
                        case 'IN':
                            num = /DISTRICT\s+(\d+)/.exec(feature.attributes.description)[1];
                            text = 'IN DISTRICT' + (num ? ' ' + num : '') + ': ' + feature.attributes.name;
                            color = _colorLookup['IN-' + feature.attributes.name].fillColor;
                            break;
                        case 'KY':
                            num = feature.attributes.DISTNBR.value;
                            text = 'KY DISTRICT: ' + num;
                            color = _colorLookup['KY-' + num].fillColor;
                            url = 'http://transportation.ky.gov/district-' + num + '/Pages/default.aspx';
                            break;
                    }
                    var $div = $('<div>', {id:'state-district', class:"state-district-region", style:'display:inline-block;margin-left:10px;'}).css({color:color});
                    var $span = $('<span>').css({display:'inline-block'});
                    if (url) {
                        $span.append($('<a>', {href:url, target:'__blank', title:'Open district web page'}).text(text).css({color:color, display:'inline-block'}));
                    } else {
                        $span.text(text);
                    }
                    $span.appendTo($div);
                    $('.location-info-region').parent().append($div);
                    if (color) {
                        break;
                    }
                }
            }
        }
    }


    function init() {
        InstallKML();
        //W.selectionManager.events.register("selectionchanged", null, updateDistrict());
        loadSettingsFromStorage()
        var layerid = 'wme_in_districts';
        var _inFeatures = GetFeaturesFromKMLString(_inKml);
        _inFeatures.forEach(function(feature) {
            feature.attributes.unique_name = 'IN-' + feature.attributes.name;
            feature.attributes.state = 'IN';
        });
        var _kyFeatures = GetFeaturesFromKMLString(_kyKml);
        _kyFeatures.forEach(function(feature) {
            feature.attributes.unique_name = 'KY-' + feature.attributes.DISTNBR.value;
            feature.attributes.state = 'KY';
        });
        var layerStyle = new OpenLayers.StyleMap({
            strokeDashstyle: 'solid',
            strokeColor: '#ff0000',
            strokeOpacity: 0.4,
            strokeWidth: 2,
            fillOpacity: 0.4
            //label: '${name}',
            //labelOutlineColor: '#ffffff',
            //labelOutlineWidth: '3',
            //labelOutlineOpacity: 0.3,
            //fontColor: '#ffffff',
            //fontOpacity: 0.2,
            //fontFamily: 'Arial',
            //fontSize: '150px',
            //fontWeight: 'bold'
        });
        layerStyle.addUniqueValueRules("default", "unique_name", _colorLookup);
        _layer = new OL.Layer.Vector("State Districts", {
            rendererOptions: { zIndexing: true },
            uniqueName: layerid,
            shortcutKey: "S+" + 0,
            layerGroup: 'state_districts',
            zIndex: -9999,
            displayInLayerSwitcher: true,
            visibility: _settings.layerVisible,
            styleMap: layerStyle
        });
        I18n.translations[I18n.locale].layers.name[layerid] = "State Districts";
        _layer.addFeatures(_inFeatures);
        _layer.addFeatures(_kyFeatures);
        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"});

        _inKml = `<?xml version='1.0' encoding='UTF-8'?>
<kml xmlns='http://www.opengis.net/kml/2.2'>
<Document>
<name>DistrictPoly</name>
<Placemark>
<name>LA PORTE</name>
<description><![CDATA[LA PORTE    <br>       <br>   DISTRICT   4    <br>   DISTNAME   LA PORTE    <br>   Created By   DOTRAH    <br>   Date Created   7/30/2014 4:02:07 PM    <br>   Edited By   DOTRAH    <br>   Date Edited   7/30/2014 4:02:07 PM    <br>   SHAPE   Polygon    <br>   GLOBALID   {3472FF09-1899-480C-B229-FBC1CE6D0E1C}    <br>   SHAPE_Length   588361.328283    <br>   SHAPE_Area   15364049135.760864]]></description>
<styleUrl>#poly-000000-3-0</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<tessellate>1</tessellate>
<coordinates>-87.5264920156119,41.25437983662252,0.0 -87.526536,41.230414,0.0 -87.526672,41.152468,0.0 -87.526232,41.013991999999995,0.0 -87.525986,40.880551,0.0 -87.525832,40.851761,0.0 -87.526059,40.770430999999995,0.0 -87.526084,40.736884,0.0 -87.512983,40.736944,0.0 -87.491484,40.769408000000006,0.0 -87.475234,40.736785000000005,0.0 -87.458191,40.736789,0.0 -87.438061,40.767844,0.0 -87.420047,40.736638,0.0 -87.346636,40.736517000000006,0.0 -87.324785,40.765619,0.0 -87.305461,40.736641,0.0 -87.144607,40.736791999999994,0.0 -87.119485,40.765726,0.0 -87.06427,40.72927800000001,0.0 -87.040846,40.667775,0.0 -87.02018800000002,40.677221,0.0 -86.89304100000001,40.628434000000006,0.0 -86.86862,40.605322,0.0 -86.870473,40.603775,0.0 -86.868607,40.602705,0.0 -86.85061,40.587590000000006,0.0 -86.849207,40.562306,0.0 -86.717131,40.562397,0.0 -86.679193,40.58418999999999,0.0 -86.674214,40.570973,0.0 -86.694264,40.538001,0.0 -86.694148,40.43247900000001,0.0 -86.617874,40.43201499999999,0.0 -86.594811,40.416966,0.0 -86.584199,40.431772,0.0 -86.538404,40.431578,0.0 -86.525251,40.41674600000001,0.0 -86.511393,40.431354999999996,0.0 -86.41174,40.431557,0.0 -86.392882,40.415704,0.0 -86.375535,40.431728,0.0 -86.375326,40.47472900000001,0.0 -86.394985,40.480228,0.0 -86.375664,40.513949,0.0 -86.374184,40.561346,0.0 -86.2564910087331,40.562085598144996,0.0 -86.20549,40.562369,0.0 -86.18984400000001,40.578853,0.0 -86.164973,40.562578,0.0 -86.12733,40.584824000000005,0.0 -86.16544500000002,40.5969,0.0 -86.166432,40.667838999999994,0.0 -86.127956,40.677129,0.0 -86.137276,40.682271,0.0 -86.166716,40.686251999999996,0.0 -86.165825,40.742779,0.0 -86.149044,40.770302,0.0 -86.168287,40.791351000000006,0.0 -86.167633,40.85828,0.0 -86.136614,40.865704,0.0 -86.167821,40.876394000000005,0.0 -86.168593,40.90958,0.0 -86.173235,40.914438,0.0 -86.173228,40.99607100000001,0.0 -86.167679,40.996106,0.0 -86.130003,40.99610700000001,0.0 -86.114865,40.996334,0.0 -86.057269,40.99757,0.0 -86.051072,40.997749,0.0 -86.051354,41.022763,0.0 -86.028359,41.038885,0.0 -86.051694,41.047503,0.0 -86.052252,41.085345,0.0 -86.075798,41.085238,0.0 -86.077198,41.161007,0.0 -86.039157,41.17333200000001,0.0 -86.054227,41.17652400000001,0.0 -86.05507799127506,41.21348241694345,0.0 -86.055755,41.242855000000006,0.0 -86.050653,41.245661000000005,0.0 -86.055902,41.249477,0.0 -86.05631200000002,41.271253,0.0 -86.056555,41.279611,0.0 -86.046931,41.282116,0.0 -86.056923,41.291372,0.0 -86.05895,41.43577500000001,0.0 -86.030346,41.443279000000004,0.0 -86.059335,41.457442,0.0 -86.059503,41.478994,0.0 -86.059722,41.507161,0.0 -86.06057,41.61610000000001,0.0 -86.061036,41.66411600000001,0.0 -86.069474,41.66640199999999,0.0 -86.069944,41.684153,0.0 -86.061517,41.688411,0.0 -86.062237,41.731196999999995,0.0 -86.062599,41.76053499999999,0.0 -86.088428,41.760689,0.0 -86.250858,41.760458,0.0 -86.2564910087331,41.76044376602626,0.0 -86.331188,41.76022900000001,0.0 -86.524203,41.75916099999999,0.0 -86.722309,41.759962,0.0 -86.750777,41.760045000000005,0.0 -86.800547,41.760174,0.0 -87.185058,41.76027400000001,0.0 -87.220804,41.760243,0.0 -87.372333,41.759986999999995,0.0 -87.524231,41.759529,0.0 -87.524578,41.708034,0.0 -87.524471,41.702703,0.0 -87.525134,41.663789,0.0 -87.525138,41.633109,0.0 -87.525327,41.576927,0.0 -87.525327,41.576924,0.0 -87.52553400000001,41.494647,0.0 -87.525674,41.472209,0.0 -87.52626500000001,41.37779499999999,0.0 -87.5264920156119,41.25437983662252,0.0</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Placemark>
<name>CRAWFORDSVILLE</name>
<description><![CDATA[CRAWFORDSVILLE    <br>       <br>   DISTRICT   1    <br>   DISTNAME   CRAWFORDSVILLE    <br>   Created By   DOTRAH    <br>   Date Created   7/30/2014 4:02:07 PM    <br>   Edited By   DOTRAH    <br>   Date Edited   7/30/2014 4:02:07 PM    <br>   SHAPE   Polygon    <br>   GLOBALID   {D55E6969-99CB-4C2F-BCC8-781F21C24693}    <br>   SHAPE_Length   599638.668544    <br>   SHAPE_Area   15186136914.355242]]></description>
<styleUrl>#poly-000000-3-0</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<tessellate>1</tessellate>
<coordinates>-86.228285,39.923635,0.0 -86.224463,39.926263999999996,0.0 -86.226044,39.929961000000006,0.0 -86.241035,39.96563499999999,0.0 -86.24122600000001,40.019371,0.0 -86.2564910087331,40.02684644017323,0.0 -86.285309,40.040949,0.0 -86.2564910087331,40.05784252136363,0.0 -86.241393,40.06668700000001,0.0 -86.241579,40.11938,0.0 -86.21077,40.129962,0.0 -86.241629,40.180393,0.0 -86.242592,40.273638,0.0 -86.243116,40.373825,0.0 -86.2564910087331,40.37383066476869,0.0 -86.280702,40.373837,0.0 -86.280756,40.388093,0.0 -86.309181,40.388146,0.0 -86.309239,40.417302,0.0 -86.30976,40.431343,0.0 -86.375535,40.431728,0.0 -86.392882,40.415704,0.0 -86.41174,40.431557,0.0 -86.511393,40.431354999999996,0.0 -86.525251,40.41674600000001,0.0 -86.538404,40.431578,0.0 -86.584199,40.431772,0.0 -86.594811,40.416966,0.0 -86.617874,40.43201499999999,0.0 -86.694148,40.43247900000001,0.0 -86.694264,40.538001,0.0 -86.674214,40.570973,0.0 -86.679193,40.58418999999999,0.0 -86.717131,40.562397,0.0 -86.849207,40.562306,0.0 -86.85061,40.587590000000006,0.0 -86.868607,40.602705,0.0 -86.870473,40.603775,0.0 -86.86862,40.605322,0.0 -86.89304100000001,40.628434000000006,0.0 -87.02018800000002,40.677221,0.0 -87.040846,40.667775,0.0 -87.06427,40.72927800000001,0.0 -87.119485,40.765726,0.0 -87.144607,40.736791999999994,0.0 -87.305461,40.736641,0.0 -87.324785,40.765619,0.0 -87.346636,40.736517000000006,0.0 -87.420047,40.736638,0.0 -87.438061,40.767844,0.0 -87.458191,40.736789,0.0 -87.475234,40.736785000000005,0.0 -87.491484,40.769408000000006,0.0 -87.512983,40.736944,0.0 -87.526084,40.736884,0.0 -87.526402,40.62254999999999,0.0 -87.52630000000002,40.535413000000005,0.0 -87.526616,40.475527,0.0 -87.526792,40.461945,0.0 -87.526958,40.440199,0.0 -87.52963900000002,40.282019000000005,0.0 -87.5316,40.132957,0.0 -87.531705,40.117686,0.0 -87.531858,40.066342000000006,0.0 -87.5327638191046,39.95507457510973,0.0 -87.532829,39.94705400000001,0.0 -87.533213,39.796269,0.0 -87.532574,39.664948,0.0 -87.532448,39.646969,0.0 -87.531409,39.436517,0.0 -87.531647,39.347949,0.0 -87.538277,39.352494,0.0 -87.53917700000001,39.35282,0.0 -87.53958546140831,39.35283649978387,0.0 -87.542743,39.352964,0.0 -87.543448,39.352721,0.0 -87.548368,39.349278,0.0 -87.54964,39.346773,0.0 -87.550635,39.343939,0.0 -87.551914,39.34224999999999,0.0 -87.554784,39.340609,0.0 -87.559835,39.339111,0.0 -87.564693,39.339734,0.0 -87.569428,39.341044,0.0 -87.571173,39.341388,0.0 -87.57500200000001,39.341508,0.0 -87.579477,39.339948,0.0 -87.581382,39.339079,0.0 -87.586938,39.336104,0.0 -87.592131,39.330138,0.0 -87.594875,39.325955,0.0 -87.599292,39.319971,0.0 -87.605374,39.31251,0.0 -87.607463,39.310964,0.0 -87.609143,39.310162000000005,0.0 -87.61767900000001,39.30855,0.0 -87.61959,39.30783099999999,0.0 -87.620761,39.30537199999999,0.0 -87.620785,39.30485,0.0 -87.619766,39.302533,0.0 -87.616288,39.30101700000001,0.0 -87.615666,39.300948,0.0 -87.611614,39.302007,0.0 -87.606679,39.302986,0.0 -87.605925,39.30293,0.0 -87.601472,39.301673,0.0 -87.598586,39.299323,0.0 -87.59809300000002,39.298227,0.0 -87.59999500000002,39.293498,0.0 -87.605569,39.289262,0.0 -87.608781,39.285316,0.0 -87.609389,39.283927,0.0 -87.609683,39.279768,0.0 -87.60882,39.27765300000001,0.0 -87.602378,39.27490400000001,0.0 -87.60181,39.271237,0.0 -87.605581,39.262405,0.0 -87.60554900000001,39.261125,0.0 -87.604087,39.259407,0.0 -87.53958546140831,39.25923733569534,0.0 -87.517479,39.25917100000001,0.0 -87.51729600000002,39.259313999999996,0.0 -87.497867,39.27421,0.0 -87.492408,39.259280000000004,0.0 -87.403633,39.259084,0.0 -87.388586,39.273761,0.0 -87.37546,39.259179,0.0 -87.281037,39.25909,0.0 -87.24067500000001,39.240679,0.0 -87.24097200000001,39.194481,0.0 -87.232432,39.18566700000001,0.0 -87.184788,39.162806,0.0 -87.175192,39.16947700000001,0.0 -87.173907,39.170051,0.0 -87.032843,39.168173,0.0 -87.030913,39.16753,0.0 -86.998688,39.146939,0.0 -86.868453,39.200445,0.0 -86.882193,39.214402,0.0 -86.86616,39.312525,0.0 -86.839809,39.321687000000004,0.0 -86.739856,39.356005,0.0 -86.631022,39.41358699999999,0.0 -86.456842,39.508137,0.0 -86.379483,39.605818,0.0 -86.36493,39.607393,0.0 -86.359041,39.631328,0.0 -86.350109,39.660998,0.0 -86.35012,39.682852999999994,0.0 -86.326435,39.717351,0.0 -86.264656,39.748358,0.0 -86.284279,39.756304,0.0 -86.266626,39.76476300000001,0.0 -86.28162,39.779365,0.0 -86.275155,39.801054,0.0 -86.279214,39.804601,0.0 -86.275245,39.80525,0.0 -86.279121,39.815545,0.0 -86.327697,39.844417,0.0 -86.328276,39.866161,0.0 -86.325395,39.86626100000001,0.0 -86.326118,39.903522,0.0 -86.326586,39.904836,0.0 -86.34415721944627,39.923781868951124,0.0 -86.34463700000002,39.924299,0.0 -86.357638,39.938376999999996,0.0 -86.353628,39.947316,0.0 -86.26288400000001,39.939715,0.0 -86.261454,39.93932800000001,0.0 -86.2564910087331,39.93698095617993,0.0 -86.228285,39.923635,0.0</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Placemark>
<name>VINCENNES</name>
<description><![CDATA[VINCENNES    <br>       <br>   DISTRICT   6    <br>   DISTNAME   VINCENNES    <br>   Created By   DOTRAH    <br>   Date Created   7/30/2014 4:02:07 PM    <br>   Edited By   DOTRAH    <br>   Date Edited   7/30/2014 4:02:07 PM    <br>   SHAPE   Polygon    <br>   GLOBALID   {6F2FDF43-0983-4C70-87F1-0018DEA8048D}    <br>   SHAPE_Length   830203.34565    <br>   SHAPE_Area   16872367875.357487]]></description>
<styleUrl>#poly-000000-3-2</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<tessellate>1</tessellate>
<coordinates>-87.492408,39.259280000000004,0.0 -87.497867,39.27421,0.0 -87.51729600000002,39.259313999999996,0.0 -87.517479,39.25917100000001,0.0 -87.53958546140831,39.259237335695325,0.0 -87.604087,39.259407,0.0 -87.600542,39.256092,0.0 -87.598141,39.254099,0.0 -87.596054,39.25116299999999,0.0 -87.592815,39.24683,0.0 -87.588169,39.24857,0.0 -87.58544300000001,39.25305900000001,0.0 -87.582492,39.25437,0.0 -87.581051,39.254773,0.0 -87.577202,39.25522,0.0 -87.572786,39.254018,0.0 -87.57186,39.251214,0.0 -87.572988,39.248294,0.0 -87.57517800000001,39.246193000000005,0.0 -87.57769200000001,39.24409099999999,0.0 -87.578806,39.241995,0.0 -87.57539,39.228421,0.0 -87.57488,39.217977,0.0 -87.577157,39.211934,0.0 -87.578659,39.210111,0.0 -87.585502,39.204718,0.0 -87.586384,39.200058,0.0 -87.590483,39.196967,0.0 -87.592808,39.195784,0.0 -87.595241,39.195029,0.0 -87.597763,39.194032,0.0 -87.603325,39.191068,0.0 -87.605597,39.185381,0.0 -87.609817,39.184003000000004,0.0 -87.611844,39.183992,0.0 -87.613112,39.184293,0.0 -87.615359,39.18537,0.0 -87.616984,39.18587,0.0 -87.618054,39.186016,0.0 -87.620398,39.18536999999999,0.0 -87.621386,39.18159,0.0 -87.621159,39.175577,0.0 -87.620891,39.174764,0.0 -87.61945800000001,39.172436,0.0 -87.62038,39.171166,0.0 -87.623133,39.16958399999999,0.0 -87.628801,39.168826,0.0 -87.634996,39.168769000000005,0.0 -87.636304,39.168429,0.0 -87.640917,39.166051,0.0 -87.642444,39.160726,0.0 -87.635926,39.158799,0.0 -87.631808,39.158206,0.0 -87.62737900000002,39.156182,0.0 -87.631203,39.15114100000001,0.0 -87.635842,39.154257,0.0 -87.637968,39.15518,0.0 -87.64254300000002,39.15607700000001,0.0 -87.643706,39.155786,0.0 -87.651124,39.150597,0.0 -87.653344,39.14643300000001,0.0 -87.654696,39.142229,0.0 -87.655743,39.140656,0.0 -87.658821,39.137603,0.0 -87.658479,39.135949999999994,0.0 -87.657104,39.13356600000001,0.0 -87.649965,39.130721,0.0 -87.645643,39.1295,0.0 -87.643249,39.126816,0.0 -87.642404,39.125411,0.0 -87.641676,39.123076,0.0 -87.637079,39.122654,0.0 -87.633198,39.121212,0.0 -87.632945,39.118066,0.0 -87.63406,39.116192,0.0 -87.636515,39.115247000000004,0.0 -87.650516,39.11549,0.0 -87.655484,39.113967,0.0 -87.654558,39.108949,0.0 -87.652591,39.106296,0.0 -87.64781,39.104878,0.0 -87.647161,39.104804,0.0 -87.642221,39.105153,0.0 -87.637037,39.105712,0.0 -87.632162,39.104833,0.0 -87.626267,39.10437300000001,0.0 -87.62008,39.104228,0.0 -87.619115,39.104061,0.0 -87.61521,39.10280499999999,0.0 -87.614051,39.09993599999999,0.0 -87.615491,39.09605100000001,0.0 -87.619461,39.09200899999999,0.0 -87.620498,39.090696,0.0 -87.620819,39.089796,0.0 -87.620642,39.08755500000001,0.0 -87.620048,39.086375,0.0 -87.61827700000002,39.084469,0.0 -87.615553,39.082943,0.0 -87.613616,39.082205,0.0 -87.610791,39.081691,0.0 -87.606314,39.081548,0.0 -87.6027,39.081723,0.0 -87.601643,39.08151599999999,0.0 -87.595806,39.078686999999995,0.0 -87.593054,39.074885,0.0 -87.587025,39.070205,0.0 -87.582555,39.06635,0.0 -87.580782,39.064411,0.0 -87.578802,39.061098,0.0 -87.57348700000001,39.057125,0.0 -87.572536,39.052668,0.0 -87.573069,39.050194,0.0 -87.573615,39.04901799999999,0.0 -87.574527,39.047735,0.0 -87.579372,39.042668,0.0 -87.580702,39.040796,0.0 -87.580181,39.038956999999996,0.0 -87.579439,39.03762999999999,0.0 -87.574244,39.031939,0.0 -87.573194,39.030384999999995,0.0 -87.570577,39.023883,0.0 -87.570199,39.01841100000001,0.0 -87.57157700000002,39.01377800000001,0.0 -87.572085,39.01263599999999,0.0 -87.574887,39.007773,0.0 -87.577829,39.004088,0.0 -87.578374,39.00292700000001,0.0 -87.578507,39.001066,0.0 -87.578207,39.00021600000001,0.0 -87.576451,38.99796500000001,0.0 -87.573421,38.99615,0.0 -87.571184,38.995126,0.0 -87.56876400000002,38.994362,0.0 -87.568018,38.994263,0.0 -87.564669,38.994433,0.0 -87.56153,38.993944,0.0 -87.560718,38.992023,0.0 -87.561363,38.989898,0.0 -87.564124,38.98896700000001,0.0 -87.566165,38.988844,0.0 -87.56686,38.988929,0.0 -87.573907,38.99105600000001,0.0 -87.57501,38.990967000000005,0.0 -87.57846,38.98880799999999,0.0 -87.575546,38.986116,0.0 -87.570479,38.984456,0.0 -87.54983,38.978772,0.0 -87.548009,38.97813599999999,0.0 -87.540541,38.97497499999999,0.0 -87.53958546140831,38.974676361769696,0.0 -87.53889,38.97445900000001,0.0 -87.531904,38.97305,0.0 -87.529959,38.971318,0.0 -87.528326,38.969435000000004,0.0 -87.523559,38.961717,0.0 -87.518984,38.958955,0.0 -87.514588,38.956605,0.0 -87.513163,38.954256,0.0 -87.512977,38.953577,0.0 -87.51314,38.95071600000001,0.0 -87.51335900000001,38.94995300000001,0.0 -87.51427,38.948199,0.0 -87.51575,38.946367,0.0 -87.51985,38.942184,0.0 -87.520549,38.940875999999996,0.0 -87.520874,38.93902,0.0 -87.517371,38.933645,0.0 -87.517186,38.93296900000001,0.0 -87.517346,38.930476,0.0 -87.517579,38.92969,0.0 -87.51918,38.926673,0.0 -87.51824600000002,38.92435,0.0 -87.519602,38.921778,0.0 -87.522966,38.921029,0.0 -87.52658,38.920856,0.0 -87.528063,38.918883,0.0 -87.527099,38.916076,0.0 -87.526878,38.913694,0.0 -87.52708400000002,38.910643,0.0 -87.5268,38.907219,0.0 -87.523857,38.906130999999995,0.0 -87.52164,38.906017000000006,0.0 -87.518728,38.906359,0.0 -87.517217,38.905265,0.0 -87.519665,38.902422,0.0 -87.520409,38.901558,0.0 -87.53297800000001,38.902022,0.0 -87.536335,38.897419,0.0 -87.53958546140831,38.896491072495394,0.0 -87.539957,38.89638500000001,0.0 -87.543513,38.89567300000001,0.0 -87.545736,38.892413000000005,0.0 -87.54475600000002,38.890283,0.0 -87.54324500000001,38.888471,0.0 -87.53958546140831,38.885443097115825,0.0 -87.53757200000001,38.883777,0.0 -87.535793,38.880284,0.0 -87.536918,38.87759299999999,0.0 -87.53958546140831,38.87714552585954,0.0 -87.54208000000001,38.876727,0.0 -87.547216,38.876291,0.0 -87.549029,38.873776,0.0 -87.546405,38.870671,0.0 -87.543087,38.867242,0.0 -87.544236,38.864986,0.0 -87.546921,38.864321000000004,0.0 -87.55244,38.86482600000001,0.0 -87.554169,38.862365,0.0 -87.550365,38.858909,0.0 -87.542509,38.856144,0.0 -87.53958546140831,38.855190077923844,0.0 -87.528322,38.851514,0.0 -87.52646,38.847702,0.0 -87.527241,38.844301,0.0 -87.52688,38.839011000000006,0.0 -87.525175,38.835085,0.0 -87.522768,38.830359,0.0 -87.522594,38.829699,0.0 -87.522572,38.826615,0.0 -87.522825,38.82580300000001,0.0 -87.523561,38.824634999999994,0.0 -87.525118,38.822755,0.0 -87.527107,38.820818,0.0 -87.527083,38.817595,0.0 -87.522789,38.813408,0.0 -87.520998,38.811443,0.0 -87.517602,38.806757,0.0 -87.512264,38.800557,0.0 -87.507664,38.795894000000004,0.0 -87.505096,38.79364,0.0 -87.501682,38.790997,0.0 -87.499592,38.788918,0.0 -87.497367,38.785509,0.0 -87.496422,38.782259,0.0 -87.496585,38.779751,0.0 -87.497611,38.77645699999999,0.0 -87.501083,38.774873,0.0 -87.502885,38.774394,0.0 -87.509311,38.77336999999999,0.0 -87.512422,38.773123,0.0 -87.514343,38.77191,0.0 -87.515452,38.769955,0.0 -87.513087,38.767752,0.0 -87.510461,38.767237,0.0 -87.502061,38.768875,0.0 -87.498371,38.768102,0.0 -87.497914,38.76626300000001,0.0 -87.498081,38.764128,0.0 -87.499288,38.759537,0.0 -87.504406,38.750012,0.0 -87.50384,38.748599,0.0 -87.502225,38.746688,0.0 -87.49788200000002,38.743782,0.0 -87.497104,38.742135,0.0 -87.497463,38.740018,0.0 -87.499065,38.738217,0.0 -87.502712,38.736969,0.0 -87.506807,38.733886,0.0 -87.50757,38.72985,0.0 -87.50880200000002,38.725899,0.0 -87.509702,38.724423,0.0 -87.51651400000002,38.71677300000001,0.0 -87.517518,38.715217,0.0 -87.51859600000002,38.712636,0.0 -87.519616,38.70785,0.0 -87.519848,38.702211,0.0 -87.520222,38.698606,0.0 -87.520479,38.697781000000006,0.0 -87.522554,38.693788000000005,0.0 -87.523614,38.692189,0.0 -87.52574,38.689552,0.0 -87.527818,38.687439,0.0 -87.531813,38.683996,0.0 -87.535553,38.681434,0.0 -87.538076,38.680004,0.0 -87.53958546140831,38.67932607157144,0.0 -87.541182,38.678609,0.0 -87.542918,38.67800600000001,0.0 -87.549227,38.676515,0.0 -87.567979,38.674029,0.0 -87.579979,38.672230000000006,0.0 -87.581381,38.671846,0.0 -87.590902,38.668054000000005,0.0 -87.593223,38.666886999999996,0.0 -87.59979,38.662896,0.0 -87.602385,38.65886700000001,0.0 -87.602805,38.657824,0.0 -87.603536,38.6533,0.0 -87.604702,38.649532,0.0 -87.605467,38.648153,0.0 -87.608313,38.644528,0.0 -87.612961,38.643591,0.0 -87.61460400000001,38.643052,0.0 -87.618559,38.64125099999999,0.0 -87.61992700000002,38.639553,0.0 -87.62058000000002,38.638276,0.0 -87.621075,38.635982,0.0 -87.619814,38.632994,0.0 -87.61736866662329,38.62881457050724,0.0 -87.615226,38.625152,0.0 -87.61591,38.622942,0.0 -87.622776,38.618429,0.0 -87.622754,38.615848,0.0 -87.621816,38.612942,0.0 -87.622515,38.611637,0.0 -87.62508,38.60967,0.0 -87.627304,38.607706,0.0 -87.627695,38.606705,0.0 -87.627664,38.60318999999999,0.0 -87.62638,38.60021,0.0 -87.623957,38.596636,0.0 -87.61948,38.59549,0.0 -87.611973,38.594117,0.0 -87.611559,38.592301,0.0 -87.61169,38.59119900000001,0.0 -87.61271,38.588817,0.0 -87.617057,38.58740100000001,0.0 -87.62166,38.586472,0.0 -87.625302,38.58671,0.0 -87.627007,38.58729,0.0 -87.632357,38.590638,0.0 -87.634627,38.591719,0.0 -87.636413,38.592233,0.0 -87.639276,38.591719,0.0 -87.641303,38.588664,0.0 -87.63873,38.57645,0.0 -87.639805,38.574108,0.0 -87.64449000000002,38.571894,0.0 -87.649077,38.57013400000001,0.0 -87.652733,38.566148,0.0 -87.652327,38.562778,0.0 -87.65038400000002,38.558471,0.0 -87.650942,38.55712599999999,0.0 -87.652861,38.554296,0.0 -87.663149,38.551108,0.0 -87.668053,38.546617000000005,0.0 -87.669109,38.545052,0.0 -87.66957,38.54251099999999,0.0 -87.669455,38.54198400000001,0.0 -87.667817,38.539332,0.0 -87.664241,38.534801,0.0 -87.663264,38.533286,0.0 -87.660205,38.526679,0.0 -87.657377,38.522123,0.0 -87.64748900000001,38.515332,0.0 -87.645635,38.511881,0.0 -87.648587,38.505414,0.0 -87.65377000000001,38.50276,0.0 -87.65944,38.501239,0.0 -87.663655,38.502591,0.0 -87.66620100000002,38.504039,0.0 -87.668132,38.505614,0.0 -87.670436,38.506774,0.0 -87.671355,38.506949,0.0 -87.673317,38.50635799999999,0.0 -87.676231,38.503187,0.0 -87.677824,38.500685,0.0 -87.679789,38.498069,0.0 -87.681936,38.495927,0.0 -87.689637,38.48978399999999,0.0 -87.706644,38.48204799999999,0.0 -87.708469,38.481368,0.0 -87.714624,38.479773,0.0 -87.71995,38.479576,0.0 -87.725838,38.47988200000001,0.0 -87.731042,38.480396,0.0 -87.736865,38.479496,0.0 -87.739812,38.478664,0.0 -87.741899,38.477734,0.0 -87.747015,38.47441799999999,0.0 -87.749454,38.472584000000005,0.0 -87.753744,38.466903,0.0 -87.755956,38.462806,0.0 -87.757063,38.459766,0.0 -87.75566200000002,38.45618999999999,0.0 -87.75304,38.455034,0.0 -87.751878,38.454781,0.0 -87.745915,38.454798999999994,0.0 -87.740734,38.454206,0.0 -87.734444,38.452385,0.0 -87.732036,38.449807,0.0 -87.731364,38.44855,0.0 -87.730991,38.445834,0.0 -87.73107,38.445369,0.0 -87.732838,38.441628,0.0 -87.73626,38.439667,0.0 -87.738347,38.438774,0.0 -87.742095,38.43510500000001,0.0 -87.74301600000001,38.433629,0.0 -87.743542,38.429935,0.0 -87.743035,38.42400399999999,0.0 -87.743628,38.41832500000001,0.0 -87.745279,38.41191700000001,0.0 -87.747463,38.407058,0.0 -87.748646,38.405378000000006,0.0 -87.754519,38.39911,0.0 -87.769247,38.38144700000001,0.0 -87.771208,38.379368,0.0 -87.780171,38.370851,0.0 -87.790974,38.366704000000006,0.0 -87.792472,38.366257000000004,0.0 -87.80216,38.364197,0.0 -87.802927,38.363719,0.0 -87.80293100000002,38.36371599999999,0.0 -87.808259,38.360394,0.0 -87.812972,38.355405,0.0 -87.81637,38.35103300000001,0.0 -87.821057,38.347934,0.0 -87.824609,38.342905,0.0 -87.82541800000001,38.341478,0.0 -87.830799,38.328942,0.0 -87.832016,38.324802999999996,0.0 -87.833023,38.318558,0.0 -87.832977,38.31455900000001,0.0 -87.831543,38.309109,0.0 -87.83126500000002,38.303802,0.0 -87.832026,38.2956,0.0 -87.83230900000001,38.294729000000004,0.0 -87.834496,38.29045299999999,0.0 -87.83581200000002,38.286604,0.0 -87.836477,38.285452,0.0 -87.839029,38.28222999999999,0.0 -87.843235,38.277954,0.0 -87.846793,38.276147,0.0 -87.848262,38.275706,0.0 -87.851718,38.275388,0.0 -87.857323,38.2757,0.0 -87.865056,38.283975,0.0 -87.86572,38.285221,0.0 -87.86616,38.28926,0.0 -87.865604,38.29464000000001,0.0 -87.865184,38.29568600000001,0.0 -87.863346,38.29831999999999,0.0 -87.862615,38.299682999999995,0.0 -87.861354,38.303262,0.0 -87.862151,38.307245,0.0 -87.863037,38.30867,0.0 -87.866201,38.311691999999994,0.0 -87.870683,38.311994,0.0 -87.871271,38.31192500000001,0.0 -87.873435,38.311267,0.0 -87.875761,38.310044,0.0 -87.877979,38.308381,0.0 -87.880171,38.30529,0.0 -87.88092,38.303912000000004,0.0 -87.883809,38.295991,0.0 -87.88628500000002,38.287997,0.0 -87.887611,38.286249,0.0 -87.890181,38.284054,0.0 -87.893991,38.281789,0.0 -87.897847,38.279223,0.0 -87.905054,38.271204000000004,0.0 -87.907522,38.269715,0.0 -87.910198,38.268484,0.0 -87.91112,38.268314000000004,0.0 -87.915397,38.268281,0.0 -87.918268,38.271539,0.0 -87.919233,38.273232,0.0 -87.919309,38.273656,0.0 -87.918823,38.275957,0.0 -87.918388,38.27703,0.0 -87.914357,38.283596,0.0 -87.908678,38.291788,0.0 -87.909441,38.29464900000001,0.0 -87.911213,38.297515,0.0 -87.916075,38.299004,0.0 -87.91691600000001,38.29912999999999,0.0 -87.91982300000001,38.299091,0.0 -87.924159,38.298598,0.0 -87.925329,38.298327,0.0 -87.929172,38.296987,0.0 -87.936044,38.293726,0.0 -87.938069,38.291553,0.0 -87.938891,38.29013,0.0 -87.940026,38.28552799999999,0.0 -87.941318,38.28277200000001,0.0 -87.942656,38.279248,0.0 -87.947114,38.27753799999999,0.0 -87.950344,38.275772,0.0 -87.951627,38.272226,0.0 -87.950938,38.26861999999999,0.0 -87.946908,38.266357,0.0 -87.943833,38.263579,0.0 -87.943566,38.25994,0.0 -87.944202,38.256951,0.0 -87.94766,38.254862,0.0 -87.949761,38.253907,0.0 -87.954137,38.252573,0.0 -87.95750900000002,38.248893,0.0 -87.958066,38.248098999999996,0.0 -87.958381,38.24719,0.0 -87.958494,38.240539,0.0 -87.958754,38.239702,0.0 -87.960134,38.237275999999994,0.0 -87.963261,38.23668,0.0 -87.967354,38.236658,0.0 -87.970533,38.238786,0.0 -87.970655,38.24204399999999,0.0 -87.971804,38.24520499999999,0.0 -87.972669,38.246630999999994,0.0 -87.976016,38.250562,0.0 -87.978138,38.252654,0.0 -87.981588,38.25557500000001,0.0 -87.984127,38.257254,0.0 -87.987649,38.257022,0.0 -87.988512,38.255072,0.0 -87.982586,38.247916,0.0 -87.98188,38.246618999999995,0.0 -87.980599,38.242161,0.0 -87.979937,38.238022,0.0 -87.981121,38.235242,0.0 -87.983667,38.230524,0.0 -87.984409,38.228469,0.0 -87.985062,38.22666,0.0 -87.985819,38.222439,0.0 -87.984931,38.212952,0.0 -87.983337,38.208358999999994,0.0 -87.981198,38.20413200000001,0.0 -87.980137,38.202564,0.0 -87.977772,38.199774,0.0 -87.975634,38.197675999999994,0.0 -87.960284,38.184773,0.0 -87.952262,38.180996,0.0 -87.94019,38.174728,0.0 -87.937675,38.171437,0.0 -87.935801,38.168036,0.0 -87.935497,38.16716799999999,0.0 -87.934831,38.162686,0.0 -87.934779,38.15954500000001,0.0 -87.933089,38.15694299999999,0.0 -87.928642,38.157844,0.0 -87.925529,38.160522,0.0 -87.926222,38.164652,0.0 -87.925681,38.169061,0.0 -87.925132,38.170244000000004,0.0 -87.923152,38.17271499999999,0.0 -87.918436,38.172913,0.0 -87.917435,38.172728000000006,0.0 -87.913335,38.171043,0.0 -87.911985,38.16859099999999,0.0 -87.911947,38.16549200000001,0.0 -87.913935,38.158844,0.0 -87.916812,38.156484,0.0 -87.926964,38.151375,0.0 -87.92735500000002,38.148871,0.0 -87.926285,38.14633,0.0 -87.926861,38.143257,0.0 -87.930358,38.140708,0.0 -87.933562,38.139449,0.0 -87.937503,38.136684,0.0 -87.939066,38.13507,0.0 -87.944641,38.127618,0.0 -87.946279,38.127203,0.0 -87.947716,38.127434,0.0 -87.95057,38.128864,0.0 -87.953433,38.130947,0.0 -87.955395,38.131657000000004,0.0 -87.956527,38.131892,0.0 -87.961624,38.132160000000006,0.0 -87.965457,38.131288,0.0 -87.969931,38.129556,0.0 -87.972315,38.126754,0.0 -87.973248,38.125234,0.0 -87.974617,38.121581,0.0 -87.974664,38.117539,0.0 -87.974401,38.113654999999994,0.0 -87.975923,38.10997,0.0 -87.980028,38.10822799999999,0.0 -87.981287,38.10790699999999,0.0 -87.987681,38.107366,0.0 -87.99427,38.107845,0.0 -88.000321,38.10717199999999,0.0 -88.005741,38.10598,0.0 -88.010604,38.104018,0.0 -88.013866,38.10036600000001,0.0 -88.014771,38.098869,0.0 -88.015792,38.095632,0.0 -88.015381,38.091794,0.0 -88.015093,38.09095,0.0 -88.01254,38.086381,0.0 -88.008818,38.084262,0.0 -88.00759,38.083966,0.0 -88.001146,38.084653,0.0 -87.992262,38.087366,0.0 -87.970738,38.094917,0.0 -87.968338,38.096244,0.0 -87.96727,38.097053,0.0 -87.963865,38.099125,0.0 -87.961801,38.099038,0.0 -87.960212,38.09740500000001,0.0 -87.959445,38.094011,0.0 -87.956809,38.08533,0.0 -87.96029300000001,38.079261,0.0 -87.965278,38.071323,0.0 -87.969371,38.065793,0.0 -87.976928,38.06187,0.0 -87.98984,38.05480300000001,0.0 -87.99178200000001,38.054001,0.0 -87.999665,38.051797,0.0 -88.006837,38.051451,0.0 -88.021778,38.051858,0.0 -88.031127,38.051604999999995,0.0 -88.031945,38.051472,0.0 -88.038302,38.049565,0.0 -88.041171,38.047007,0.0 -88.041978,38.045618,0.0 -88.042112,38.041721,0.0 -88.041493,38.037907,0.0 -88.040565,38.036462,0.0 -88.037397,38.03363499999999,0.0 -88.03266,38.032413,0.0 -88.025749,38.032313,0.0 -88.025011,38.032423,0.0 -88.017938,38.03463299999999,0.0 -88.014608,38.034319999999994,0.0 -88.012649,38.03352400000001,0.0 -88.009518,38.03137099999999,0.0 -88.008728,38.027433,0.0 -88.013653,38.025205,0.0 -88.017578,38.02389500000001,0.0 -88.023976,38.015187,0.0 -88.02465,38.01387,0.0 -88.026372,38.008154,0.0 -88.02531800000001,38.002732,0.0 -88.01820600000002,37.980891,0.0 -88.015207,37.966529,0.0 -88.01600300000001,37.96387,0.0 -88.01748366280816,37.961819419990135,0.0 -88.017793,37.961391000000006,0.0 -88.02055000000001,37.96001400000001,0.0 -88.022306,37.959369,0.0 -88.025858,37.958532000000005,0.0 -88.031439,37.958414999999995,0.0 -88.035631,37.957294,0.0 -88.037056,37.954665999999996,0.0 -88.037378,37.95207700000001,0.0 -88.036135,37.943703,0.0 -88.035965,37.942556,0.0 -88.032118,37.934585,0.0 -88.031282,37.931153,0.0 -88.031233,37.927607,0.0 -88.035688,37.925436,0.0 -88.040678,37.924069,0.0 -88.045772,37.925661,0.0 -88.04785,37.926535,0.0 -88.050992,37.928198,0.0 -88.056517,37.933599,0.0 -88.060207,37.933565,0.0 -88.061209,37.93336200000001,0.0 -88.065109,37.931804,0.0 -88.06744,37.928684000000004,0.0 -88.068122,37.926959,0.0 -88.066931,37.923663000000005,0.0 -88.065346,37.920625,0.0 -88.060271,37.91809500000001,0.0 -88.058432,37.917428,0.0 -88.050542,37.915712,0.0 -88.032329,37.914484,0.0 -88.022879,37.91418500000001,0.0 -88.020193,37.911412,0.0 -88.019494,37.910334,0.0 -88.019227,37.909525,0.0 -88.019176,37.905813,0.0 -88.018968,37.905097,0.0 -88.014251,37.89679300000001,0.0 -88.014094,37.896174,0.0 -88.014231,37.893910000000005,0.0 -88.014566,37.892964,0.0 -88.016472,37.89001699999999,0.0 -88.020743,37.888368,0.0 -88.026448,37.890027,0.0 -88.032715,37.89235899999999,0.0 -88.033741,37.892553,0.0 -88.040587,37.892492,0.0 -88.050519,37.891695,0.0 -88.05639,37.891727,0.0 -88.064812,37.89385,0.0 -88.073279,37.896974,0.0 -88.075732,37.89827700000001,0.0 -88.0807,37.90165700000001,0.0 -88.083368,37.903251000000004,0.0 -88.087523,37.905391,0.0 -88.08884,37.905726,0.0 -88.093922,37.905679,0.0 -88.095098,37.905393000000004,0.0 -88.098327,37.903847,0.0 -88.098056,37.899444,0.0 -88.097756,37.898587,0.0 -88.096066,37.895948000000004,0.0 -88.094577,37.894133,0.0 -88.081504,37.88106200000001,0.0 -88.079931,37.879203,0.0 -88.07673900000002,37.874428,0.0 -88.066033,37.854662,0.0 -88.064332,37.852758,0.0 -88.061551,37.85051899999999,0.0 -88.057086,37.847927,0.0 -88.055089,37.847116,0.0 -88.045651,37.844909,0.0 -88.038541,37.842903,0.0 -88.032055,37.840753,0.0 -88.030016,37.838806999999996,0.0 -88.02857,37.837016000000006,0.0 -88.027682,37.835454,0.0 -88.027433,37.834669000000005,0.0 -88.027202,37.831194,0.0 -88.02744,37.83046,0.0 -88.029861,37.82699,0.0 -88.033636,37.825112,0.0 -88.039272,37.82302,0.0 -88.040593,37.822668,0.0 -88.046783,37.82166,0.0 -88.053583,37.822006,0.0 -88.062017,37.82365,0.0 -88.06614,37.82477,0.0 -88.068125,37.825563,0.0 -88.073978,37.828551,0.0 -88.07643400000002,37.829649,0.0 -88.077834,37.830021,0.0 -88.081042,37.830276,0.0 -88.083818,37.829861,0.0 -88.087289,37.828325,0.0 -88.090199,37.824473000000005,0.0 -88.091302,37.82244099999999,0.0 -88.09144,37.821821,0.0 -88.091133,37.819202,0.0 -88.090502,37.817069,0.0 -88.089233,37.815402,0.0 -88.077002,37.80525000000001,0.0 -88.065877,37.800695,0.0 -88.058793,37.801875,0.0 -88.057055,37.802519,0.0 -88.053589,37.804514,0.0 -88.051505,37.805462999999996,0.0 -88.048253,37.806552,0.0 -88.039586,37.808258,0.0 -88.033173,37.807613,0.0 -88.030973,37.80578299999999,0.0 -88.029716,37.804119,0.0 -88.028961,37.801691000000005,0.0 -88.026495,37.800718,0.0 -88.023695,37.800482,0.0 -88.016225,37.80178,0.0 -88.003894,37.799326,0.0 -88.00218,37.798753000000005,0.0 -87.996735,37.796248,0.0 -87.986999,37.792219,0.0 -87.976128,37.787362,0.0 -87.968703,37.780513000000006,0.0 -87.961337,37.774075,0.0 -87.955211,37.772287,0.0 -87.954329,37.772147,0.0 -87.949967,37.772038,0.0 -87.948743,37.772352,0.0 -87.944648,37.774568,0.0 -87.942137,37.77777,0.0 -87.94121,37.779292999999996,0.0 -87.937006,37.789005,0.0 -87.931632,37.798131,0.0 -87.923122,37.800677,0.0 -87.917087,37.802785,0.0 -87.915008,37.803722,0.0 -87.91111400000001,37.805873,0.0 -87.905952,37.810261,0.0 -87.905424,37.82018,0.0 -87.906609,37.828034,0.0 -87.908723,37.836048,0.0 -87.912196,37.844354,0.0 -87.913088,37.845808,0.0 -87.917546,37.851311,0.0 -87.923243,37.855385,0.0 -87.930751,37.86204000000001,0.0 -87.932816,37.86411700000001,0.0 -87.93515900000001,37.866844,0.0 -87.93753800000002,37.87024100000001,0.0 -87.940857,37.877219,0.0 -87.940995,37.877804,0.0 -87.940946,37.88243500000001,0.0 -87.939134,37.887096,0.0 -87.938364,37.888495999999996,0.0 -87.935331,37.89277,0.0 -87.933705,37.894709000000006,0.0 -87.926664,37.902013,0.0 -87.921246,37.907793,0.0 -87.918212,37.911027,0.0 -87.907354,37.922605,0.0 -87.903552,37.924655,0.0 -87.901719,37.925364,0.0 -87.897451,37.926314,0.0 -87.89312900000002,37.92682899999999,0.0 -87.886584,37.92622099999999,0.0 -87.882506,37.925177999999995,0.0 -87.880712,37.924548,0.0 -87.876997,37.92288700000001,0.0 -87.874401,37.921381,0.0 -87.870229,37.91840799999999,0.0 -87.86751,37.915634000000004,0.0 -87.863386,37.910591,0.0 -87.860393,37.90503,0.0 -87.857189,37.900926,0.0 -87.855112,37.898847,0.0 -87.847549,37.892688,0.0 -87.84523,37.890613,0.0 -87.843935,37.888911,0.0 -87.842244,37.884756,0.0 -87.841413,37.883346,0.0 -87.838059,37.879004,0.0 -87.83157000000001,37.876485,0.0 -87.830306,37.876185,0.0 -87.814833,37.874966,0.0 -87.80591800000002,37.874873,0.0 -87.794662,37.875139,0.0 -87.78731,37.876599999999996,0.0 -87.785706,37.877126,0.0 -87.779544,37.879905,0.0 -87.777098,37.881275,0.0 -87.770979,37.885246,0.0 -87.762277,37.889997,0.0 -87.760287,37.890838,0.0 -87.754847,37.892646000000006,0.0 -87.753957,37.892802,0.0 -87.745324,37.89298500000001,0.0 -87.735281,37.893466,0.0 -87.728661,37.89247600000001,0.0 -87.72366,37.892103,0.0 -87.71655,37.892597,0.0 -87.708511,37.894342,0.0 -87.702774,37.896051,0.0 -87.692776,37.900221,0.0 -87.688442,37.901650000000004,0.0 -87.685367,37.902164,0.0 -87.675712,37.900378,0.0 -87.673864,37.899688,0.0 -87.670939,37.898051,0.0 -87.668523,37.896057000000006,0.0 -87.666917,37.894188,0.0 -87.665476,37.891160000000006,0.0 -87.664588,37.888385,0.0 -87.663895,37.882674,0.0 -87.664935,37.879102,0.0 -87.665508,37.877884,0.0 -87.667265,37.875185,0.0 -87.668642,37.873382,0.0 -87.6775,37.86332,0.0 -87.678732,37.861602,0.0 -87.68074,37.85796599999999,0.0 -87.68112,37.856962,0.0 -87.682182,37.85160599999999,0.0 -87.681909,37.847584,0.0 -87.679604,37.838246,0.0 -87.679213,37.837254,0.0 -87.676404,37.832066,0.0 -87.671654,37.82901400000001,0.0 -87.669557,37.82809,0.0 -87.66266,37.826509,0.0 -87.653961,37.82544000000001,0.0 -87.646309,37.82578,0.0 -87.63526700000001,37.826857,0.0 -87.627195,37.828395,0.0 -87.619355,37.830472,0.0 -87.61221500000002,37.833236,0.0 -87.603601,37.841121,0.0 -87.600937,37.843875,0.0 -87.594846,37.85109,0.0 -87.590212,37.857533,0.0 -87.589522,37.858856,0.0 -87.588271,37.862953,0.0 -87.588342,37.868318,0.0 -87.58865,37.873801,0.0 -87.591172,37.884168,0.0 -87.591459,37.887125,0.0 -87.592174,37.888418,0.0 -87.594527,37.890726,0.0 -87.60394600000001,37.897078,0.0 -87.612196,37.901961,0.0 -87.61499500000001,37.903801,0.0 -87.618748,37.906574,0.0 -87.622991,37.912328,0.0 -87.626778,37.919579,0.0 -87.626976,37.920288,0.0 -87.627595,37.927388,0.0 -87.62738900000001,37.928125,0.0 -87.625425,37.931174,0.0 -87.623912,37.93304500000001,0.0 -87.619897,37.93717300000001,0.0 -87.61004900000002,37.945029,0.0 -87.608029,37.947125,0.0 -87.606714,37.94897499999999,0.0 -87.606189,37.950136,0.0 -87.60541954817903,37.95418235721226,0.0 -87.603997,37.961662,0.0 -87.603806,37.965894,0.0 -87.603491,37.96680400000001,0.0 -87.599516,37.972941999999996,0.0 -87.59510800000001,37.974335,0.0 -87.58977,37.975021000000005,0.0 -87.586518,37.974591,0.0 -87.585113,37.974214,0.0 -87.582245,37.973055,0.0 -87.579517,37.97139,0.0 -87.577843,37.969455,0.0 -87.575367,37.964336,0.0 -87.574336,37.96041100000001,0.0 -87.574625,37.955631000000004,0.0 -87.5741434105432,37.953543943319275,0.0 -87.5734,37.950322,0.0 -87.571299,37.944967000000005,0.0 -87.570467,37.943552,0.0 -87.566358,37.93821200000001,0.0 -87.561584,37.932459,0.0 -87.55383,37.92686200000001,0.0 -87.54982900000002,37.92425000000001,0.0 -87.54731900000002,37.922857,0.0 -87.53958546140831,37.919389797223644,0.0 -87.539548,37.919373,0.0 -87.523637,37.913088,0.0 -87.521377,37.91201,0.0 -87.513186,37.907450000000004,0.0 -87.511134,37.90658,0.0 -87.509382,37.906078,0.0 -87.505517,37.907158,0.0 -87.503556,37.907969,0.0 -87.499132,37.910391999999995,0.0 -87.496509,37.912003000000006,0.0 -87.473839,37.92719499999999,0.0 -87.464251,37.933179,0.0 -87.452462,37.939552,0.0 -87.450372,37.940481,0.0 -87.446148,37.94199299999999,0.0 -87.444914,37.942292,0.0 -87.434871,37.94355600000001,0.0 -87.425187,37.944027,0.0 -87.413549,37.943536,0.0 -87.405926,37.941476,0.0 -87.395835,37.938102,0.0 -87.384488,37.93520300000001,0.0 -87.382656,37.93453,0.0 -87.379491,37.933041,0.0 -87.371809,37.92889,0.0 -87.364019,37.922027,0.0 -87.360453,37.920238000000005,0.0 -87.357558,37.919008,0.0 -87.355135,37.91772100000001,0.0 -87.353189,37.916459,0.0 -87.347028,37.912534,0.0 -87.343833,37.910498,0.0 -87.341618,37.90945399999999,0.0 -87.337401,37.90818800000001,0.0 -87.3316,37.907368000000005,0.0 -87.31995300000001,37.904605,0.0 -87.318344,37.904099,0.0 -87.31263000000001,37.901785999999994,0.0 -87.297434,37.894647000000006,0.0 -87.285425,37.888206,0.0 -87.282735,37.88653,0.0 -87.253707,37.866295,0.0 -87.25106,37.864683,0.0 -87.231273,37.854172000000005,0.0 -87.219994,37.848668,0.0 -87.218042,37.847888,0.0 -87.208733,37.84494,0.0 -87.20757,37.844684,0.0 -87.183371,37.841699,0.0 -87.166473,37.841041,0.0 -87.164909,37.840537000000005,0.0 -87.160578,37.83788899999999,0.0 -87.145049,37.818708,0.0 -87.143972,37.817104,0.0 -87.138853,37.807520999999994,0.0 -87.135689,37.798515,0.0 -87.131416,37.788409,0.0 -87.124055,37.784122,0.0 -87.122272,37.783465,0.0 -87.113006,37.782044,0.0 -87.10056100000001,37.784156,0.0 -87.099125,37.784562,0.0 -87.088149,37.788909,0.0 -87.085746,37.7902,0.0 -87.076473,37.796491,0.0 -87.06984,37.804056,0.0 -87.068475,37.805838,0.0 -87.064196,37.812375,0.0 -87.063505,37.813692,0.0 -87.059075,37.824915999999995,0.0 -87.055029,37.835817,0.0 -87.049827,37.85437900000001,0.0 -87.045723,37.865346,0.0 -87.04306,37.874269,0.0 -87.044041,37.885135,0.0 -87.045381,37.89088499999999,0.0 -87.045242,37.891478000000006,0.0 -87.04138300000001,37.896917,0.0 -87.037755,37.900991999999995,0.0 -87.026328,37.909562,0.0 -87.023569,37.911375,0.0 -87.013965,37.916672,0.0 -87.003663,37.921386,0.0 -87.001763,37.922121999999995,0.0 -86.973788,37.930943,0.0 -86.972742,37.93115000000001,0.0 -86.960709,37.93217,0.0 -86.946367,37.932907,0.0 -86.926302,37.934942,0.0 -86.925106,37.935216,0.0 -86.914545,37.939063,0.0 -86.912428,37.940003,0.0 -86.905461,37.943646,0.0 -86.897122,37.950798,0.0 -86.891036,37.9567,0.0 -86.885307,37.962635,0.0 -86.88285000000002,37.964876,0.0 -86.873228,37.972584,0.0 -86.864485,37.98051600000001,0.0 -86.859323,37.983893,0.0 -86.857134,37.985143,0.0 -86.850435,37.988373,0.0 -86.84849,37.989145,0.0 -86.84579,37.989987000000006,0.0 -86.840986,37.99148399999999,0.0 -86.837562,37.992552,0.0 -86.826761,37.99616100000001,0.0 -86.825554,37.996438,0.0 -86.81761200000001,37.997412000000004,0.0 -86.816982,37.99733499999999,0.0 -86.809493,37.994571,0.0 -86.807367,37.993615000000005,0.0 -86.799894,37.989655,0.0 -86.793876,37.983934,0.0 -86.792578,37.982201,0.0 -86.785438,37.966367,0.0 -86.775259,37.948469,0.0 -86.76793,37.936134,0.0 -86.760134,37.924938,0.0 -86.751778,37.913585,0.0 -86.750139,37.911658,0.0 -86.737968,37.899043,0.0 -86.730899,37.894275,0.0 -86.729032,37.893528,0.0 -86.722071,37.892677,0.0 -86.714164,37.894132,0.0 -86.712396,37.894763,0.0 -86.705633,37.898353,0.0 -86.696493,37.90380400000001,0.0 -86.688521,37.907839,0.0 -86.685983,37.910554000000005,0.0 -86.683449,37.91245,0.0 -86.678381,37.913827999999995,0.0 -86.658861,37.91165300000001,0.0 -86.650423,37.909662000000004,0.0 -86.645556,37.903785,0.0 -86.646409,37.894016,0.0 -86.646619,37.893280999999995,0.0 -86.652379,37.881407,0.0 -86.660327,37.866060999999995,0.0 -86.662632,37.85884,0.0 -86.662243,37.850759999999994,0.0 -86.661934,37.84986299999999,0.0 -86.658274,37.844151999999994,0.0 -86.652172,37.841774,0.0 -86.651317,37.841629,0.0 -86.639467,37.842242,0.0 -86.63843,37.842445,0.0 -86.628951,37.845763,0.0 -86.619266,37.850135,0.0 -86.613281,37.853016999999994,0.0 -86.60597,37.857374,0.0 -86.601417,37.86198400000001,0.0 -86.599973,37.863793,0.0 -86.5974,37.868012,0.0 -86.597238,37.86865,0.0 -86.597941,37.875593,0.0 -86.598955,37.891304,0.0 -86.59931,37.901655000000005,0.0 -86.596185,37.911958,0.0 -86.595305,37.91328099999999,0.0 -86.589931,37.91858,0.0 -86.583932,37.921634,0.0 -86.58269,37.921938,0.0 -86.575221,37.921781,0.0 -86.566429,37.921277,0.0 -86.546372,37.917336000000006,0.0 -86.534878,37.917022,0.0 -86.523314,37.920038,0.0 -86.521523,37.920675,0.0 -86.515496,37.923390999999995,0.0 -86.512978,37.924799,0.0 -86.507385,37.928537,0.0 -86.506454,37.935808,0.0 -86.509034,37.942645,0.0 -86.510178,37.94429100000001,0.0 -86.51403,37.948099,0.0 -86.515796,37.95009,0.0 -86.519533,37.954993,0.0 -86.520524,37.956552,0.0 -86.524008,37.963397,0.0 -86.524184,37.964084,0.0 -86.524297,38.022068,0.0 -86.522651,38.029973,0.0 -86.522401,38.031178,0.0 -86.52057,38.036125,0.0 -86.519868,38.03747800000001,0.0 -86.51940500000002,38.038201,0.0 -86.516784,38.040980000000005,0.0 -86.513437,38.042319,0.0 -86.51222100000001,38.042652,0.0 -86.49692800000001,38.045061,0.0 -86.483186,38.045228,0.0 -86.470093,38.046049000000004,0.0 -86.458126,38.048309,0.0 -86.456334,38.048950000000005,0.0 -86.443749,38.055533,0.0 -86.440574,38.058144999999996,0.0 -86.438287,38.060312,0.0 -86.434144,38.064937,0.0 -86.43322,38.066414,0.0 -86.43002,38.075610000000005,0.0 -86.43089,38.08372500000001,0.0 -86.43782600000002,38.089444,0.0 -86.44765,38.09250899999999,0.0 -86.449531,38.09323800000001,0.0 -86.457411,38.096897,0.0 -86.462167,38.101819000000006,0.0 -86.463167,38.10337,0.0 -86.465032,38.109364,0.0 -86.464705,38.114914,0.0 -86.464282,38.115931,0.0 -86.460547,38.120761,0.0 -86.452728,38.125077,0.0 -86.45095700000002,38.125705999999994,0.0 -86.443958,38.126775,0.0 -86.437597,38.12635499999999,0.0 -86.436642,38.126179,0.0 -86.430325,38.124257,0.0 -86.428179,38.123261,0.0 -86.42141,38.118933,0.0 -86.416587,38.11555899999999,0.0 -86.406168,38.105872,0.0 -86.398288,38.10573800000001,0.0 -86.394808,38.109197,0.0 -86.393666,38.110789000000004,0.0 -86.391209,38.116277,0.0 -86.38623100000001,38.12429,0.0 -86.37648000000002,38.12911999999999,0.0 -86.375248,38.12941399999999,0.0 -86.368232,38.129266,0.0 -86.3574,38.128330999999996,0.0 -86.340827,38.128003,0.0 -86.333911,38.12950200000001,0.0 -86.33174,38.130503,0.0 -86.32596200000002,38.134576,0.0 -86.323113,38.138511,0.0 -86.322528,38.139707,0.0 -86.321072,38.145453,0.0 -86.321907,38.15000499999999,0.0 -86.322939,38.151559,0.0 -86.32775,38.155772,0.0 -86.339607,38.159064,0.0 -86.349896,38.160628,0.0 -86.358555,38.16165000000001,0.0 -86.36733900000002,38.163945,0.0 -86.373434,38.16631300000001,0.0 -86.374769,38.168948,0.0 -86.377467,38.177597,0.0 -86.377278,38.18342700000001,0.0 -86.375041,38.189521000000006,0.0 -86.37384,38.19117000000001,0.0 -86.369701,38.195019,0.0 -86.363201,38.197496,0.0 -86.357464,38.198449,0.0 -86.357453,38.19863300000001,0.0 -86.356902,38.207458,0.0 -86.340938,38.221609,0.0 -86.359791,38.242411,0.0 -86.31582600000002,38.282360000000004,0.0 -86.314667,38.28414200000001,0.0 -86.282635,38.355641,0.0 -86.230874,38.396858,0.0 -86.230644,38.397548,0.0 -86.262009,38.451185,0.0 -86.283742,38.557035,0.0 -86.283724,38.557105,0.0 -86.28406900000002,38.611458000000006,0.0 -86.307549,38.637041,0.0 -86.309824,38.732109,0.0 -86.310123,38.733097,0.0 -86.328327,38.761098,0.0 -86.338411,38.776944,0.0 -86.339592,38.874669,0.0 -86.362752,38.895371000000004,0.0 -86.363099,38.931301000000005,0.0 -86.424435,38.991292,0.0 -86.424457,38.991291999999994,0.0 -86.48083,38.991564,0.0 -86.537236,38.991808,0.0 -86.537237,38.991808,0.0 -86.682261,38.992478,0.0 -86.694131,39.015311,0.0 -86.701261,39.029569,0.0 -86.710211,39.036229,0.0 -86.710233,39.036259,0.0 -86.714758,39.042137,0.0 -86.719185,39.045258,0.0 -86.724637,39.05952799999999,0.0 -86.683211,39.114796,0.0 -86.682659,39.115997,0.0 -86.681272,39.17082700000001,0.0 -86.681307,39.170928,0.0 -86.71191,39.171687,0.0 -86.868453,39.200445,0.0 -86.998688,39.146939,0.0 -87.030913,39.16753,0.0 -87.032843,39.168173,0.0 -87.173907,39.170051,0.0 -87.175192,39.16947700000001,0.0 -87.184788,39.162806,0.0 -87.232432,39.18566700000001,0.0 -87.24097200000001,39.194481,0.0 -87.24067500000001,39.240679,0.0 -87.281037,39.25909,0.0 -87.37546,39.259179,0.0 -87.388586,39.273761,0.0 -87.403633,39.259084,0.0 -87.492408,39.259280000000004,0.0</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Placemark>
<name>GREENFIELD</name>
<description><![CDATA[GREENFIELD    <br>       <br>   DISTRICT   3    <br>   DISTNAME   GREENFIELD    <br>   Created By   DOTRAH    <br>   Date Created   7/30/2014 4:02:07 PM    <br>   Edited By   DOTRAH    <br>   Date Edited   7/30/2014 4:02:07 PM    <br>   SHAPE   Polygon    <br>   GLOBALID   {FB5CB017-67D7-4660-93DF-E4C2B4501A13}    <br>   SHAPE_Length   627637.28897    <br>   SHAPE_Area   14099126700.370043]]></description>
<styleUrl>#poly-000000-3-0</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<tessellate>1</tessellate>
<coordinates>-84.81327771704376,39.865532313392976,0.0 -84.81063,40.004965,0.0 -84.810075,40.027539,0.0 -84.806037,40.191149,0.0 -84.803782,40.309903,0.0 -84.804001,40.351310000000005,0.0 -84.80434,40.415855,0.0 -84.802686,40.531091999999994,0.0 -84.802686,40.531093,0.0 -84.94013115373588,40.53212492670477,0.0 -84.951795,40.532205,0.0 -84.964225,40.541008,0.0 -84.97622,40.532551,0.0 -85.133234,40.533892,0.0 -85.149756,40.552687,0.0 -85.169505,40.53404,0.0 -85.295658,40.534206,0.0 -85.341489,40.534232,0.0 -85.341374,40.43523299999999,0.0 -85.370224,40.435923,0.0 -85.473006,40.43716499999999,0.0 -85.473324,40.406959,0.0 -85.539981,40.407399,0.0 -85.549324,40.422944,0.0 -85.559754,40.436812999999994,0.0 -85.657641,40.436799,0.0 -85.671982,40.42258,0.0 -85.689529,40.436657,0.0 -85.70798600000002,40.43632900000001,0.0 -85.735586,40.42212200000001,0.0 -85.744717,40.43547699999999,0.0 -85.811522,40.43501599999999,0.0 -85.824517,40.421642,0.0 -85.837644,40.434439,0.0 -85.862312,40.434698,0.0 -85.862842,40.464273,0.0 -85.825049,40.479164,0.0 -85.863142,40.494423,0.0 -85.863776,40.565493,0.0 -86.091572,40.563157,0.0 -86.12733,40.584824000000005,0.0 -86.164973,40.562578,0.0 -86.18984400000001,40.578853,0.0 -86.20549,40.562369,0.0 -86.374184,40.561346,0.0 -86.375664,40.513949,0.0 -86.394985,40.480228,0.0 -86.375326,40.47472900000001,0.0 -86.375535,40.431728,0.0 -86.30976,40.431343,0.0 -86.309239,40.417302,0.0 -86.309181,40.388146,0.0 -86.280756,40.388093,0.0 -86.280702,40.373837,0.0 -86.243116,40.373825,0.0 -86.242592,40.273638,0.0 -86.241629,40.180393,0.0 -86.21077,40.129962,0.0 -86.241579,40.11938,0.0 -86.241393,40.06668700000001,0.0 -86.285309,40.040949,0.0 -86.24122600000001,40.019371,0.0 -86.241035,39.96563499999999,0.0 -86.226044,39.929961000000006,0.0 -86.224463,39.926263999999996,0.0 -86.228285,39.923635,0.0 -86.261454,39.93932800000001,0.0 -86.26288400000001,39.939715,0.0 -86.353628,39.947316,0.0 -86.357638,39.938376999999996,0.0 -86.34463700000002,39.924299,0.0 -86.34415721944627,39.92378186895113,0.0 -86.326586,39.904836,0.0 -86.326118,39.903522,0.0 -86.325395,39.86626100000001,0.0 -86.328276,39.866161,0.0 -86.327697,39.844417,0.0 -86.279121,39.815545,0.0 -86.275245,39.80525,0.0 -86.279214,39.804601,0.0 -86.275155,39.801054,0.0 -86.28162,39.779365,0.0 -86.266626,39.76476300000001,0.0 -86.284279,39.756304,0.0 -86.264656,39.748358,0.0 -86.326435,39.717351,0.0 -86.35012,39.682852999999994,0.0 -86.350109,39.660998,0.0 -86.359041,39.631328,0.0 -86.36493,39.607393,0.0 -86.353901,39.607565,0.0 -86.319442,39.63233399999999,0.0 -86.20549,39.634299,0.0 -86.205489,39.634299,0.0 -86.190178,39.634513999999996,0.0 -86.15829,39.635106,0.0 -86.126647,39.635512,0.0 -86.074087,39.636565,0.0 -85.952272,39.638525,0.0 -85.95225,39.63852500000001,0.0 -85.952799,39.60948700000001,0.0 -85.952567,39.60948900000001,0.0 -85.952545,39.60948900000001,0.0 -85.951723,39.523051,0.0 -85.951354,39.523057,0.0 -85.950851,39.495251,0.0 -85.770689,39.35047900000001,0.0 -85.77059500000001,39.350402,0.0 -85.77039,39.350237,0.0 -85.631282,39.350021000000005,0.0 -85.630765,39.35002,0.0 -85.630764,39.35002,0.0 -85.630048,39.438398,0.0 -85.629268,39.438388999999994,0.0 -85.62956800000002,39.444008,0.0 -85.629527,39.447275,0.0 -85.629491,39.450082,0.0 -85.633567,39.454911,0.0 -85.629406,39.456979,0.0 -85.60795700000001,39.453237,0.0 -85.573193,39.453104,0.0 -85.573183,39.45227,0.0 -85.478787,39.452907,0.0 -85.297605,39.453352,0.0 -85.298202,39.498003,0.0 -85.298257,39.502251,0.0 -85.298595,39.525444,0.0 -85.252316,39.525690999999995,0.0 -85.252219,39.52569199999999,0.0 -85.19211,39.453894,0.0 -85.191935,39.453685,0.0 -85.18178,39.45099,0.0 -85.1636,39.526334000000006,0.0 -85.084206,39.52649000000001,0.0 -85.022968,39.526065,0.0 -85.022619,39.526062,0.0 -85.022907,39.524607,0.0 -85.022955,39.524365,0.0 -85.02295000000001,39.524365,0.0 -84.946976,39.52397899999999,0.0 -84.94013115373588,39.523903855973735,0.0 -84.815632,39.522467000000006,0.0 -84.815328,39.522463,0.0 -84.81477300000002,39.624846,0.0 -84.814577,39.68054599999999,0.0 -84.814063,39.726867,0.0 -84.813743,39.830566,0.0 -84.813699,39.833425,0.0 -84.813568,39.850211,0.0 -84.81327771704376,39.865532313392976,0.0</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Placemark>
<name>SEYMOUR</name>
<description><![CDATA[SEYMOUR    <br>       <br>   DISTRICT   5    <br>   DISTNAME   SEYMOUR    <br>   Created By   DOTRAH    <br>   Date Created   7/30/2014 4:02:07 PM    <br>   Edited By   DOTRAH    <br>   Date Edited   7/30/2014 4:02:07 PM    <br>   SHAPE   Polygon    <br>   GLOBALID   {FB09AAD2-B4A2-4DF9-B788-EB37313D330A}    <br>   SHAPE_Length   736228.571801    <br>   SHAPE_Area   17582866814.992554]]></description>
<styleUrl>#poly-000000-3-0</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<tessellate>1</tessellate>
<coordinates>-84.81994380380785,39.205726248774745,0.0 -84.819605,39.276346,0.0 -84.819222,39.305161,0.0 -84.817726,39.391845,0.0 -84.815328,39.522463,0.0 -84.815632,39.522467000000006,0.0 -84.94013115373588,39.52390385597373,0.0 -84.946976,39.52397899999999,0.0 -85.02295000000001,39.524365,0.0 -85.022955,39.524365,0.0 -85.022907,39.524607,0.0 -85.022619,39.526062,0.0 -85.022968,39.526065,0.0 -85.084206,39.52649000000001,0.0 -85.1636,39.526334000000006,0.0 -85.18178,39.45099,0.0 -85.191935,39.453685,0.0 -85.19211,39.453894,0.0 -85.252219,39.52569199999999,0.0 -85.252316,39.525690999999995,0.0 -85.298595,39.525444,0.0 -85.298257,39.502251,0.0 -85.298202,39.498003,0.0 -85.297605,39.453352,0.0 -85.478787,39.452907,0.0 -85.573183,39.45227,0.0 -85.573193,39.453104,0.0 -85.60795700000001,39.453237,0.0 -85.629406,39.456979,0.0 -85.633567,39.454911,0.0 -85.629491,39.450082,0.0 -85.629527,39.447275,0.0 -85.62956800000002,39.444008,0.0 -85.629268,39.438388999999994,0.0 -85.630048,39.438398,0.0 -85.630764,39.35002,0.0 -85.630765,39.35002,0.0 -85.631282,39.350021000000005,0.0 -85.77039,39.350237,0.0 -85.77059500000001,39.350402,0.0 -85.770689,39.35047900000001,0.0 -85.950851,39.495251,0.0 -85.951354,39.523057,0.0 -85.951723,39.523051,0.0 -85.952545,39.60948900000001,0.0 -85.952567,39.60948900000001,0.0 -85.952799,39.60948700000001,0.0 -85.95225,39.63852500000001,0.0 -85.952272,39.638525,0.0 -86.074087,39.636565,0.0 -86.126647,39.635512,0.0 -86.15829,39.635106,0.0 -86.190178,39.634513999999996,0.0 -86.205489,39.634299,0.0 -86.20549,39.634299,0.0 -86.319442,39.63233399999999,0.0 -86.353901,39.607565,0.0 -86.36493,39.607393,0.0 -86.379483,39.605818,0.0 -86.456842,39.508137,0.0 -86.631022,39.41358699999999,0.0 -86.739856,39.356005,0.0 -86.839809,39.321687000000004,0.0 -86.86616,39.312525,0.0 -86.882193,39.214402,0.0 -86.868453,39.200445,0.0 -86.71191,39.171687,0.0 -86.681307,39.170928,0.0 -86.681272,39.17082700000001,0.0 -86.682659,39.115997,0.0 -86.683211,39.114796,0.0 -86.724637,39.05952799999999,0.0 -86.719185,39.045258,0.0 -86.714758,39.042137,0.0 -86.710233,39.036259,0.0 -86.710211,39.036229,0.0 -86.701261,39.029569,0.0 -86.694131,39.015311,0.0 -86.682261,38.992478,0.0 -86.537237,38.991808,0.0 -86.537236,38.991808,0.0 -86.48083,38.991564,0.0 -86.424457,38.991291999999994,0.0 -86.424435,38.991292,0.0 -86.363099,38.931301000000005,0.0 -86.362752,38.895371000000004,0.0 -86.339592,38.874669,0.0 -86.338411,38.776944,0.0 -86.328327,38.761098,0.0 -86.310123,38.733097,0.0 -86.309824,38.732109,0.0 -86.307549,38.637041,0.0 -86.28406900000002,38.611458000000006,0.0 -86.283724,38.557105,0.0 -86.283742,38.557035,0.0 -86.262009,38.451185,0.0 -86.230644,38.397548,0.0 -86.230874,38.396858,0.0 -86.282635,38.355641,0.0 -86.314667,38.28414200000001,0.0 -86.31582600000002,38.282360000000004,0.0 -86.359791,38.242411,0.0 -86.340938,38.221609,0.0 -86.356902,38.207458,0.0 -86.357453,38.19863300000001,0.0 -86.357464,38.198449,0.0 -86.35607,38.198378,0.0 -86.344687,38.19311100000001,0.0 -86.344445,38.192911,0.0 -86.344419,38.19288900000001,0.0 -86.336204,38.18609099999999,0.0 -86.336075,38.18599799999999,0.0 -86.335912,38.18588,0.0 -86.330213,38.181766999999994,0.0 -86.330148,38.181712000000005,0.0 -86.330026,38.181609,0.0 -86.32714,38.179168,0.0 -86.327042,38.179099,0.0 -86.326919,38.179012,0.0 -86.319743,38.173969,0.0 -86.317233,38.172664,0.0 -86.306583,38.16851199999999,0.0 -86.304285,38.167475,0.0 -86.296519,38.163438,0.0 -86.294077,38.161942,0.0 -86.286077,38.156155,0.0 -86.286071,38.156147,0.0 -86.286046,38.156114,0.0 -86.274643,38.140823,0.0 -86.273794,38.13918199999999,0.0 -86.271787,38.13176099999999,0.0 -86.273916,38.122298,0.0 -86.277695,38.10860600000001,0.0 -86.279874,38.093429,0.0 -86.278084,38.080172,0.0 -86.27302800000001,38.064529,0.0 -86.272386,38.063447,0.0 -86.26415,38.053943,0.0 -86.263976,38.053854,0.0 -86.263939,38.05383500000001,0.0 -86.242905,38.043112,0.0 -86.228986,38.035212,0.0 -86.228872,38.035092,0.0 -86.228847,38.035066,0.0 -86.222847,38.028789,0.0 -86.222722,38.028737,0.0 -86.222687,38.02872200000001,0.0 -86.199016,38.01889,0.0 -86.184256,38.01296200000001,0.0 -86.17930900000002,38.011554,0.0 -86.172511,38.010164,0.0 -86.167636,38.010125,0.0 -86.156146,38.012307,0.0 -86.156146,38.012308,0.0 -86.143772,38.015491,0.0 -86.143771,38.015491,0.0 -86.125545,38.01634599999999,0.0 -86.109742,38.013367,0.0 -86.108016,38.01287,0.0 -86.086611,38.00455,0.0 -86.086412,38.004358999999994,0.0 -86.086398,38.004345,0.0 -86.077578,37.995894,0.0 -86.076188,37.994218,0.0 -86.06918100000001,37.983173,0.0 -86.057646,37.967611000000005,0.0 -86.055302,37.965249,0.0 -86.047886,37.959271,0.0 -86.047879,37.959271,0.0 -86.047855,37.95926800000001,0.0 -86.039264,37.958329,0.0 -86.039263,37.958331,0.0 -86.03446,37.965636,0.0 -86.034106,37.96672300000001,0.0 -86.034215,37.974174000000005,0.0 -86.035671,37.980291,0.0 -86.035662,37.980821,0.0 -86.033592,37.988919,0.0 -86.025704,37.994435,0.0 -86.0257,37.994435,0.0 -86.025699,37.994435,0.0 -86.025399,37.99446600000001,0.0 -86.010042,37.99603,0.0 -85.992253,37.998222,0.0 -85.97049,38.001661,0.0 -85.97048700000002,38.001662,0.0 -85.970485,38.00166200000001,0.0 -85.953732,38.004976000000006,0.0 -85.952397,38.005452000000005,0.0 -85.935831,38.013958,0.0 -85.927152,38.022876,0.0 -85.925732,38.024798,0.0 -85.917908,38.040332,0.0 -85.916901,38.05601999999999,0.0 -85.91368,38.065137,0.0 -85.909616,38.074868,0.0 -85.90704,38.085498,0.0 -85.905437,38.096729,0.0 -85.904715,38.120729,0.0 -85.907436,38.131786000000005,0.0 -85.907227,38.13909000000001,0.0 -85.905407,38.164696,0.0 -85.90277800000001,38.171735999999996,0.0 -85.901795,38.173389,0.0 -85.8973,38.17888000000001,0.0 -85.890282,38.18847,0.0 -85.888576,38.190473,0.0 -85.881524,38.197661,0.0 -85.87920400000002,38.199779,0.0 -85.869218,38.207899000000005,0.0 -85.858097,38.21645999999999,0.0 -85.855607,38.218769,0.0 -85.847471,38.228437,0.0 -85.840839,38.237657999999996,0.0 -85.840179,38.239117,0.0 -85.837997,38.251091,0.0 -85.833828,38.265532,0.0 -85.833411,38.26639200000001,0.0 -85.828359,38.273791,0.0 -85.82668,38.275628999999995,0.0 -85.820874,38.280147,0.0 -85.807293,38.284566999999996,0.0 -85.796203,38.287279,0.0 -85.796201,38.287279,0.0 -85.79620000000001,38.28728,0.0 -85.79504,38.287428999999996,0.0 -85.780435,38.28781,0.0 -85.77830900000001,38.287211,0.0 -85.777996,38.287029,0.0 -85.769013,38.281818,0.0 -85.768955,38.281732000000005,0.0 -85.768942,38.281712,0.0 -85.764677,38.275391,0.0 -85.764422,38.275222,0.0 -85.764384,38.275197,0.0 -85.760507,38.272638,0.0 -85.757955,38.27127200000001,0.0 -85.751288,38.268118,0.0 -85.750998,38.26804400000001,0.0 -85.750088,38.267817,0.0 -85.745187,38.267418,0.0 -85.741587,38.26851500000001,0.0 -85.731713,38.272211,0.0 -85.728619,38.273572,0.0 -85.714958,38.28090099999999,0.0 -85.685414,38.294976,0.0 -85.68298,38.296321,0.0 -85.674352,38.30181499999999,0.0 -85.665251,38.313345000000005,0.0 -85.655484,38.325101000000004,0.0 -85.654587,38.326436,0.0 -85.648911,38.337612,0.0 -85.64161400000002,38.35515399999999,0.0 -85.638965,38.364864000000004,0.0 -85.638628,38.37632099999999,0.0 -85.635824,38.385555,0.0 -85.631053,38.400455,0.0 -85.630538,38.40165100000001,0.0 -85.621319,38.418784,0.0 -85.614015,38.431200000000004,0.0 -85.612561,38.433093,0.0 -85.60359,38.442607,0.0 -85.58314,38.451696000000005,0.0 -85.58233,38.451917,0.0 -85.582328,38.451917,0.0 -85.582327,38.451917,0.0 -85.563017,38.453664999999994,0.0 -85.536509,38.455758,0.0 -85.536504,38.455759,0.0 -85.535032,38.456044000000006,0.0 -85.513615,38.462725000000006,0.0 -85.511833,38.463433,0.0 -85.499192,38.468489,0.0 -85.496497,38.470347,0.0 -85.488043,38.479615,0.0 -85.486687,38.48144500000001,0.0 -85.477571,38.497318,0.0 -85.476396,38.499029,0.0 -85.469815,38.50724099999999,0.0 -85.463573,38.511492,0.0 -85.461268,38.512699,0.0 -85.44744,38.517718,0.0 -85.437497,38.522196,0.0 -85.431282,38.52533,0.0 -85.425931,38.528918,0.0 -85.418171,38.539867,0.0 -85.417897,38.540485,0.0 -85.415925,38.546588,0.0 -85.415598,38.553503000000006,0.0 -85.415824,38.56151,0.0 -85.416533,38.565272,0.0 -85.418209,38.569404000000006,0.0 -85.420208,38.573806,0.0 -85.428138,38.586362,0.0 -85.428138,38.586363000000006,0.0 -85.434221,38.59493,0.0 -85.43495,38.596389,0.0 -85.438614,38.605564,0.0 -85.439223,38.645275,0.0 -85.440087,38.656601,0.0 -85.442933,38.664712,0.0 -85.453877,38.681507,0.0 -85.45448,38.68270799999999,0.0 -85.456359,38.688509,0.0 -85.454258,38.702476,0.0 -85.45138,38.712188,0.0 -85.450332,38.713794,0.0 -85.442081,38.722482,0.0 -85.435206,38.728927,0.0 -85.42624700000002,38.732924,0.0 -85.424118,38.733607,0.0 -85.410155,38.736652,0.0 -85.410152,38.736652,0.0 -85.395265,38.734663000000005,0.0 -85.369602,38.728802,0.0 -85.369598,38.728801999999995,0.0 -85.369597,38.728802,0.0 -85.355369,38.729427,0.0 -85.331169,38.733657,0.0 -85.31471,38.737405,0.0 -85.30092,38.73923,0.0 -85.291605,38.739708,0.0 -85.291602,38.739708,0.0 -85.279422,38.738721,0.0 -85.266396,38.736836,0.0 -85.265267,38.736574000000005,0.0 -85.258225,38.734207,0.0 -85.256297,38.733378,0.0 -85.245561,38.727939,0.0 -85.245464,38.727811,0.0 -85.245452,38.727794,0.0 -85.229161,38.70626300000001,0.0 -85.218347,38.697421000000006,0.0 -85.218318,38.697402,0.0 -85.218223,38.697341,0.0 -85.214789,38.695148,0.0 -85.205223,38.690802,0.0 -85.195904,38.688542000000005,0.0 -85.191625,38.687754,0.0 -85.179157,38.686189,0.0 -85.179155,38.68619,0.0 -85.166669,38.688029,0.0 -85.164768,38.688442,0.0 -85.149502,38.693157,0.0 -85.137504,38.698156,0.0 -85.13429,38.69970500000001,0.0 -85.122911,38.706079,0.0 -85.11982400000001,38.708028999999996,0.0 -85.110766,38.71456,0.0 -85.103109,38.721061,0.0 -85.09499300000002,38.726948,0.0 -85.09039,38.729828,0.0 -85.086696,38.731745,0.0 -85.08429400000001,38.732814,0.0 -85.084209,38.73285200000001,0.0 -85.084205,38.732853,0.0 -85.084205,38.732853999999996,0.0 -85.084128,38.732889,0.0 -85.084113,38.732897,0.0 -85.034564,38.756119000000005,0.0 -85.03268900000002,38.756862,0.0 -85.018755,38.761349,0.0 -85.011734,38.76411199999999,0.0 -85.008687,38.765725,0.0 -85.001473,38.77024900000001,0.0 -84.998758,38.771599,0.0 -84.992274,38.77401600000001,0.0 -84.984343,38.775882,0.0 -84.9824,38.776199,0.0 -84.97052200000002,38.777404000000004,0.0 -84.97052,38.777404,0.0 -84.952119,38.774691999999995,0.0 -84.94404900000002,38.77285,0.0 -84.943273,38.772818,0.0 -84.943272,38.772818,0.0 -84.94013115373588,38.77331527766932,0.0 -84.933853,38.77430900000001,0.0 -84.932806,38.774624,0.0 -84.921825,38.779278,0.0 -84.906074,38.784119000000004,0.0 -84.89024100000002,38.789761,0.0 -84.888994,38.79006100000001,0.0 -84.880745,38.791038,0.0 -84.880741,38.791038,0.0 -84.868696,38.790254,0.0 -84.832066,38.783522000000005,0.0 -84.832061,38.783522,0.0 -84.83206000000001,38.783522,0.0 -84.817296,38.783327,0.0 -84.816344,38.783472,0.0 -84.81412800000001,38.78437,0.0 -84.810882,38.792169,0.0 -84.812679,38.80038,0.0 -84.81324,38.801857,0.0 -84.82378,38.82168000000001,0.0 -84.826521,38.829068,0.0 -84.822654,38.835978,0.0 -84.81373,38.84255,0.0 -84.810971,38.844199,0.0 -84.804382,38.847275999999994,0.0 -84.797509,38.85402700000001,0.0 -84.790122,38.860141,0.0 -84.785335,38.86929099999999,0.0 -84.78522555731938,38.87151189456155,0.0 -84.784815,38.879842,0.0 -84.78523,38.880691,0.0 -84.793505,38.888484,0.0 -84.793522,38.8885,0.0 -84.793728,38.888693999999994,0.0 -84.809672,38.89552200000001,0.0 -84.825325,38.899257,0.0 -84.838271,38.89972099999999,0.0 -84.838276,38.89972099999999,0.0 -84.84805300000001,38.8985,0.0 -84.860678,38.89851300000001,0.0 -84.860683,38.898513,0.0 -84.861722,38.898734000000005,0.0 -84.870066,38.901988,0.0 -84.87009600000002,38.902,0.0 -84.870264,38.902065,0.0 -84.870265,38.902067,0.0 -84.874189,38.907247000000005,0.0 -84.874607,38.908046,0.0 -84.877529,38.918525,0.0 -84.877417,38.91904100000001,0.0 -84.871989,38.926675,0.0 -84.870611,38.928203,0.0 -84.862931,38.935338,0.0 -84.85272700000002,38.94334599999999,0.0 -84.850635,38.945229,0.0 -84.846198,38.94970099999999,0.0 -84.84596700000002,38.949934,0.0 -84.837243,38.955967,0.0 -84.832346,38.961708,0.0 -84.831792,38.962696,0.0 -84.82952,38.970783,0.0 -84.83184,38.97972500000001,0.0 -84.83236300000002,38.980972,0.0 -84.837257,38.989508,0.0 -84.838943,38.991387,0.0 -84.84657,38.997663,0.0 -84.849006,39.002569,0.0 -84.8498,39.003774,0.0 -84.871349,39.029183,0.0 -84.871382,39.029223,0.0 -84.871399,39.029243,0.0 -84.877517,39.033697,0.0 -84.879511,39.034933,0.0 -84.885247,39.03802100000001,0.0 -84.885277,39.038037,0.0 -84.885519,39.038168,0.0 -84.888952,39.044522,0.0 -84.890218,39.04645800000001,0.0 -84.89544300000001,39.052884,0.0 -84.89567,39.053430999999996,0.0 -84.895601,39.058295,0.0 -84.894924,39.05950299999999,0.0 -84.887152,39.06662200000001,0.0 -84.87361100000001,39.071707,0.0 -84.860694,39.078145,0.0 -84.855289,39.083452,0.0 -84.849222,39.088457,0.0 -84.846339,39.090193,0.0 -84.846083,39.09042999999999,0.0 -84.84429,39.092092,0.0 -84.839822,39.09508600000001,0.0 -84.834011,39.099632,0.0 -84.828355,39.103176,0.0 -84.825178,39.103486,0.0 -84.820058,39.105552,0.0 -84.82015,39.145454,0.0 -84.820215,39.149096,0.0 -84.81994380380785,39.205726248774745,0.0</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Placemark>
<name>FORT WAYNE</name>
<description><![CDATA[FORT WAYNE    <br>       <br>   DISTRICT   2    <br>   DISTNAME   FORT WAYNE    <br>   Created By   DOTRAH    <br>   Date Created   7/30/2014 4:02:07 PM    <br>   Edited By   DOTRAH    <br>   Date Edited   7/30/2014 4:02:07 PM    <br>   SHAPE   Polygon    <br>   GLOBALID   {8E07D826-6D17-4581-AAB5-9BEC05B0F0A6}    <br>   SHAPE_Length   560312.698283    <br>   SHAPE_Area   15204712268.641708]]></description>
<styleUrl>#poly-000000-3-0</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<tessellate>1</tessellate>
<coordinates>-84.80353538697248,41.163896284756085,0.0 -84.803601,41.271022,0.0 -84.803997,41.329216,0.0 -84.804073,41.438743,0.0 -84.804744,41.530372,0.0 -84.805002,41.556419,0.0 -84.805828,41.631464,0.0 -84.805927,41.70750700000001,0.0 -84.80586,41.759931,0.0 -84.94013115373588,41.7596609072425,0.0 -84.989597,41.759522,0.0 -85.174858,41.759623000000005,0.0 -85.196705,41.759739999999994,0.0 -85.367074,41.75974099999999,0.0 -85.660018,41.759153,0.0 -85.677328,41.759075,0.0 -85.775024,41.759076,0.0 -85.974861,41.760029,0.0 -86.062599,41.76053499999999,0.0 -86.062237,41.731196999999995,0.0 -86.061517,41.688411,0.0 -86.069944,41.684153,0.0 -86.069474,41.66640199999999,0.0 -86.061036,41.66411600000001,0.0 -86.06057,41.61610000000001,0.0 -86.059722,41.507161,0.0 -86.059503,41.478994,0.0 -86.059335,41.457442,0.0 -86.030346,41.443279000000004,0.0 -86.05895,41.43577500000001,0.0 -86.056923,41.291372,0.0 -86.046931,41.282116,0.0 -86.056555,41.279611,0.0 -86.05631200000002,41.271253,0.0 -86.055902,41.249477,0.0 -86.050653,41.245661000000005,0.0 -86.055755,41.242855000000006,0.0 -86.05507799127506,41.21348241694345,0.0 -86.054227,41.17652400000001,0.0 -86.039157,41.17333200000001,0.0 -86.077198,41.161007,0.0 -86.075798,41.085238,0.0 -86.052252,41.085345,0.0 -86.051694,41.047503,0.0 -86.028359,41.038885,0.0 -86.051354,41.022763,0.0 -86.051072,40.997749,0.0 -86.057269,40.99757,0.0 -86.114865,40.996334,0.0 -86.130003,40.99610700000001,0.0 -86.167679,40.996106,0.0 -86.173228,40.99607100000001,0.0 -86.173235,40.914438,0.0 -86.168593,40.90958,0.0 -86.167821,40.876394000000005,0.0 -86.136614,40.865704,0.0 -86.167633,40.85828,0.0 -86.168287,40.791351000000006,0.0 -86.149044,40.770302,0.0 -86.165825,40.742779,0.0 -86.166716,40.686251999999996,0.0 -86.137276,40.682271,0.0 -86.127956,40.677129,0.0 -86.166432,40.667838999999994,0.0 -86.16544500000002,40.5969,0.0 -86.12733,40.584824000000005,0.0 -86.091572,40.563157,0.0 -85.863776,40.565493,0.0 -85.863142,40.494423,0.0 -85.825049,40.479164,0.0 -85.862842,40.464273,0.0 -85.862312,40.434698,0.0 -85.837644,40.434439,0.0 -85.824517,40.421642,0.0 -85.811522,40.43501599999999,0.0 -85.744717,40.43547699999999,0.0 -85.735586,40.42212200000001,0.0 -85.70798600000002,40.43632900000001,0.0 -85.689529,40.436657,0.0 -85.671982,40.42258,0.0 -85.657641,40.436799,0.0 -85.559754,40.436812999999994,0.0 -85.549324,40.422944,0.0 -85.539981,40.407399,0.0 -85.473324,40.406959,0.0 -85.473006,40.43716499999999,0.0 -85.370224,40.435923,0.0 -85.341374,40.43523299999999,0.0 -85.341489,40.534232,0.0 -85.295658,40.534206,0.0 -85.169505,40.53404,0.0 -85.149756,40.552687,0.0 -85.133234,40.533892,0.0 -84.97622,40.532551,0.0 -84.964225,40.541008,0.0 -84.951795,40.532205,0.0 -84.94013115373588,40.53212492670477,0.0 -84.802686,40.531093,0.0 -84.802662,40.54587,0.0 -84.802457,40.572199,0.0 -84.802278,40.657695,0.0 -84.80237700000002,40.747211,0.0 -84.802486,40.752794,0.0 -84.802376,40.843097,0.0 -84.802816,40.922259,0.0 -84.803325,40.997994000000006,0.0 -84.803302,41.074964,0.0 -84.803534,41.161628,0.0 -84.80353538697248,41.163896284756085,0.0</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Style id='poly-000000-3-0-normal'>
<LineStyle>
<color>ff000000</color>
<width>3</width>
</LineStyle>
<PolyStyle>
<color> 0000000</color>
<fill>1</fill>
<outline>1</outline>
</PolyStyle>
</Style>
<Style id='poly-000000-3-0-highlight'>
<LineStyle>
<color>ff000000</color>
<width>5.0</width>
</LineStyle>
<PolyStyle>
<color> 0000000</color>
<fill>1</fill>
<outline>1</outline>
</PolyStyle>
</Style>
<StyleMap id='poly-000000-3-0'>
<Pair>
<key>normal</key>
<styleUrl>#poly-000000-3-0-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#poly-000000-3-0-highlight</styleUrl>
</Pair>
</StyleMap>
<Style id='poly-000000-3-2-normal'>
<LineStyle>
<color>ff000000</color>
<width>3</width>
</LineStyle>
<PolyStyle>
<color> 2000000</color>
<fill>1</fill>
<outline>1</outline>
</PolyStyle>
</Style>
<Style id='poly-000000-3-2-highlight'>
<LineStyle>
<color>ff000000</color>
<width>5.0</width>
</LineStyle>
<PolyStyle>
<color> 2000000</color>
<fill>1</fill>
<outline>1</outline>
</PolyStyle>
</Style>
<StyleMap id='poly-000000-3-2'>
<Pair>
<key>normal</key>
<styleUrl>#poly-000000-3-2-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#poly-000000-3-2-highlight</styleUrl>
</Pair>
</StyleMap>
</Document>
</kml>`;

        _kyKml = `<?xml version="1.0" encoding="utf-8" ?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document id="root_doc">
<Schema name="ky_districts_" id="ky_districts_">
<SimpleField name="DISTNBR" type="int"></SimpleField>
</Schema>
<Folder><name>ky_districts_</name>
<Placemark>
<Style><LineStyle><color>ff0000ff</color></LineStyle><PolyStyle><fill>0</fill></PolyStyle></Style>
<ExtendedData><SchemaData schemaUrl="#ky_districts_">
<SimpleData name="DISTNBR">1</SimpleData>
</SchemaData></ExtendedData>
<Polygon><altitudeMode>clampToGround</altitudeMode><outerBoundaryIs><LinearRing><altitudeMode>clampToGround</altitudeMode><coordinates>-89.4827,36.5017 -89.4854,36.4975 -89.5392,36.4979 -89.5594,36.5227 -89.5684,36.542 -89.571,36.5557 -89.566,36.5664 -89.5511,36.5781 -89.5306,36.5817 -89.4799,36.5691 -89.4654,36.5345 -89.4705,36.5172 -89.4827,36.5017</coordinates></LinearRing></outerBoundaryIs></Polygon>
</Placemark>
<Placemark>
<Style><LineStyle><color>ff0000ff</color></LineStyle><PolyStyle><fill>0</fill></PolyStyle></Style>
<ExtendedData><SchemaData schemaUrl="#ky_districts_">
<SimpleData name="DISTNBR">1</SimpleData>
</SchemaData></ExtendedData>
<Polygon><altitudeMode>clampToGround</altitudeMode><outerBoundaryIs><LinearRing><altitudeMode>clampToGround</altitudeMode><coordinates>-88.0097,37.5463 -87.9995,37.5422 -87.9975,37.5067 -87.9817,37.4937 -87.9735,37.5006 -87.9666,37.4882 -87.9828,37.4742 -87.971,37.4699 -87.9633,37.4707 -87.9545,37.4792 -87.9316,37.4785 -87.944,37.4652 -87.9363,37.4392 -87.9383,37.4256 -87.93,37.4092 -87.9217,37.4114 -87.9161,37.4073 -87.9135,37.4113 -87.9116,37.4068 -87.9154,37.4044 -87.9023,37.3983 -87.8973,37.4036 -87.869,37.4051 -87.8613,37.4097 -87.8658,37.4172 -87.8565,37.4144 -87.847,37.4208 -87.8435,37.4162 -87.8447,37.3946 -87.8597,37.3924 -87.8551,37.3893 -87.8597,37.3877 -87.8597,37.3801 -87.843,37.3745 -87.8409,37.3797 -87.8315,37.3776 -87.8327,37.3805 -87.8264,37.3801 -87.8185,37.3882 -87.8103,37.3764 -87.8036,37.379 -87.8058,37.3823 -87.8008,37.3801 -88.0525,37.2377 -88.0532,37.2289 -88.0633,37.2316 -88.0891,37.2224 -88.0805,37.2121 -88.0901,37.202 -88.0828,37.1854 -88.0888,37.1794 -88.0958,37.1797 -88.0421,37.1748 -87.9752,37.0675 -87.877,36.9601 -87.8662,36.9539 -87.8581,36.9507 -87.7649,36.9747 -87.7334,37.0021 -87.6597,36.9664 -87.6719,36.8789 -87.6738,36.7556 -87.6942,36.6371 -87.8533,36.6332 -87.8495,36.6637 -88.0705,36.6783 -88.0668,36.6559 -88.057,36.6403 -88.0449,36.6031 -88.0327,36.5421 -88.0391,36.5108 -88.0533,36.4971 -89.301,36.5072 -89.4173,36.499 -89.3827,36.5837 -89.3761,36.6141 -89.3658,36.6251 -89.3439,36.6319 -89.3263,36.6318 -89.2696,36.5697 -89.2584,36.565 -89.2363,36.5669 -89.2139,36.5799 -89.2028,36.6017 -89.1978,36.629 -89.1591,36.6664 -89.1719,36.6726 -89.168,36.6791 -89.1705,36.6901 -89.1993,36.7156 -89.2006,36.7326 -89.1882,36.7508 -89.1729,36.7588 -89.126,36.7518 -89.1182,36.7623 -89.1162,36.7733 -89.1244,36.7858 -89.1571,36.7896 -89.1706,36.7975 -89.1791,36.8109 -89.1792,36.8299 -89.1704,36.8418 -89.1381,36.8473 -89.1171,36.8887 -89.099,36.9582 -89.111,36.9778 -89.1366,36.9838 -89.1702,37.0071 -89.1807,37.0252 -89.1809,37.049 -89.1738,37.0663 -89.1566,37.0868 -89.1415,37.0942 -89.1096,37.1229 -89.1157,37.1157 -89.1114,37.119 -89.0867,37.1655 -89.0408,37.2031 -89.0002,37.2248 -88.9839,37.2285 -88.977,37.2295 -88.9882,37.2237 -88.9666,37.2302 -88.973,37.2285 -88.9162,37.224 -88.8026,37.1879 -88.733,37.1443 -88.6918,37.141 -88.6169,37.116 -88.5844,37.0963 -88.5667,37.0754 -88.5204,37.0656 -88.4728,37.0698 -88.4593,37.0753 -88.4456,37.0933 -88.4433,37.1114 -88.4246,37.1518 -88.4334,37.1631 -88.4493,37.2052 -88.4725,37.2205 -88.4878,37.2445 -88.5124,37.2632 -88.5039,37.2646 -88.5141,37.2795 -88.5145,37.2914 -88.4866,37.3405 -88.477,37.3857 -88.4696,37.3975 -88.4509,37.412 -88.4101,37.4254 -88.3644,37.4018 -88.3236,37.434 -88.2792,37.4533 -88.1977,37.4602 -88.1344,37.4717 -88.0837,37.472 -88.0654,37.4888 -88.0613,37.5053 -88.052,37.5078 -88.0472,37.5184 -88.0335,37.514 -88.0208,37.5289 -88.0236,37.5379 -88.0202,37.5447 -88.0097,37.5463</coordinates></LinearRing></outerBoundaryIs></Polygon>
</Placemark>
<Placemark>
<Style><LineStyle><color>ff0000ff</color></LineStyle><PolyStyle><fill>0</fill></PolyStyle></Style>
<ExtendedData><SchemaData schemaUrl="#ky_districts_">
<SimpleData name="DISTNBR">2</SimpleData>
</SchemaData></ExtendedData>
<Polygon><altitudeMode>clampToGround</altitudeMode><outerBoundaryIs><LinearRing><altitudeMode>clampToGround</altitudeMode><coordinates>-86.7786,37.9573 -86.7527,37.9154 -86.7318,37.8944 -86.7175,37.8935 -86.6804,37.9151 -86.6505,37.9108 -86.6441,37.9026 -86.6625,37.8571 -86.6553,37.8425 -86.6661,37.8358 -86.6779,37.7929 -86.6223,37.655 -86.6389,37.6619 -86.6408,37.6192 -86.6251,37.6043 -86.6193,37.5852 -86.5994,37.566 -86.5934,37.5651 -86.5937,37.5598 -86.5765,37.5521 -86.5796,37.5472 -86.5832,37.5505 -86.5943,37.5474 -86.5935,37.5434 -86.5973,37.5459 -86.5975,37.5377 -86.6106,37.5443 -86.6047,37.5509 -86.6201,37.554 -86.625,37.5657 -86.6347,37.5673 -86.6485,37.5549 -86.6645,37.557 -86.669,37.549 -86.6619,37.5419 -86.6121,37.3951 -86.7595,37.3041 -86.7706,37.3099 -86.7758,37.3263 -86.7983,37.3347 -86.8166,37.3282 -86.8214,37.3207 -86.8188,37.3053 -86.8083,37.2914 -86.8256,37.2946 -86.8306,37.2859 -86.8282,37.2819 -86.85,37.2623 -86.8524,37.2514 -86.8707,37.2476 -86.8851,37.2329 -86.8892,37.2179 -86.9042,37.2117 -86.9016,37.192 -86.9091,37.1949 -86.9082,37.1895 -86.9015,37.1846 -86.8907,37.1852 -86.8983,37.1764 -86.9222,37.1802 -86.9202,37.1706 -86.9269,37.1603 -86.9239,37.1453 -86.9386,37.1371 -86.9328,37.1357 -86.9236,37.1429 -86.9128,37.1359 -86.916,37.1258 -86.9072,37.1266 -86.9046,37.1343 -86.8974,37.132 -86.9025,37.1297 -86.8971,37.1251 -86.9009,37.1239 -86.8973,37.1172 -86.8813,37.1123 -86.9016,37.1125 -86.9058,37.1073 -86.8994,37.1069 -86.904,37.1015 -86.8988,37.1042 -86.9019,37.099 -86.8958,37.0989 -86.9002,37.0954 -86.8941,37.0884 -86.9044,37.0878 -86.9214,37.0781 -86.9408,37.0785 -86.9449,37.073 -86.9414,37.069 -86.9764,37.0736 -87.0532,37.061 -87.1181,37.0447 -87.2503,37.0406 -87.2509,37.0494 -87.2621,37.0531 -87.2466,37.0544 -87.2453,37.0641 -87.2547,37.0697 -87.2518,37.0756 -87.2601,37.0749 -87.336,36.6417 -87.6942,36.6371 -87.6738,36.7556 -87.6719,36.8789 -87.6597,36.9664 -87.7334,37.0021 -87.7649,36.9747 -87.8581,36.9507 -87.8662,36.9539 -87.877,36.9601 -87.9752,37.0675 -88.0421,37.1748 -88.0958,37.1797 -88.0888,37.1794 -88.0828,37.1854 -88.0901,37.202 -88.0805,37.2121 -88.0891,37.2224 -88.0633,37.2316 -88.0532,37.2289 -88.0525,37.2377 -87.8006,37.3814 -87.8058,37.3823 -87.8036,37.379 -87.8103,37.3764 -87.8185,37.3882 -87.8264,37.3801 -87.8327,37.3805 -87.8315,37.3776 -87.8409,37.3797 -87.843,37.3745 -87.8597,37.3801 -87.8597,37.3877 -87.8551,37.3893 -87.8597,37.3924 -87.8447,37.3946 -87.8435,37.4162 -87.847,37.4208 -87.8565,37.4144 -87.8658,37.4172 -87.8613,37.4097 -87.869,37.4051 -87.8973,37.4036 -87.9023,37.3983 -87.9154,37.4044 -87.9116,37.4068 -87.9135,37.4113 -87.9161,37.4073 -87.9217,37.4114 -87.93,37.4092 -87.9383,37.4256 -87.9363,37.4392 -87.944,37.4652 -87.9316,37.4785 -87.9545,37.4792 -87.9633,37.4707 -87.971,37.4699 -87.9828,37.4742 -87.9659,37.4861 -87.9735,37.5006 -87.9817,37.4937 -87.9975,37.5067 -88.0027,37.5461 -88.0179,37.5466 -88.0236,37.5379 -88.0208,37.5289 -88.0307,37.5166 -88.0386,37.5133 -88.0472,37.5184 -88.052,37.5078 -88.0613,37.5053 -88.0721,37.5288 -88.0897,37.5362 -88.1059,37.5564 -88.1332,37.5741 -88.1397,37.5862 -88.1423,37.604 -88.1581,37.6372 -88.1601,37.6595 -88.1511,37.6761 -88.1213,37.7106 -88.0593,37.743 -88.0446,37.7631 -88.0365,37.7908 -88.0296,37.7984 -88.0155,37.802 -87.9992,37.7985 -87.9514,37.7718 -87.9448,37.7751 -87.9329,37.7975 -87.9074,37.8071 -87.9037,37.8168 -87.91,37.843 -87.9363,37.8679 -87.9409,37.8847 -87.9089,37.9215 -87.8971,37.9278 -87.874,37.9227 -87.8569,37.9005 -87.8452,37.8928 -87.8401,37.8813 -87.8297,37.8765 -87.7921,37.8756 -87.7594,37.8919 -87.7168,37.893 -87.6872,37.9032 -87.6749,37.9018 -87.6663,37.8957 -87.6634,37.8859 -87.6817,37.8563 -87.6794,37.8367 -87.6704,37.8284 -87.6454,37.8263 -87.6135,37.833 -87.5884,37.8617 -87.5921,37.8889 -87.6208,37.9077 -87.6285,37.9264 -87.6227,37.9272 -87.6174,37.9383 -87.6224,37.9363 -87.6065,37.9489 -87.603,37.9685 -87.5976,37.9743 -87.5858,37.9752 -87.5768,37.9693 -87.5767,37.9524 -87.5566,37.9286 -87.5109,37.9061 -87.4488,37.9421 -87.4122,37.9447 -87.373,37.9322 -87.3385,37.9083 -87.2989,37.8962 -87.2199,37.8489 -87.1617,37.8398 -87.141,37.8151 -87.1302,37.7873 -87.111,37.7824 -87.0911,37.787 -87.0697,37.8015 -87.0433,37.8686 -87.0452,37.8943 -87.0342,37.9063 -87.0124,37.9187 -86.967,37.9334 -86.9198,37.9364 -86.902,37.9465 -86.8611,37.9842 -86.8208,37.9993 -86.7949,37.9892 -86.7786,37.9573</coordinates></LinearRing></outerBoundaryIs></Polygon>
</Placemark>
<Placemark>
<Style><LineStyle><color>ff0000ff</color></LineStyle><PolyStyle><fill>0</fill></PolyStyle></Style>
<ExtendedData><SchemaData schemaUrl="#ky_districts_">
<SimpleData name="DISTNBR">3</SimpleData>
</SchemaData></ExtendedData>
<Polygon><altitudeMode>clampToGround</altitudeMode><outerBoundaryIs><LinearRing><altitudeMode>clampToGround</altitudeMode><coordinates>-86.4872,37.3625 -86.4691,37.3211 -86.2092,37.3329 -86.1955,37.3277 -86.1884,37.3408 -86.1749,37.332 -86.1576,37.3357 -86.0491,37.2153 -86.0564,37.1672 -85.9395,37.1515 -85.8795,37.1494 -85.6865,37.1824 -85.6609,37.143 -85.6323,37.1251 -85.5269,37.1095 -85.5227,37.0673 -85.5036,37.0077 -85.4418,36.9541 -85.4742,36.8938 -85.5074,36.8675 -85.537,36.8622 -85.5607,36.8509 -85.5803,36.8689 -85.5895,36.8734 -85.6016,36.8722 -85.5941,36.8573 -85.5747,36.8382 -85.5812,36.8229 -85.5962,36.818 -85.5888,36.7774 -85.5762,36.7782 -85.571,36.7707 -85.5425,36.7748 -85.5394,36.7589 -85.5278,36.7514 -85.5174,36.7313 -85.5085,36.7368 -85.471,36.7332 -85.4969,36.6907 -85.4364,36.6187 -85.5015,36.6149 -85.8324,36.6221 -86.3321,36.6487 -86.4934,36.6522 -86.5078,36.6524 -86.5438,36.6404 -86.5434,36.6439 -86.5499,36.6448 -86.5512,36.638 -86.5643,36.6336 -86.5899,36.6524 -87.336,36.6417 -87.2601,37.0749 -87.2518,37.0756 -87.2547,37.0697 -87.2453,37.0641 -87.2466,37.0544 -87.2621,37.0531 -87.2509,37.0494 -87.2503,37.0406 -87.1181,37.0447 -87.0532,37.061 -86.9764,37.0736 -86.9414,37.069 -86.9449,37.073 -86.9408,37.0785 -86.9214,37.0781 -86.9044,37.0878 -86.8939,37.0885 -86.9002,37.0954 -86.8958,37.0989 -86.9019,37.099 -86.8988,37.1042 -86.904,37.1015 -86.8994,37.1062 -86.9057,37.1069 -86.9007,37.1093 -86.9023,37.1123 -86.8813,37.1123 -86.8973,37.1172 -86.9009,37.1239 -86.8971,37.1251 -86.9025,37.1297 -86.8971,37.1317 -86.9009,37.1348 -86.9072,37.1266 -86.916,37.1258 -86.9128,37.1359 -86.9236,37.1429 -86.9328,37.1357 -86.9386,37.1371 -86.9239,37.1453 -86.9269,37.1603 -86.9202,37.1706 -86.9222,37.1802 -86.8983,37.1764 -86.8907,37.1852 -86.9015,37.1846 -86.9082,37.1895 -86.9091,37.1949 -86.9016,37.192 -86.9042,37.2117 -86.8892,37.2179 -86.8851,37.2329 -86.8707,37.2476 -86.8524,37.2514 -86.85,37.2623 -86.8282,37.2819 -86.8306,37.2859 -86.8256,37.2946 -86.8083,37.2914 -86.8188,37.3053 -86.8214,37.3207 -86.8159,37.3289 -86.7983,37.3347 -86.7758,37.3263 -86.7706,37.3099 -86.7595,37.3041 -86.6121,37.3951 -86.4872,37.3625</coordinates></LinearRing></outerBoundaryIs></Polygon>
</Placemark>
<Placemark>
<Style><LineStyle><color>ff0000ff</color></LineStyle><PolyStyle><fill>0</fill></PolyStyle></Style>
<ExtendedData><SchemaData schemaUrl="#ky_districts_">
<SimpleData name="DISTNBR">4</SimpleData>
</SchemaData></ExtendedData>
<Polygon><altitudeMode>clampToGround</altitudeMode><outerBoundaryIs><LinearRing><altitudeMode>clampToGround</altitudeMode><coordinates>-86.2707,38.128 -86.2791,38.1008 -86.2775,38.0799 -86.2678,38.0572 -86.2333,38.0396 -86.2207,38.0282 -86.178,38.0105 -86.1243,38.0162 -86.0946,38.0088 -86.0748,37.9966 -86.0628,37.9728 -86.0467,37.959 -86.0358,37.9622 -86.0339,37.9874 -86.0217,37.9958 -85.9471,38.0051 -85.9315,37.9936 -85.9068,37.9913 -85.9006,37.9707 -85.9045,37.9415 -85.8958,37.9395 -85.8785,37.949 -85.8549,37.9454 -85.8481,37.9237 -85.8302,37.9188 -85.8275,37.9006 -85.8132,37.8893 -85.8192,37.8865 -85.8354,37.8926 -85.8397,37.8883 -85.8382,37.8793 -85.8173,37.8583 -85.8005,37.8595 -85.7939,37.848 -85.7621,37.837 -85.75,37.8235 -85.7422,37.8219 -85.7378,37.8118 -85.721,37.8099 -85.7242,37.8059 -85.7069,37.8141 -85.6979,37.8113 -85.6916,37.8185 -85.682,37.8197 -85.6807,37.8149 -85.6749,37.8234 -85.6515,37.8285 -85.6538,37.8326 -85.6414,37.835 -85.6378,37.8419 -85.6103,37.8589 -85.6133,37.87 -85.5997,37.8694 -85.5776,37.8831 -85.5848,37.8936 -85.5839,37.9112 -85.5671,37.9187 -85.5653,37.9249 -85.5515,37.926 -85.5429,37.9404 -85.53,37.9472 -85.5239,37.9576 -85.5343,37.9654 -85.4892,37.9907 -85.4605,37.9695 -85.422,37.9575 -85.3996,37.9399 -85.1678,37.9718 -85.1528,37.8977 -85.1475,37.891 -85.1376,37.8938 -85.1463,37.9016 -85.1316,37.8998 -85.1267,37.9172 -85.1063,37.9094 -85.1075,37.8931 -85.0938,37.8878 -85.0808,37.895 -85.0797,37.8866 -85.0685,37.8857 -85.0685,37.8961 -85.0595,37.8904 -85.0592,37.8951 -85.0469,37.8985 -85.0416,37.8901 -85.0446,37.8866 -85.0305,37.8915 -85.0315,37.8816 -85.0005,37.8546 -85.0033,37.835 -85.0095,37.8356 -85.012,37.8172 -85.0058,37.8166 -85.0397,37.5452 -85.0448,37.412 -85.0612,37.4183 -85.0731,37.415 -85.0843,37.399 -85.1059,37.3976 -85.119,37.3848 -85.1312,37.3843 -85.1324,37.36 -85.1399,37.3536 -85.1596,37.3153 -85.1652,37.3104 -85.1762,37.3123 -85.1884,37.307 -85.1846,37.2936 -85.1917,37.2848 -85.1923,37.2723 -85.1991,37.2679 -85.2236,37.2625 -85.247,37.2645 -85.2583,37.2592 -85.2702,37.2626 -85.2944,37.2456 -85.3058,37.2421 -85.3118,37.2467 -85.3147,37.24 -85.3078,37.2273 -85.3172,37.2239 -85.3803,37.1683 -85.5267,37.1095 -85.6323,37.1251 -85.6609,37.143 -85.6865,37.1824 -85.8795,37.1494 -85.9395,37.1515 -86.0564,37.1672 -86.0491,37.2153 -86.1576,37.3357 -86.1749,37.332 -86.1884,37.3408 -86.1955,37.3277 -86.2092,37.3329 -86.4691,37.3211 -86.4872,37.3625 -86.6121,37.3951 -86.6619,37.5419 -86.669,37.5497 -86.664,37.5572 -86.6477,37.5552 -86.6409,37.5599 -86.6403,37.5662 -86.6373,37.5633 -86.6347,37.5673 -86.625,37.5657 -86.6201,37.554 -86.6047,37.5509 -86.6106,37.5443 -86.5975,37.5377 -86.5973,37.5459 -86.5935,37.5434 -86.5943,37.5474 -86.5832,37.5505 -86.5796,37.5472 -86.5765,37.5529 -86.5937,37.5598 -86.5934,37.5651 -86.5994,37.566 -86.6193,37.5852 -86.6251,37.6043 -86.6408,37.6192 -86.6389,37.6619 -86.6223,37.655 -86.6779,37.7929 -86.6661,37.8358 -86.6553,37.8425 -86.6329,37.8442 -86.6047,37.8581 -86.5973,37.8692 -86.5996,37.9074 -86.5885,37.9214 -86.5339,37.9172 -86.5071,37.9299 -86.5098,37.9433 -86.5199,37.9535 -86.5251,37.9681 -86.5217,38.0395 -86.5101,38.0448 -86.4539,38.0501 -86.4374,38.0617 -86.431,38.0738 -86.434,38.0864 -86.4628,38.0994 -86.4666,38.1124 -86.4617,38.1205 -86.4488,38.1274 -86.4323,38.1263 -86.4019,38.1043 -86.3812,38.1288 -86.3384,38.128 -86.3256,38.1358 -86.3212,38.147 -86.3259,38.154 -86.3661,38.1615 -86.3766,38.1694 -86.3782,38.1857 -86.3725,38.1947 -86.3598,38.1988 -86.3477,38.1954 -86.3187,38.1736 -86.2932,38.1627 -86.2729,38.1408 -86.2707,38.128</coordinates></LinearRing></outerBoundaryIs></Polygon>
</Placemark>
<Placemark>
<Style><LineStyle><color>ff0000ff</color></LineStyle><PolyStyle><fill>0</fill></PolyStyle></Style>
<ExtendedData><SchemaData schemaUrl="#ky_districts_">
<SimpleData name="DISTNBR">5</SimpleData>
</SchemaData></ExtendedData>
<Polygon><altitudeMode>clampToGround</altitudeMode><outerBoundaryIs><LinearRing><altitudeMode>clampToGround</altitudeMode><coordinates>-85.3882,38.7334 -85.3633,38.7305 -85.3331,38.7362 -85.3297,38.7258 -85.229,38.627 -85.2303,38.6178 -85.2143,38.6031 -85.2188,38.5953 -85.2114,38.5802 -85.0746,38.5968 -85.0759,38.578 -85.0638,38.5649 -85.0409,38.5742 -85.0099,38.5617 -85.0023,38.5528 -85.0123,38.5478 -85.0141,38.5374 -85.0253,38.5235 -85.0286,38.5067 -85.0183,38.5041 -84.9976,38.5177 -84.9781,38.5153 -84.9921,38.4912 -84.9546,38.471 -84.9516,38.4579 -84.9633,38.4374 -84.9544,38.4278 -84.9384,38.4285 -84.9382,38.4504 -84.929,38.462 -84.9226,38.4645 -84.9122,38.4599 -84.9093,38.4502 -84.925,38.4418 -84.9279,38.4345 -84.8803,38.4191 -84.8972,38.3906 -84.8987,38.379 -84.87,38.3703 -84.867,38.3638 -84.8701,38.3563 -84.8384,38.3569 -84.8271,38.3482 -84.8088,38.3493 -84.7932,38.3385 -84.7406,38.3524 -84.7303,38.2084 -84.7252,38.1954 -84.8648,38.1414 -84.8649,38.1169 -84.8727,38.117 -84.8716,38.1129 -84.8864,38.0974 -84.9023,38.0934 -84.9581,38.1098 -84.9674,38.1193 -85.0073,38.1296 -85.0237,38.1291 -85.0463,38.111 -85.0545,38.0842 -85.0478,38.0723 -85.0713,38.0582 -85.0836,38.0409 -85.1022,38.0371 -85.1093,38.0272 -85.1208,38.0258 -85.1192,38.021 -85.1265,38.0203 -85.1232,38.0098 -85.1303,37.9962 -85.1382,37.9974 -85.1402,38.0026 -85.1426,37.9969 -85.1505,37.9996 -85.148,37.9965 -85.1526,37.9882 -85.1562,37.993 -85.1637,37.9913 -85.1615,38.0015 -85.1683,37.9988 -85.1678,37.9718 -85.3996,37.9399 -85.422,37.9575 -85.4605,37.9695 -85.4892,37.9907 -85.5343,37.9654 -85.5239,37.9576 -85.53,37.9472 -85.5429,37.9404 -85.5515,37.926 -85.5653,37.9249 -85.5671,37.9187 -85.5839,37.9112 -85.5848,37.8936 -85.5776,37.8831 -85.5997,37.8694 -85.6133,37.87 -85.6103,37.8589 -85.6378,37.8419 -85.6414,37.835 -85.6538,37.8326 -85.6515,37.8285 -85.6749,37.8234 -85.6807,37.8149 -85.682,37.8197 -85.6916,37.8185 -85.6979,37.8113 -85.7069,37.8141 -85.7242,37.8059 -85.721,37.8099 -85.7378,37.8118 -85.7422,37.8219 -85.75,37.8235 -85.7621,37.837 -85.7939,37.848 -85.8005,37.8595 -85.8173,37.8583 -85.8403,37.8829 -85.8354,37.8926 -85.8192,37.8865 -85.8132,37.8893 -85.8275,37.9006 -85.8293,37.9178 -85.8476,37.9231 -85.8512,37.9408 -85.8593,37.9476 -85.8785,37.949 -85.8958,37.9395 -85.9033,37.9405 -85.9006,37.9713 -85.9064,37.9909 -85.9315,37.9936 -85.9471,38.0051 -85.9234,38.0253 -85.9151,38.0676 -85.905,38.0898 -85.9093,38.1422 -85.9062,38.1683 -85.8843,38.1996 -85.8444,38.2311 -85.8389,38.2403 -85.8362,38.2653 -85.8264,38.2789 -85.7813,38.2885 -85.7714,38.2851 -85.7615,38.2723 -85.7432,38.2673 -85.6792,38.298 -85.6523,38.3288 -85.6395,38.3609 -85.6318,38.3984 -85.6204,38.4235 -85.607,38.4386 -85.5836,38.4508 -85.5336,38.4559 -85.5058,38.4647 -85.4874,38.4795 -85.4697,38.5089 -85.4234,38.5319 -85.4157,38.5467 -85.416,38.5637 -85.4384,38.6039 -85.4387,38.6589 -85.455,38.6813 -85.4568,38.6923 -85.4519,38.7102 -85.4354,38.7291 -85.4141,38.7369 -85.3882,38.7334</coordinates></LinearRing></outerBoundaryIs></Polygon>
</Placemark>
<Placemark>
<Style><LineStyle><color>ff0000ff</color></LineStyle><PolyStyle><fill>0</fill></PolyStyle></Style>
<ExtendedData><SchemaData schemaUrl="#ky_districts_">
<SimpleData name="DISTNBR">6</SimpleData>
</SchemaData></ExtendedData>
<Polygon><altitudeMode>clampToGround</altitudeMode><outerBoundaryIs><LinearRing><altitudeMode>clampToGround</altitudeMode><coordinates>-84.7418,39.1474 -84.7181,39.1366 -84.6861,39.1008 -84.6583,39.0956 -84.6328,39.0767 -84.6187,39.0733 -84.5732,39.0819 -84.5514,39.0994 -84.5256,39.0925 -84.511,39.0937 -84.4759,39.1199 -84.4525,39.1192 -84.4352,39.1004 -84.4327,39.0668 -84.4263,39.053 -84.4096,39.0463 -84.3482,39.0378 -84.3266,39.0273 -84.3061,39.0078 -84.2888,38.9557 -84.234,38.8914 -84.2317,38.8323 -84.225,38.817 -84.2131,38.8058 -84.1472,38.7929 -84.0708,38.7704 -84.0438,38.7707 -83.9779,38.7873 -83.9618,38.7875 -83.9436,38.7833 -83.9278,38.7719 -83.9039,38.7682 -83.9916,38.5937 -83.9708,38.5872 -83.9745,38.5826 -83.9683,38.5828 -83.9609,38.5327 -83.9304,38.4923 -83.9824,38.4525 -83.9843,38.4444 -83.9801,38.4374 -83.9914,38.4348 -83.9985,38.4225 -83.9996,38.4417 -84.0064,38.431 -84.0182,38.4457 -84.0304,38.4407 -84.0724,38.4573 -84.0861,38.4545 -84.1021,38.4594 -84.1941,38.3718 -84.2802,38.3133 -84.2891,38.312 -84.2961,38.3178 -84.2943,38.3089 -84.3088,38.3124 -84.31,38.3076 -84.3048,38.305 -84.3312,38.2931 -84.3412,38.2963 -84.3334,38.2894 -84.3445,38.2851 -84.3556,38.2883 -84.3599,38.296 -84.3699,38.2816 -84.3788,38.2779 -84.4168,38.2877 -84.4293,38.2797 -84.4449,38.2847 -84.4407,38.2965 -84.433,38.2991 -84.434,38.3068 -84.4609,38.3484 -84.4577,38.3514 -84.4628,38.364 -84.4581,38.3736 -84.4624,38.3846 -84.4855,38.4103 -84.528,38.4333 -84.5262,38.4498 -84.5319,38.4589 -84.5464,38.4668 -84.5557,38.4926 -84.5607,38.4924 -84.6236,38.4312 -84.6495,38.4166 -84.706,38.3701 -84.7462,38.3495 -84.7932,38.3385 -84.8088,38.3493 -84.8271,38.3482 -84.8384,38.3569 -84.8701,38.3563 -84.867,38.3638 -84.87,38.3703 -84.8974,38.3771 -84.8972,38.3906 -84.8799,38.4186 -84.9266,38.4321 -84.9267,38.4402 -84.9093,38.4502 -84.9149,38.4618 -84.9233,38.4645 -84.9351,38.4567 -84.9393,38.4278 -84.9498,38.4262 -84.9597,38.4326 -84.9633,38.4374 -84.9516,38.4579 -84.9546,38.471 -84.9921,38.4912 -84.9781,38.5153 -85.0005,38.5171 -85.0192,38.5039 -85.0297,38.5094 -85.0123,38.5478 -85.0023,38.5528 -85.0099,38.5617 -85.0409,38.5742 -85.0638,38.5649 -85.0759,38.578 -85.0746,38.5968 -85.2114,38.5802 -85.2188,38.5953 -85.2143,38.6031 -85.2303,38.6178 -85.229,38.627 -85.3297,38.7258 -85.3331,38.7362 -85.2893,38.7424 -85.259,38.7378 -85.2463,38.7315 -85.2149,38.6965 -85.1888,38.6876 -85.1731,38.688 -85.1374,38.6999 -85.1016,38.7265 -84.9919,38.7785 -84.9418,38.7757 -84.8873,38.7948 -84.8289,38.7833 -84.8139,38.7851 -84.814,38.8002 -84.8272,38.8187 -84.83,38.8306 -84.7915,38.86 -84.7853,38.8804 -84.8122,38.895 -84.8668,38.8988 -84.8773,38.9095 -84.8775,38.9207 -84.8338,38.9593 -84.8301,38.9726 -84.8386,38.9899 -84.8857,39.0375 -84.8973,39.0574 -84.8324,39.1005 -84.7878,39.1153 -84.7581,39.145 -84.7418,39.1474</coordinates></LinearRing></outerBoundaryIs></Polygon>
</Placemark>
<Placemark>
<Style><LineStyle><color>ff0000ff</color></LineStyle><PolyStyle><fill>0</fill></PolyStyle></Style>
<ExtendedData><SchemaData schemaUrl="#ky_districts_">
<SimpleData name="DISTNBR">7</SimpleData>
</SchemaData></ExtendedData>
<Polygon><altitudeMode>clampToGround</altitudeMode><outerBoundaryIs><LinearRing><altitudeMode>clampToGround</altitudeMode><coordinates>-84.5549,38.4922 -84.5464,38.4668 -84.5319,38.4589 -84.5262,38.4498 -84.528,38.4333 -84.4855,38.4103 -84.4624,38.3846 -84.4581,38.3736 -84.4628,38.364 -84.4577,38.3514 -84.4609,38.3484 -84.434,38.3068 -84.4328,38.2994 -84.4407,38.2965 -84.4441,38.2838 -84.429,38.2797 -84.415,38.2876 -84.3788,38.2779 -84.3676,38.2841 -84.3615,38.2958 -84.3556,38.2883 -84.3455,38.2851 -84.3341,38.2887 -84.3424,38.2954 -84.3192,38.296 -84.3129,38.3038 -84.3046,38.3052 -84.31,38.3076 -84.3088,38.3124 -84.2941,38.309 -84.2966,38.3177 -84.2818,38.3125 -84.1941,38.3718 -84.1663,38.3549 -84.1326,38.3046 -84.1244,38.3071 -84.129,38.3047 -84.1299,38.2946 -84.1189,38.2951 -84.1173,38.2886 -84.1042,38.286 -84.1087,38.2813 -84.1145,38.2861 -84.1112,38.2794 -84.1202,38.2755 -84.1174,38.2722 -84.1096,38.2752 -84.1037,38.2699 -84.1035,38.259 -84.0927,38.2605 -84.0958,38.268 -84.0894,38.2729 -84.0787,38.2727 -84.0855,38.2665 -84.0734,38.2662 -84.0789,38.2632 -84.0793,38.2566 -84.0571,38.2566 -84.0525,38.2428 -84.057,38.2427 -84.0531,38.2395 -84.0626,38.2349 -84.0329,38.2236 -84.0276,38.2189 -84.0291,38.2141 -84.004,38.224 -84.0066,38.2149 -83.9959,38.2151 -84.0045,38.2112 -83.9907,38.203 -83.9889,38.2194 -83.9767,38.2199 -83.979,38.2079 -83.9701,38.2099 -83.9698,38.2042 -83.975,38.1964 -83.9837,38.1945 -83.9708,38.1912 -83.9704,38.1867 -83.9789,38.1882 -83.9803,38.1841 -83.9709,38.1791 -83.9794,38.1758 -83.9652,38.1695 -83.9679,38.1652 -83.9759,38.1673 -83.9747,38.1584 -83.9676,38.1595 -83.9614,38.154 -83.9613,38.16 -83.9526,38.1645 -83.9564,38.1589 -83.9493,38.1557 -83.9524,38.1527 -83.8814,38.1365 -83.8208,38.0811 -83.8017,38.0417 -83.7558,38.0053 -83.765,37.986 -83.7741,37.9903 -83.7758,37.987 -83.7735,37.9739 -83.7772,37.9716 -83.7701,37.9615 -83.7752,37.9563 -83.7753,37.9391 -83.7646,37.9294 -83.7654,37.9246 -83.782,37.9082 -83.7996,37.9074 -83.8145,37.9002 -83.8283,37.9064 -83.8327,37.9028 -83.8414,37.9063 -83.8526,37.9028 -83.8625,37.9082 -83.8768,37.9045 -83.88,37.9137 -83.8863,37.9165 -83.9082,37.9167 -83.9596,37.9339 -83.9738,37.9303 -83.9797,37.928 -83.976,37.9236 -83.9856,37.925 -83.9918,37.9178 -83.9917,37.9033 -83.9858,37.9029 -83.9983,37.8875 -83.9966,37.8781 -84.0065,37.8601 -84.0146,37.8582 -84.0197,37.8696 -84.0274,37.8695 -84.0219,37.8579 -84.0083,37.8535 -84.0136,37.8515 -84.002,37.8378 -84.0047,37.8337 -84.0203,37.8349 -84.0131,37.8404 -84.0154,37.8429 -84.0396,37.8337 -84.0431,37.8416 -84.0483,37.8373 -84.0537,37.8471 -84.059,37.8479 -84.0574,37.8354 -84.0723,37.8219 -84.0765,37.8258 -84.0803,37.8531 -84.0902,37.8359 -84.1037,37.8396 -84.1092,37.8259 -84.1202,37.8174 -84.1213,37.8065 -84.1147,37.8047 -84.0966,37.8159 -84.0768,37.8089 -84.0738,37.8033 -84.0957,37.7856 -84.1091,37.7817 -84.105,37.7746 -84.0819,37.7683 -84.0896,37.7577 -84.0803,37.746 -84.0967,37.7351 -84.0917,37.7245 -84.0992,37.719 -84.0928,37.714 -84.0959,37.711 -84.092,37.7095 -84.0917,37.6899 -84.1008,37.6786 -84.089,37.6675 -84.1071,37.6598 -84.127,37.6424 -84.0904,37.5662 -84.1421,37.5648 -84.1718,37.5576 -84.1995,37.5229 -84.2237,37.5273 -84.2349,37.5197 -84.2482,37.5249 -84.2683,37.5153 -84.2776,37.5237 -84.3017,37.5233 -84.2983,37.5349 -84.3039,37.5374 -84.3136,37.5282 -84.3193,37.538 -84.337,37.5361 -84.3446,37.5399 -84.3609,37.5157 -84.3549,37.4991 -84.3742,37.4728 -84.4467,37.4859 -84.4526,37.4929 -84.4732,37.4944 -84.6185,37.5931 -84.6207,37.6029 -84.6327,37.601 -84.6436,37.6126 -84.6486,37.6099 -84.6523,37.6185 -84.6457,37.6241 -84.641,37.6188 -84.636,37.6218 -84.6447,37.6324 -84.6514,37.6337 -84.6509,37.6404 -84.6601,37.6331 -84.6521,37.6259 -84.6584,37.6178 -84.6637,37.6252 -84.6662,37.6175 -84.6741,37.6158 -84.6761,37.6238 -84.6838,37.621 -84.6903,37.6256 -84.6964,37.6173 -84.6883,37.6125 -84.7237,37.5913 -84.747,37.5856 -84.7442,37.5974 -84.7554,37.5961 -84.7568,37.5884 -84.7473,37.5855 -84.7837,37.5766 -84.8474,37.5484 -84.8981,37.5321 -85.0022,37.5336 -85.0024,37.5485 -85.0131,37.5513 -85.0397,37.5452 -85.0058,37.8166 -85.012,37.8172 -85.0095,37.8356 -85.0033,37.835 -85.0005,37.8546 -85.0315,37.8816 -85.0305,37.8915 -85.0446,37.8866 -85.0416,37.8901 -85.0469,37.8985 -85.0592,37.8951 -85.0595,37.8904 -85.0685,37.8961 -85.0685,37.8857 -85.0797,37.8866 -85.0808,37.895 -85.0938,37.8878 -85.1075,37.8931 -85.1063,37.9094 -85.1267,37.9172 -85.1316,37.8998 -85.1463,37.9016 -85.1376,37.8938 -85.1475,37.891 -85.1528,37.8977 -85.1616,37.941 -85.1692,37.9979 -85.1615,38.0015 -85.1637,37.9913 -85.1562,37.993 -85.1522,37.9881 -85.1505,37.9996 -85.1426,37.9969 -85.1402,38.0026 -85.1382,37.9974 -85.1303,37.9962 -85.1232,38.0098 -85.1265,38.0203 -85.1192,38.021 -85.1208,38.0258 -85.1093,38.0272 -85.1022,38.0371 -85.0836,38.0409 -85.0713,38.0582 -85.0478,38.0723 -85.0545,38.0842 -85.0463,38.111 -85.0237,38.1291 -85.0073,38.1296 -84.9674,38.1193 -84.9581,38.1098 -84.9023,38.0934 -84.8864,38.0974 -84.8716,38.1129 -84.8727,38.117 -84.8649,38.1169 -84.8648,38.1414 -84.7252,38.1954 -84.7303,38.2084 -84.7406,38.3524 -84.706,38.3701 -84.6495,38.4166 -84.6236,38.4312 -84.5607,38.4924 -84.5549,38.4922</coordinates></LinearRing></outerBoundaryIs></Polygon>
</Placemark>
<Placemark>
<Style><LineStyle><color>ff0000ff</color></LineStyle><PolyStyle><fill>0</fill></PolyStyle></Style>
<ExtendedData><SchemaData schemaUrl="#ky_districts_">
<SimpleData name="DISTNBR">8</SimpleData>
</SchemaData></ExtendedData>
<Polygon><altitudeMode>clampToGround</altitudeMode><outerBoundaryIs><LinearRing><altitudeMode>clampToGround</altitudeMode><coordinates>-84.6516,37.6348 -84.6361,37.6221 -84.641,37.6188 -84.6457,37.6241 -84.6523,37.6185 -84.6486,37.6099 -84.6436,37.6126 -84.6327,37.601 -84.6207,37.6029 -84.6185,37.5931 -84.4732,37.4944 -84.4526,37.4929 -84.4467,37.4859 -84.3742,37.4728 -84.3549,37.4991 -84.3609,37.5157 -84.3446,37.5399 -84.337,37.5361 -84.3193,37.538 -84.3136,37.5282 -84.3039,37.5374 -84.2983,37.5349 -84.3017,37.5233 -84.2776,37.5237 -84.2683,37.5153 -84.2482,37.5249 -84.2349,37.5197 -84.2237,37.5273 -84.1995,37.5229 -84.1982,37.5153 -84.2042,37.5116 -84.2053,37.5033 -84.2,37.4952 -84.2038,37.4867 -84.1893,37.4568 -84.1828,37.4548 -84.183,37.4454 -84.1752,37.4414 -84.1696,37.4262 -84.1593,37.4174 -84.1693,37.3969 -84.1695,37.3854 -84.1459,37.3687 -84.1359,37.3676 -84.1294,37.3586 -84.143,37.3523 -84.1328,37.3489 -84.1351,37.343 -84.1423,37.3452 -84.1362,37.3299 -84.1459,37.3275 -84.1379,37.3198 -84.1372,37.3099 -84.1523,37.3106 -84.1469,37.3035 -84.1594,37.3035 -84.1624,37.2979 -84.1714,37.3002 -84.1717,37.307 -84.1803,37.3037 -84.1789,37.2989 -84.1905,37.2856 -84.1981,37.2856 -84.2016,37.2801 -84.2174,37.2831 -84.2178,37.2424 -84.2241,37.2388 -84.234,37.2479 -84.2397,37.2386 -84.236,37.2311 -84.2403,37.2285 -84.2543,37.2391 -84.2579,37.2281 -84.2671,37.2228 -84.2632,37.2171 -84.2721,37.2127 -84.2593,37.2051 -84.281,37.1975 -84.2783,37.1873 -84.2656,37.1817 -84.2999,37.1706 -84.288,37.1581 -84.2939,37.145 -84.2895,37.1291 -84.2969,37.1217 -84.279,37.1197 -84.2811,37.1145 -84.293,37.1136 -84.2801,37.1009 -84.287,37.0953 -84.2852,37.0889 -84.3007,37.088 -84.3033,37.0802 -84.3147,37.0772 -84.3246,37.0679 -84.3251,37.0618 -84.3159,37.0544 -84.3173,37.0408 -84.3125,37.0377 -84.303,37.0407 -84.311,37.0241 -84.3157,37.0229 -84.3205,37.0287 -84.3318,37.025 -84.3263,37.0156 -84.3139,37.0083 -84.3151,37.0015 -84.35,36.9891 -84.3458,36.969 -84.3689,36.9482 -84.3624,36.9409 -84.3535,36.9394 -84.3245,36.9462 -84.3118,36.9421 -84.2968,36.9448 -84.2997,36.9378 -84.3132,36.9294 -84.3042,36.9113 -84.3159,36.9054 -84.3234,36.8942 -84.3148,36.8831 -84.3253,36.8675 -84.315,36.8574 -84.3276,36.8541 -84.3318,36.8467 -84.345,36.8398 -84.3421,36.8357 -84.3324,36.8384 -84.318,36.8338 -84.3405,36.8245 -84.3559,36.8121 -84.3453,36.806 -84.3503,36.7968 -84.35,36.7807 -84.338,36.7751 -84.3311,36.7591 -84.3227,36.7587 -84.3198,36.7098 -84.3076,36.6768 -84.2715,36.634 -84.2396,36.6134 -84.2287,36.6006 -84.2273,36.5921 -84.83,36.6045 -85.0269,36.6193 -85.1757,36.625 -85.2769,36.6268 -85.4364,36.6187 -85.4969,36.6907 -85.471,36.7332 -85.5085,36.7368 -85.5174,36.7313 -85.5278,36.7514 -85.5394,36.7589 -85.5425,36.7748 -85.571,36.7707 -85.5762,36.7782 -85.5888,36.7774 -85.5962,36.818 -85.5812,36.8229 -85.5747,36.8382 -85.5941,36.8573 -85.6016,36.8722 -85.5895,36.8734 -85.5803,36.8689 -85.5607,36.8509 -85.537,36.8622 -85.5074,36.8675 -85.4742,36.8938 -85.4418,36.9541 -85.5036,37.0077 -85.5227,37.0673 -85.5269,37.1095 -85.3803,37.1683 -85.3172,37.2239 -85.3078,37.2273 -85.3147,37.24 -85.3118,37.2467 -85.3058,37.2421 -85.2944,37.2456 -85.2702,37.2626 -85.2583,37.2592 -85.247,37.2645 -85.2236,37.2625 -85.1923,37.2723 -85.1917,37.2848 -85.184,37.2959 -85.1884,37.307 -85.1762,37.3123 -85.1652,37.3104 -85.1565,37.3191 -85.1399,37.3536 -85.1324,37.36 -85.1312,37.3843 -85.119,37.3848 -85.1059,37.3976 -85.0843,37.399 -85.0731,37.415 -85.0612,37.4183 -85.0448,37.412 -85.0397,37.5452 -85.0131,37.5513 -85.0024,37.5485 -85.0022,37.5336 -84.8981,37.5321 -84.8474,37.5484 -84.7837,37.5766 -84.7473,37.5855 -84.7568,37.5884 -84.7554,37.5961 -84.7442,37.5974 -84.747,37.5856 -84.7237,37.5913 -84.6883,37.6125 -84.6964,37.6173 -84.6903,37.6256 -84.6838,37.621 -84.6761,37.6238 -84.6741,37.6158 -84.6662,37.6175 -84.6637,37.6252 -84.6584,37.6178 -84.6521,37.6259 -84.6601,37.6331 -84.6505,37.6403 -84.6516,37.6348</coordinates></LinearRing></outerBoundaryIs></Polygon>
</Placemark>
<Placemark>
<Style><LineStyle><color>ff0000ff</color></LineStyle><PolyStyle><fill>0</fill></PolyStyle></Style>
<ExtendedData><SchemaData schemaUrl="#ky_districts_">
<SimpleData name="DISTNBR">9</SimpleData>
</SchemaData></ExtendedData>
<Polygon><altitudeMode>clampToGround</altitudeMode><outerBoundaryIs><LinearRing><altitudeMode>clampToGround</altitudeMode><coordinates>-82.8852,38.7546 -82.8752,38.7468 -82.871,38.7365 -82.8774,38.6894 -82.8603,38.6627 -82.8543,38.6129 -82.8422,38.5886 -82.8212,38.5734 -82.7919,38.5606 -82.7256,38.5582 -82.6909,38.5378 -82.6535,38.4937 -82.608,38.4677 -82.5935,38.4218 -82.5971,38.4108 -82.5946,38.3983 -82.5995,38.3908 -82.5927,38.3768 -82.5981,38.3459 -82.5767,38.3285 -82.5718,38.3172 -82.583,38.2968 -82.5741,38.2746 -82.5746,38.2639 -82.5857,38.2457 -82.6046,38.2477 -82.6019,38.2499 -82.61,38.2641 -82.6279,38.269 -82.6995,38.2619 -82.7053,38.2531 -82.7215,38.2498 -82.7239,38.2436 -82.7352,38.2426 -82.7389,38.237 -82.7565,38.2392 -82.7663,38.2351 -82.7933,38.2446 -82.7948,38.2405 -82.8216,38.2324 -82.8241,38.2283 -82.8149,38.223 -82.814,38.2173 -82.8517,38.1909 -82.8838,38.196 -82.8975,38.1828 -82.9188,38.179 -82.9248,38.1751 -82.9152,38.1729 -82.9163,38.1626 -82.9078,38.1567 -82.9068,38.133 -82.8988,38.1301 -82.889,38.1116 -82.8984,38.1033 -82.9066,38.1031 -82.9075,38.0957 -82.9171,38.0991 -82.9292,38.0897 -82.9311,38.083 -82.942,38.0776 -82.942,38.0642 -82.9513,38.0597 -82.9493,38.0556 -82.956,38.0496 -82.9815,38.0499 -82.9837,38.0431 -83.0022,38.0346 -83.0025,38.0239 -83.0148,38.016 -83.0111,38.0105 -83.0291,38.0095 -83.0479,37.9967 -83.0572,37.9994 -83.0593,38.0062 -83.0653,38.008 -83.0735,38.0015 -83.077,38.0071 -83.0894,38.0105 -83.1017,38.0098 -83.1098,38.0039 -83.1359,38.0044 -83.1446,37.9966 -83.152,38.0105 -83.1596,38.0082 -83.174,38.0171 -83.1766,38.0128 -83.1936,38.0106 -83.2032,38.0141 -83.2115,38.0222 -83.2109,38.0271 -83.2216,38.0274 -83.2226,38.0437 -83.2309,38.0465 -83.2328,38.0519 -83.2501,38.0502 -83.2677,38.059 -83.2706,38.0747 -83.2611,38.1007 -83.2707,38.1062 -83.264,38.1155 -83.2861,38.1023 -83.2993,38.0997 -83.2988,38.0926 -83.3036,38.0899 -83.3326,38.0841 -83.3374,38.0882 -83.3461,38.0722 -83.3427,38.0695 -83.3513,38.0649 -83.3714,38.0696 -83.3712,38.0598 -83.381,38.0621 -83.3805,38.0516 -83.3899,38.0546 -83.3987,38.0389 -83.4064,38.045 -83.4089,38.0392 -83.4169,38.048 -83.4305,38.0471 -83.4393,38.0403 -83.4323,38.0389 -83.4343,38.0335 -83.4499,38.0307 -83.4504,38.0195 -83.455,38.0177 -83.4689,38.0202 -83.4551,38.0292 -83.4562,38.0327 -83.4795,38.0273 -83.4652,38.0422 -83.4641,38.0502 -83.4833,38.0464 -83.575,38.0589 -83.5778,38.0525 -83.5733,38.046 -83.5763,38.0343 -83.5729,38.023 -83.5809,38.0116 -83.6047,38.0144 -83.6102,38.0071 -83.6338,38.0266 -83.6526,38.0239 -83.6596,38.0283 -83.6885,38.0123 -83.7059,38.0127 -83.7172,38.0033 -83.7382,38.0101 -83.7569,37.9925 -83.7594,37.9987 -83.7558,38.0053 -83.8017,38.0417 -83.8208,38.0811 -83.8814,38.1365 -83.9524,38.1527 -83.9493,38.1557 -83.9564,38.1589 -83.9526,38.1645 -83.9613,38.16 -83.9614,38.154 -83.9676,38.1595 -83.9747,38.1584 -83.9759,38.1673 -83.9679,38.1652 -83.9652,38.1695 -83.9794,38.1758 -83.9709,38.1791 -83.9803,38.1841 -83.9789,38.1882 -83.9704,38.1867 -83.9708,38.1912 -83.9837,38.1945 -83.975,38.1964 -83.9698,38.2042 -83.9701,38.2099 -83.979,38.2079 -83.9767,38.2199 -83.9889,38.2194 -83.9907,38.203 -84.0045,38.2112 -83.9959,38.2151 -84.0066,38.2149 -84.004,38.224 -84.0291,38.2141 -84.0276,38.2189 -84.0329,38.2236 -84.0626,38.2349 -84.0531,38.2395 -84.057,38.2427 -84.0525,38.2428 -84.0571,38.2566 -84.0793,38.2566 -84.0789,38.2632 -84.0734,38.2662 -84.0855,38.2665 -84.0787,38.2727 -84.0894,38.2729 -84.0958,38.268 -84.0927,38.2605 -84.1035,38.259 -84.1037,38.2699 -84.1096,38.2752 -84.1174,38.2722 -84.1202,38.2755 -84.1112,38.2794 -84.1145,38.2861 -84.1087,38.2813 -84.1042,38.286 -84.1173,38.2886 -84.1189,38.2951 -84.1299,38.2946 -84.129,38.3047 -84.1244,38.3071 -84.1326,38.3046 -84.1663,38.3549 -84.1941,38.3718 -84.1021,38.4594 -84.0861,38.4545 -84.0724,38.4573 -84.0304,38.4407 -84.0182,38.4457 -84.0064,38.431 -83.9996,38.4417 -83.9992,38.4223 -83.9933,38.4257 -83.9914,38.4348 -83.9801,38.4374 -83.9843,38.4444 -83.9824,38.4525 -83.9304,38.4923 -83.9609,38.5327 -83.9683,38.5828 -83.9745,38.5826 -83.9708,38.5872 -83.9916,38.5937 -83.9039,38.7682 -83.8586,38.7565 -83.8489,38.7475 -83.8362,38.7173 -83.788,38.7001 -83.773,38.6598 -83.7632,38.6522 -83.721,38.6467 -83.6815,38.6303 -83.6596,38.6274 -83.6456,38.6353 -83.6365,38.6674 -83.626,38.6786 -83.5208,38.7031 -83.4906,38.693 -83.4681,38.6755 -83.3776,38.6618 -83.3579,38.6549 -83.3276,38.6379 -83.3177,38.6094 -83.2945,38.5967 -83.2638,38.6217 -83.2452,38.6287 -83.2014,38.6167 -83.1427,38.6251 -83.1302,38.6382 -83.1222,38.6599 -83.1121,38.6719 -83.054,38.6951 -83.0302,38.726 -83.0137,38.7307 -82.9716,38.7272 -82.9327,38.7473 -82.8961,38.7564 -82.8852,38.7546</coordinates></LinearRing></outerBoundaryIs></Polygon>
</Placemark>
<Placemark>
<Style><LineStyle><color>ff0000ff</color></LineStyle><PolyStyle><fill>0</fill></PolyStyle></Style>
<ExtendedData><SchemaData schemaUrl="#ky_districts_">
<SimpleData name="DISTNBR">10</SimpleData>
</SchemaData></ExtendedData>
<Polygon><altitudeMode>clampToGround</altitudeMode><outerBoundaryIs><LinearRing><altitudeMode>clampToGround</altitudeMode><coordinates>-83.27,38.1072 -83.2611,38.1007 -83.2706,38.0747 -83.2677,38.059 -83.2501,38.0502 -83.2328,38.0519 -83.2309,38.0465 -83.2226,38.0437 -83.2216,38.0274 -83.2109,38.0271 -83.2115,38.0222 -83.2032,38.0141 -83.1936,38.0106 -83.1766,38.0128 -83.174,38.0171 -83.1596,38.0082 -83.152,38.0105 -83.1432,37.9965 -83.1359,38.0044 -83.1098,38.0039 -83.1017,38.0098 -83.0894,38.0105 -83.077,38.0071 -83.0735,38.0015 -83.0653,38.008 -83.0593,38.0062 -83.0572,37.9994 -83.0479,37.9967 -83.0241,38.0096 -83.0239,38.0013 -83.0192,37.9993 -83.0252,37.9911 -83.0219,37.9818 -83.0139,37.9794 -83.0159,37.9736 -83.0097,37.9742 -83.0092,37.9682 -82.9989,37.9678 -82.9963,37.9626 -82.9871,37.9624 -82.9874,37.9556 -82.9805,37.9483 -82.9851,37.9429 -82.9771,37.9392 -82.9684,37.924 -82.9732,37.9142 -82.9615,37.9128 -82.9614,37.8938 -82.9697,37.8979 -82.977,37.8933 -82.9866,37.8984 -82.9839,37.8757 -82.9892,37.8696 -82.9973,37.8698 -83.0047,37.8593 -82.9815,37.8354 -82.9868,37.8298 -82.9877,37.8141 -82.9506,37.7947 -82.9483,37.7199 -82.9408,37.7163 -82.9459,37.6779 -82.9278,37.6566 -82.9117,37.6532 -82.9089,37.6492 -82.9126,37.6438 -82.903,37.641 -82.9067,37.6311 -82.9003,37.6212 -82.9058,37.6189 -82.9063,37.6062 -82.904,37.5945 -82.8965,37.5883 -82.9022,37.5769 -82.8971,37.5677 -82.8889,37.5648 -82.8906,37.5547 -82.8854,37.5493 -82.8899,37.5438 -82.8787,37.5399 -82.8796,37.5349 -82.8926,37.5323 -82.8916,37.5191 -82.8973,37.515 -82.8962,37.5089 -82.9106,37.4995 -82.9091,37.4918 -82.9255,37.4865 -82.9335,37.494 -82.9412,37.4897 -82.9485,37.5032 -82.9733,37.4978 -82.9852,37.5066 -83.0027,37.5012 -83.0139,37.5086 -83.0313,37.5063 -83.0472,37.526 -83.0557,37.5204 -83.065,37.5257 -83.071,37.5169 -83.0888,37.5227 -83.0953,37.5164 -83.093,37.4983 -83.1347,37.4572 -83.1099,37.3362 -83.1173,37.3282 -83.1106,37.3252 -83.1166,37.3086 -83.1099,37.3026 -83.1231,37.2879 -83.1194,37.2834 -83.1244,37.2805 -83.1273,37.2684 -83.1204,37.2469 -83.1268,37.236 -83.1162,37.2407 -83.1006,37.2357 -83.083,37.2428 -83.0825,37.2477 -83.0704,37.2485 -83.0663,37.2446 -83.0674,37.2313 -83.0539,37.2154 -83.0342,37.2174 -83.0297,37.2085 -83.0063,37.2059 -83.0002,37.1961 -83.0285,37.1696 -83.0374,37.1653 -83.0489,37.1694 -83.0356,37.1572 -83.0614,37.1176 -83.0548,37.1039 -83.0469,37.1026 -83.0517,37.0962 -83.0403,37.0787 -83.0469,37.0693 -83.0427,37.0622 -83.0486,37.0586 -83.0576,37.0621 -83.062,37.0518 -83.0735,37.0473 -83.0719,37.0423 -83.0521,37.035 -83.0495,37.0294 -83.0582,37.025 -83.0545,37.018 -83.1096,36.9919 -83.1242,37.0057 -83.137,37.0041 -83.1442,37.0137 -83.1601,37.0139 -83.1608,37.0207 -83.1738,37.0171 -83.1854,37.0213 -83.1869,37.0344 -83.1785,37.0382 -83.1824,37.0467 -83.1746,37.0523 -83.1809,37.0563 -83.1792,37.061 -83.1657,37.0674 -83.1644,37.0739 -83.1767,37.081 -83.1683,37.088 -83.1713,37.0912 -83.1672,37.1024 -83.1824,37.1069 -83.1844,37.1123 -83.1952,37.1093 -83.2056,37.1291 -83.2274,37.1372 -83.2181,37.1452 -83.2268,37.1508 -83.2263,37.1556 -83.2194,37.1602 -83.2145,37.1576 -83.2122,37.165 -83.2019,37.1667 -83.2026,37.1753 -83.2327,37.1846 -83.2408,37.196 -83.2493,37.1952 -83.2527,37.2036 -83.2632,37.2002 -83.2768,37.2033 -83.2871,37.2174 -83.2989,37.2146 -83.3109,37.2299 -83.3246,37.2254 -83.3254,37.231 -83.3373,37.2368 -83.3329,37.2444 -83.3394,37.2504 -83.336,37.2543 -83.3444,37.2602 -83.3359,37.2726 -83.3453,37.2831 -83.3537,37.2844 -83.3535,37.298 -83.3666,37.3005 -83.3733,37.2956 -83.3745,37.3054 -83.3958,37.3097 -83.3984,37.3207 -83.4024,37.3141 -83.4163,37.3118 -83.4238,37.3022 -83.4291,37.3033 -83.4319,37.2903 -83.439,37.2932 -83.4426,37.2874 -83.4544,37.2882 -83.461,37.2939 -83.4718,37.2913 -83.4863,37.2749 -83.4846,37.2681 -83.4763,37.2659 -83.483,37.2631 -83.4833,37.2519 -83.5001,37.2449 -83.5076,37.2358 -83.5113,37.2551 -83.5328,37.2564 -83.5424,37.2683 -83.5661,37.2654 -83.5656,37.2757 -83.5754,37.281 -83.5741,37.2884 -83.5831,37.2948 -83.5973,37.2923 -83.6093,37.3013 -83.6088,37.3085 -83.6166,37.3079 -83.6162,37.3147 -83.6224,37.3148 -83.6238,37.3277 -83.6333,37.3309 -83.6343,37.3392 -83.652,37.3503 -83.6533,37.3581 -83.6681,37.3552 -83.6797,37.3369 -83.7947,37.3506 -83.8015,37.3644 -83.812,37.3703 -83.8289,37.4118 -83.8401,37.4249 -83.842,37.4389 -83.85,37.4479 -83.8651,37.4514 -83.884,37.4773 -83.8813,37.4955 -83.8877,37.5021 -83.8858,37.5188 -83.9252,37.5611 -83.9398,37.5732 -83.9652,37.5814 -84.045,37.5636 -84.0904,37.5662 -84.127,37.6424 -84.1071,37.6598 -84.089,37.6675 -84.1008,37.6786 -84.0917,37.6899 -84.092,37.7095 -84.0959,37.711 -84.0928,37.714 -84.0992,37.719 -84.0917,37.7245 -84.0967,37.7351 -84.0803,37.746 -84.0896,37.7577 -84.0819,37.7683 -84.105,37.7746 -84.1091,37.7817 -84.0957,37.7856 -84.0738,37.8021 -84.0757,37.8083 -84.0966,37.8159 -84.1182,37.8047 -84.1218,37.8078 -84.1202,37.8174 -84.1092,37.8259 -84.1031,37.8401 -84.0889,37.8368 -84.0803,37.8531 -84.0765,37.8258 -84.0723,37.8219 -84.0574,37.8354 -84.059,37.8479 -84.0537,37.8471 -84.0483,37.8373 -84.0431,37.8416 -84.0396,37.8337 -84.0154,37.8429 -84.0129,37.8407 -84.0196,37.8343 -84.0044,37.834 -84.0022,37.838 -84.0136,37.8515 -84.0083,37.8535 -84.0219,37.8579 -84.0274,37.8695 -84.0197,37.8696 -84.0146,37.8582 -84.0065,37.8601 -83.9966,37.8781 -83.9983,37.8875 -83.9858,37.9029 -83.9917,37.9033 -83.9918,37.9178 -83.9856,37.925 -83.976,37.9236 -83.9795,37.9283 -83.9596,37.9339 -83.9082,37.9167 -83.8863,37.9165 -83.88,37.9137 -83.8768,37.9045 -83.8625,37.9082 -83.8526,37.9028 -83.8414,37.9063 -83.8327,37.9028 -83.8283,37.9064 -83.8145,37.9002 -83.7996,37.9074 -83.782,37.9082 -83.7705,37.9157 -83.7643,37.9284 -83.7753,37.9391 -83.7752,37.9563 -83.7701,37.9613 -83.7772,37.9716 -83.7735,37.9739 -83.7752,37.9889 -83.7654,37.9857 -83.7619,37.9978 -83.7564,37.9926 -83.7382,38.0101 -83.7172,38.0033 -83.7059,38.0127 -83.6885,38.0123 -83.6596,38.0283 -83.6526,38.0239 -83.6338,38.0266 -83.6102,38.0071 -83.6047,38.0144 -83.5809,38.0116 -83.5729,38.023 -83.5763,38.0343 -83.5733,38.046 -83.5778,38.0525 -83.575,38.0589 -83.4833,38.0464 -83.4641,38.0502 -83.4652,38.0422 -83.4795,38.0273 -83.4562,38.0327 -83.4551,38.0292 -83.4689,38.0202 -83.455,38.0177 -83.4504,38.0195 -83.4499,38.0307 -83.4343,38.0335 -83.4323,38.0389 -83.4393,38.0403 -83.4305,38.0471 -83.4169,38.048 -83.4089,38.0392 -83.4064,38.045 -83.3987,38.0389 -83.3899,38.0546 -83.3805,38.0516 -83.381,38.0621 -83.3712,38.0598 -83.3714,38.0696 -83.3515,38.0649 -83.343,38.0692 -83.3461,38.0722 -83.3374,38.0882 -83.3326,38.0841 -83.3036,38.0899 -83.2988,38.0926 -83.2993,38.0997 -83.2633,38.1154 -83.27,38.1072</coordinates></LinearRing></outerBoundaryIs></Polygon>
</Placemark>
<Placemark>
<Style><LineStyle><color>ff0000ff</color></LineStyle><PolyStyle><fill>0</fill></PolyStyle></Style>
<ExtendedData><SchemaData schemaUrl="#ky_districts_">
<SimpleData name="DISTNBR">11</SimpleData>
</SchemaData></ExtendedData>
<Polygon><altitudeMode>clampToGround</altitudeMode><outerBoundaryIs><LinearRing><altitudeMode>clampToGround</altitudeMode><coordinates>-83.9398,37.5732 -83.8935,37.5311 -83.8846,37.5147 -83.8883,37.5065 -83.8813,37.4955 -83.884,37.4773 -83.8651,37.4514 -83.85,37.4479 -83.842,37.4389 -83.8401,37.4249 -83.8289,37.4118 -83.812,37.3703 -83.8015,37.3644 -83.7947,37.3506 -83.6797,37.3369 -83.6681,37.3552 -83.6533,37.3581 -83.652,37.3503 -83.6343,37.3392 -83.6333,37.3309 -83.6238,37.3277 -83.6224,37.3148 -83.6162,37.3147 -83.6166,37.3079 -83.6088,37.3085 -83.6093,37.3013 -83.5973,37.2923 -83.5831,37.2948 -83.5741,37.2884 -83.5754,37.281 -83.5656,37.2757 -83.5661,37.2654 -83.5424,37.2683 -83.5328,37.2564 -83.5113,37.2551 -83.5076,37.2358 -83.5001,37.2449 -83.4833,37.2519 -83.483,37.2631 -83.4763,37.2659 -83.4846,37.2681 -83.4863,37.2749 -83.4759,37.289 -83.461,37.2939 -83.4544,37.2882 -83.4426,37.2874 -83.4387,37.2932 -83.4319,37.2903 -83.4291,37.3033 -83.4238,37.3022 -83.4163,37.3118 -83.4024,37.3141 -83.3982,37.3206 -83.3958,37.3097 -83.3745,37.3054 -83.3733,37.2956 -83.3666,37.3005 -83.3525,37.2972 -83.3537,37.2844 -83.3453,37.2831 -83.3359,37.2726 -83.3444,37.2602 -83.336,37.2543 -83.3394,37.2504 -83.3329,37.2444 -83.3373,37.2368 -83.3254,37.231 -83.3246,37.2254 -83.3109,37.2299 -83.2989,37.2146 -83.2871,37.2174 -83.2768,37.2033 -83.2632,37.2002 -83.2527,37.2036 -83.2493,37.1952 -83.2408,37.196 -83.2327,37.1846 -83.2026,37.1753 -83.2019,37.1667 -83.2122,37.165 -83.2145,37.1576 -83.2194,37.1602 -83.2263,37.1556 -83.2268,37.1508 -83.2181,37.1452 -83.2274,37.1372 -83.2056,37.1291 -83.1952,37.1093 -83.1844,37.1123 -83.1824,37.1069 -83.1672,37.1024 -83.1713,37.0912 -83.1683,37.088 -83.1767,37.081 -83.1644,37.0739 -83.1657,37.0674 -83.1792,37.061 -83.1809,37.0563 -83.1746,37.0523 -83.1824,37.0467 -83.1785,37.0382 -83.1869,37.0344 -83.1854,37.0213 -83.1738,37.0171 -83.1608,37.0207 -83.1601,37.0139 -83.1444,37.0137 -83.1415,37.0058 -83.1227,37.0042 -83.1262,36.9916 -83.1479,36.9842 -83.1477,36.9768 -83.1536,36.9716 -83.1492,36.9651 -83.1539,36.9588 -83.1511,36.9546 -83.0382,36.9843 -83.0206,36.978 -83.0066,36.9926 -82.9667,36.9999 -82.9395,37.0155 -82.8692,36.9742 -82.8713,36.9679 -82.8661,36.9586 -82.8557,36.9544 -82.8623,36.9413 -82.8577,36.9287 -82.8774,36.9085 -82.8682,36.8996 -82.8774,36.8955 -82.8791,36.8893 -82.9074,36.8793 -82.9078,36.8748 -82.9516,36.8662 -82.9708,36.8576 -82.9976,36.8569 -83.0066,36.8477 -83.0221,36.8499 -83.0266,36.8556 -83.0478,36.8517 -83.0728,36.8545 -83.0752,36.8407 -83.1019,36.8282 -83.0985,36.8135 -83.1043,36.804 -83.1232,36.7867 -83.1332,36.7846 -83.129,36.7758 -83.1325,36.7644 -83.1256,36.7616 -83.1351,36.7426 -83.1948,36.7395 -83.3097,36.7106 -83.3868,36.6866 -83.3965,36.6769 -83.4247,36.6673 -83.4666,36.6647 -83.4992,36.6704 -83.5302,36.6661 -83.5371,36.6589 -83.5624,36.6513 -83.5776,36.6414 -83.5865,36.6439 -83.6139,36.6349 -83.624,36.6255 -83.6477,36.6231 -83.6493,36.6168 -83.6744,36.6036 -83.6908,36.5826 -84.2273,36.5921 -84.2287,36.6006 -84.2396,36.6134 -84.2715,36.634 -84.3076,36.6768 -84.3198,36.7098 -84.3227,36.7587 -84.3311,36.7591 -84.338,36.7751 -84.35,36.7807 -84.3503,36.7968 -84.3453,36.806 -84.3559,36.8121 -84.3405,36.8245 -84.318,36.8338 -84.3324,36.8384 -84.3421,36.8357 -84.345,36.8398 -84.3318,36.8467 -84.3276,36.8541 -84.315,36.8574 -84.3253,36.8675 -84.3148,36.8831 -84.3234,36.8942 -84.3159,36.9054 -84.3042,36.9113 -84.3132,36.9294 -84.2997,36.9378 -84.2968,36.9448 -84.3118,36.9421 -84.3245,36.9462 -84.3535,36.9394 -84.3689,36.9477 -84.3458,36.969 -84.35,36.9891 -84.3151,37.0015 -84.3139,37.0083 -84.3263,37.0156 -84.3318,37.025 -84.3205,37.0287 -84.3157,37.0229 -84.311,37.0241 -84.303,37.0407 -84.3125,37.0377 -84.3173,37.0408 -84.3159,37.0544 -84.3251,37.0618 -84.3246,37.0679 -84.3147,37.0772 -84.3033,37.0802 -84.3007,37.088 -84.2852,37.0889 -84.287,37.0953 -84.2801,37.1009 -84.293,37.1136 -84.2811,37.1145 -84.279,37.1197 -84.2969,37.1217 -84.2895,37.1291 -84.2939,37.145 -84.288,37.1581 -84.3002,37.1696 -84.2656,37.1817 -84.2783,37.1873 -84.281,37.1975 -84.2593,37.2051 -84.2721,37.2123 -84.2629,37.2176 -84.2667,37.2236 -84.2579,37.2281 -84.2519,37.2404 -84.2453,37.231 -84.2372,37.2293 -84.2392,37.2419 -84.2335,37.2481 -84.2241,37.2388 -84.2178,37.2424 -84.2174,37.2831 -84.2008,37.2802 -84.1811,37.2957 -84.1799,37.3041 -84.1714,37.3071 -84.1714,37.3002 -84.1622,37.2979 -84.1594,37.3035 -84.1469,37.3035 -84.1524,37.3106 -84.1359,37.312 -84.1459,37.3275 -84.1362,37.3299 -84.1423,37.3452 -84.1351,37.343 -84.1328,37.3489 -84.143,37.3523 -84.1294,37.3586 -84.1359,37.3676 -84.1459,37.3687 -84.1695,37.3854 -84.1693,37.3969 -84.1593,37.4174 -84.1696,37.4262 -84.1752,37.4414 -84.183,37.4454 -84.1828,37.4548 -84.1893,37.4568 -84.2036,37.4862 -84.2,37.4952 -84.2053,37.5031 -84.2043,37.5112 -84.1718,37.5576 -84.1421,37.5648 -84.045,37.5636 -83.9652,37.5814 -83.9398,37.5732</coordinates></LinearRing></outerBoundaryIs></Polygon>
</Placemark>
<Placemark>
<Style><LineStyle><color>ff0000ff</color></LineStyle><PolyStyle><fill>0</fill></PolyStyle></Style>
<ExtendedData><SchemaData schemaUrl="#ky_districts_">
<SimpleData name="DISTNBR">12</SimpleData>
</SchemaData></ExtendedData>
<Polygon><altitudeMode>clampToGround</altitudeMode><outerBoundaryIs><LinearRing><altitudeMode>clampToGround</altitudeMode><coordinates>-82.6264,38.2685 -82.61,38.2641 -82.6019,38.2499 -82.6125,38.2353 -82.6086,38.2235 -82.5985,38.2179 -82.599,38.1978 -82.6125,38.1706 -82.643,38.1695 -82.637,38.1387 -82.6218,38.1333 -82.6192,38.1205 -82.6062,38.1208 -82.587,38.1087 -82.5834,38.09 -82.5504,38.0701 -82.5371,38.0447 -82.5387,38.0374 -82.5263,38.027 -82.5251,38.0175 -82.5156,38.0066 -82.5192,38.0011 -82.4887,37.9989 -82.4836,37.9839 -82.4646,37.9839 -82.4689,37.9732 -82.4844,37.9709 -82.4845,37.9636 -82.4718,37.9587 -82.4856,37.9458 -82.4972,37.9463 -82.4893,37.9382 -82.5024,37.9335 -82.4959,37.927 -82.4807,37.9262 -82.4884,37.9177 -82.4756,37.9119 -82.4744,37.9 -82.4684,37.9032 -82.468,37.9139 -82.463,37.9148 -82.4199,37.8849 -82.4176,37.8703 -82.4075,37.8673 -82.4246,37.8615 -82.4147,37.856 -82.4205,37.8464 -82.4129,37.8448 -82.3994,37.8295 -82.4013,37.8095 -82.3867,37.8182 -82.3766,37.8022 -82.3401,37.7856 -82.3375,37.7749 -82.3239,37.775 -82.3334,37.7644 -82.312,37.7643 -82.3342,37.7428 -82.3187,37.7335 -82.3077,37.708 -82.2964,37.7022 -82.3026,37.6948 -82.2959,37.6862 -82.3043,37.6761 -82.295,37.6781 -82.2946,37.6704 -82.2881,37.6681 -82.2825,37.6759 -82.2581,37.6569 -82.2361,37.6596 -82.2169,37.6416 -82.2205,37.6348 -82.2145,37.6254 -82.1872,37.627 -82.1911,37.6446 -82.1751,37.6478 -82.1776,37.6409 -82.1724,37.6326 -82.1817,37.6272 -82.1812,37.6215 -82.1767,37.6182 -82.1642,37.6203 -82.1688,37.6091 -82.1567,37.609 -82.1569,37.5927 -82.1484,37.5907 -82.1399,37.595 -82.1273,37.5866 -82.1262,37.5737 -82.1449,37.5677 -82.1344,37.5629 -82.1321,37.5524 -82.1234,37.5515 -82.118,37.559 -82.1048,37.5602 -82.104,37.5529 -82.0752,37.5559 -82.0639,37.5432 -82.0648,37.5372 -82.0503,37.5354 -82.0462,37.5279 -82.0423,37.5482 -82.0296,37.5379 -82.0185,37.5404 -82.0112,37.5329 -81.9982,37.5433 -81.9942,37.5378 -81.9732,37.5466 -81.9649,37.5417 -82.316,37.2948 -82.3246,37.283 -82.3436,37.2809 -82.342,37.2741 -82.3489,37.2719 -82.3488,37.268 -82.4398,37.2471 -82.4864,37.2311 -82.4916,37.2249 -82.4988,37.227 -82.5208,37.2121 -82.53,37.2133 -82.5329,37.2066 -82.5506,37.2045 -82.5923,37.183 -82.6334,37.1544 -82.6533,37.1512 -82.6567,37.1447 -82.6767,37.1349 -82.6829,37.137 -82.7214,37.1208 -82.7267,37.1148 -82.7217,37.101 -82.725,37.0918 -82.7167,37.0774 -82.7267,37.073 -82.7224,37.0451 -82.7428,37.0428 -82.7501,37.0232 -82.7591,37.0274 -82.7823,37.0081 -82.7934,37.0055 -82.7979,37.0096 -82.8287,37.0058 -82.8302,36.9944 -82.8373,36.9873 -82.8536,36.9853 -82.857,36.9789 -82.8629,36.9802 -82.8692,36.9742 -82.9395,37.0155 -82.9667,36.9999 -83.0066,36.9926 -83.0206,36.978 -83.0382,36.9843 -83.1504,36.9542 -83.154,36.9582 -83.1492,36.9651 -83.1536,36.9716 -83.1477,36.9768 -83.1473,36.985 -83.1262,36.9916 -83.1221,37.001 -83.1105,36.9921 -83.1039,36.9932 -83.0985,36.9993 -83.0921,36.9987 -83.0733,37.0119 -83.0545,37.018 -83.0582,37.025 -83.0495,37.0294 -83.0521,37.035 -83.0719,37.0423 -83.0735,37.0473 -83.062,37.0518 -83.0576,37.0621 -83.0486,37.0586 -83.0427,37.0622 -83.0469,37.0693 -83.0403,37.0787 -83.0517,37.0962 -83.0469,37.1026 -83.0548,37.1039 -83.0614,37.1176 -83.0356,37.1572 -83.0489,37.1694 -83.0374,37.1653 -83.0285,37.1696 -83.0001,37.1957 -83.0063,37.2059 -83.0297,37.2085 -83.0332,37.217 -83.0539,37.2154 -83.0674,37.2313 -83.0663,37.2446 -83.0704,37.2485 -83.0825,37.2477 -83.083,37.2428 -83.1006,37.2357 -83.1162,37.2407 -83.1268,37.236 -83.1204,37.2469 -83.1273,37.2684 -83.1244,37.2805 -83.1194,37.2834 -83.1231,37.2879 -83.1099,37.3026 -83.1166,37.3086 -83.1106,37.3252 -83.1173,37.3282 -83.1099,37.3362 -83.1347,37.4572 -83.093,37.4983 -83.0953,37.5164 -83.0888,37.5227 -83.071,37.5169 -83.065,37.5257 -83.0557,37.5204 -83.0472,37.526 -83.0313,37.5063 -83.0139,37.5086 -83.0027,37.5012 -82.9852,37.5066 -82.9733,37.4978 -82.9485,37.5032 -82.9412,37.4897 -82.9335,37.494 -82.9255,37.4865 -82.9091,37.4918 -82.9106,37.4995 -82.8962,37.5089 -82.8973,37.515 -82.8916,37.5191 -82.8926,37.5323 -82.8789,37.5361 -82.879,37.5404 -82.8899,37.5438 -82.8854,37.5493 -82.8906,37.5547 -82.8889,37.5648 -82.8971,37.5677 -82.9022,37.5769 -82.8965,37.5883 -82.904,37.5945 -82.9063,37.6062 -82.9058,37.6189 -82.9003,37.6212 -82.9067,37.6311 -82.903,37.641 -82.9126,37.6438 -82.9089,37.6492 -82.9117,37.6532 -82.9278,37.6566 -82.9459,37.6779 -82.9408,37.7163 -82.9483,37.7199 -82.9506,37.7947 -82.9877,37.8141 -82.9868,37.8298 -82.9815,37.8354 -83.0047,37.8593 -82.9973,37.8698 -82.9892,37.8696 -82.9839,37.8757 -82.9866,37.8984 -82.977,37.8933 -82.9697,37.8979 -82.9614,37.8938 -82.9615,37.9128 -82.9732,37.9142 -82.9684,37.924 -82.9771,37.9392 -82.9851,37.9429 -82.9805,37.9483 -82.9874,37.9556 -82.9871,37.9624 -83.0092,37.9682 -83.0097,37.9742 -83.016,37.9738 -83.014,37.9796 -83.0221,37.982 -83.0252,37.9914 -83.0192,37.9993 -83.0241,38.0039 -83.0098,38.0117 -83.0148,38.016 -83.0028,38.0235 -83.0026,38.0341 -82.9976,38.0384 -82.9837,38.0431 -82.9812,38.05 -82.956,38.0496 -82.9493,38.0556 -82.9513,38.0597 -82.942,38.0642 -82.942,38.0776 -82.9311,38.083 -82.9292,38.0897 -82.9171,38.0991 -82.9075,38.0957 -82.9066,38.1031 -82.8984,38.1033 -82.889,38.1116 -82.8988,38.1301 -82.9068,38.133 -82.9078,38.1567 -82.9178,38.1663 -82.9151,38.1727 -82.9242,38.1756 -82.8975,38.1828 -82.8838,38.196 -82.8517,38.1909 -82.814,38.2173 -82.8149,38.223 -82.8241,38.2283 -82.8216,38.2324 -82.7948,38.2405 -82.7933,38.2446 -82.7663,38.2351 -82.7565,38.2392 -82.7389,38.237 -82.7352,38.2426 -82.7239,38.2436 -82.7215,38.2498 -82.7053,38.2531 -82.6995,38.2619 -82.6264,38.2685</coordinates></LinearRing></outerBoundaryIs></Polygon>
</Placemark>
</Folder>
</Document></kml>`;
    }
})();