WME Mapraid SL-NT E1 Overlay

Adds a Mapraid SL-NT area overlay.

// ==UserScript==
// @name         WME Mapraid SL-NT E1 Overlay
// @namespace    https://greasyfork.org/users/45389
// @version      1.1
// @description  Adds a Mapraid SL-NT area overlay.
// @author       MapOMatic (edits by drysoft)
// @include      https://beta.waze.com/*editor/*
// @include      https://www.waze.com/*editor/*
// @exclude      https://www.waze.com/*user/editor/*
// @require      https://greasyfork.org/scripts/24851-wazewrap/code/WazeWrap.js
// @license      GNU GPLv3
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Enter the state abbreviation:
    var _stateAbbr = "SL1";

    // Enter the MapRaid area names and the desired fill colors, in order they appear in the original map legend:
    var _areas = {
        'Equipo 1':{fillColor:'#7cb342'}
    };

    var _settingsStoreName = '_wme_' + _stateAbbr + '_mapraid';
    var _settings;
    var _features;
    var _kml;
    var _layerName = _stateAbbr + ' MapRaid';
    var _layer = null;
    var defaultFillOpacity = 0.2;

    function loadSettingsFromStorage() {
        _settings = $.parseJSON(localStorage.getItem(_settingsStoreName));
        if(!_settings) {
            _settings = {
                layerVisible: true,
                hiddenAreas: []
            };
        } else {
            _settings.layerVisible = (_settings.layerVisible === true);
            _settings.hiddenAreas = _settings.hiddenAreas || [];
        }
    }

    function saveSettingsToStorage() {
        if (localStorage) {
            var settings = {
                layerVisible: _layer.visibility,
                hiddenAreas: _settings.hiddenAreas
            };
            localStorage.setItem(_settingsStoreName, JSON.stringify(settings));
        }
    }

    function GetFeaturesFromKMLString(strKML) {
        var format = new OpenLayers.Format.KML({
            'internalProjection': Waze.map.baseLayer.projection,
            'externalProjection': new OpenLayers.Projection("EPSG:4326")
        });
        return format.read(strKML);
    }

    function updateDistrictNameDisplay(){
        $('.mapraid-region').remove();
        if (_layer !== null) {
            var mapCenter = new OpenLayers.Geometry.Point(W.map.center.lon,W.map.center.lat);
            for (var i=0;i<_layer.features.length;i++){
                var feature = _layer.features[i];
                var color;
                var text = '';
                var num;
                var url;
                if(feature.geometry.containsPoint(mapCenter)) {
                    text = feature.attributes.name;
                    color = '#00ffff';
                    var $div = $('<div>', {id:'mapraid', class:"mapraid-region", style:'display:inline-block;margin-left:10px;', title:'Click to toggle color on/off for this group'})
                    .css({color:color, cursor:"pointer"})
                    .click(toggleAreaFill);
                    var $span = $('<span>').css({display:'inline-block'});
                    $span.text('Mapraid SL-NT: ' + text).appendTo($div);
                    $('.location-info-region').parent().append($div);
                    if (color) {
                        break;
                    }
                }
            }
        }
    }

    function toggleAreaFill() {
        var text = $('#mapraid span').text();
        if (text) {
            var match = text.match(/Equipo (\d+)/);
            if (match.length > 1) {
                var group = parseInt(match[1]);
                var f = _layer.features[group-1];
                var hide = f.attributes.fillOpacity !== 0;
                f.attributes.fillOpacity = hide ? 0 : defaultFillOpacity;
                var idx = _settings.hiddenAreas.indexOf(group);
                if (hide) {
                    if (idx === -1) _settings.hiddenAreas.push(group);
                } else {
                    if (idx > -1) {
                        _settings.hiddenAreas.splice(idx,1);
                    }
                }
                saveSettingsToStorage();
                _layer.redraw();
            }
        }
    }


    function init() {
        InstallKML();
        loadSettingsFromStorage();
        var layerid = 'wme_' + _stateAbbr + '_mapraid';
        var _features = GetFeaturesFromKMLString(_kml);
        var i = 0;
        for(var areaName in _areas) {
            _features[i].attributes.name = areaName;
            _features[i].attributes.fillColor = _areas[areaName].fillColor;
            _features[i].attributes.fillOpacity = _settings.hiddenAreas.indexOf(i+1) > -1 ? 0 : defaultFillOpacity;
            i++;
        }
        var layerStyle = new OpenLayers.StyleMap({
            strokeDashstyle: 'solid',
            strokeColor: '#ff0000',
            strokeOpacity: 0.4,
            strokeWidth: 2,
            fillOpacity: '${fillOpacity}',
            fillColor: '${fillColor}'
        });
        _layer = new OL.Layer.Vector(_stateAbbr + " MapRaid", {
            rendererOptions: { zIndexing: true },
            uniqueName: layerid,
            shortcutKey: "S+" + 0,
            layerGroup: _stateAbbr + '_mapraid',
            zIndex: -9999,
            displayInLayerSwitcher: true,
            visibility: _settings.layerVisible,
            styleMap: layerStyle
        });
        I18n.translations[I18n.locale].layers.name[layerid] = _stateAbbr + " MapRaid";
        _layer.addFeatures(_features);
        W.map.addLayer(_layer);
        W.map.events.register("moveend", null, updateDistrictNameDisplay);
        window.addEventListener('beforeunload', function saveOnClose() { saveSettingsToStorage(); }, false);
        updateDistrictNameDisplay();

        // Add the layer checkbox to the Layers menu.
        WazeWrap.Interface.AddLayerCheckbox("display", "MapRaid Nayarit-Sinaloa E1", _settings.layerVisible, layerToggled);
    }

    function layerToggled(visible) {
        _layer.setVisibility(visible);
        saveSettingsToStorage();
    }

    function awaitLogin(e) {
        if (e && e.user === null) {
            return;
        }
        if (typeof Waze === 'undefined' ||
            typeof Waze.loginManager === 'undefined' ||
            typeof WazeWrap.Interface === 'undefined') {
            setTimeout(awaitLogin, 100);
            return;
        }
        // if (!Waze.loginManager.hasUser()) {
        //    Waze.loginManager.events.register("login", null, awaitLogin);
        //    Waze.loginManager.events.register("loginStatus", null, awaitLogin);
        //    return;
        //}
        // TODO: check whether this is actually useful to do
        if (typeof document.getElementById('WazeMap') === undefined) {
            setTimeout(awaitLogin, 100);
            return;
        }
        init();
    }

    awaitLogin();

    function InstallKML(){
        OpenLayers.Format.KML=OpenLayers.Class(OpenLayers.Format.XML,{namespaces:{kml:"http://www.opengis.net/kml/2.2",gx:"http://www.google.com/kml/ext/2.2"},kmlns:"http://earth.google.com/kml/2.0",placemarksDesc:"No description available",foldersName:"OpenLayers export",foldersDesc:"Exported on "+new Date,extractAttributes:!0,kvpAttributes:!1,extractStyles:!1,extractTracks:!1,trackAttributes:null,internalns:null,features:null,styles:null,styleBaseUrl:"",fetched:null,maxDepth:0,initialize:function(a){this.regExes=
            {trimSpace:/^\s*|\s*$/g,removeSpace:/\s*/g,splitSpace:/\s+/,trimComma:/\s*,\s*/g,kmlColor:/(\w{2})(\w{2})(\w{2})(\w{2})/,kmlIconPalette:/root:\/\/icons\/palette-(\d+)(\.\w+)/,straightBracket:/\$\[(.*?)\]/g};this.externalProjection=new OpenLayers.Projection("EPSG:4326");OpenLayers.Format.XML.prototype.initialize.apply(this,[a])},read:function(a){this.features=[];this.styles={};this.fetched={};return this.parseData(a,{depth:0,styleBaseUrl:this.styleBaseUrl})},parseData:function(a,b){"string"==typeof a&&
                (a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));for(var c=["Link","NetworkLink","Style","StyleMap","Placemark"],d=0,e=c.length;d<e;++d){var f=c[d],g=this.getElementsByTagNameNS(a,"*",f);if(0!=g.length)switch(f.toLowerCase()){case "link":case "networklink":this.parseLinks(g,b);break;case "style":this.extractStyles&&this.parseStyles(g,b);break;case "stylemap":this.extractStyles&&this.parseStyleMaps(g,b);break;case "placemark":this.parseFeatures(g,b)}}return this.features},parseLinks:function(a,
b){if(b.depth>=this.maxDepth)return!1;var c=OpenLayers.Util.extend({},b);c.depth++;for(var d=0,e=a.length;d<e;d++){var f=this.parseProperty(a[d],"*","href");f&&!this.fetched[f]&&(this.fetched[f]=!0,(f=this.fetchLink(f))&&this.parseData(f,c))}},fetchLink:function(a){if(a=OpenLayers.Request.GET({url:a,async:!1}))return a.responseText},parseStyles:function(a,b){for(var c=0,d=a.length;c<d;c++){var e=this.parseStyle(a[c]);e&&(this.styles[(b.styleBaseUrl||"")+"#"+e.id]=e)}},parseKmlColor:function(a){var b=
                null;a&&(a=a.match(this.regExes.kmlColor))&&(b={color:"#"+a[4]+a[3]+a[2],opacity:parseInt(a[1],16)/255});return b},parseStyle:function(a){for(var b={},c=["LineStyle","PolyStyle","IconStyle","BalloonStyle","LabelStyle"],d,e,f=0,g=c.length;f<g;++f)if(d=c[f],e=this.getElementsByTagNameNS(a,"*",d)[0])switch(d.toLowerCase()){case "linestyle":d=this.parseProperty(e,"*","color");if(d=this.parseKmlColor(d))b.strokeColor=d.color,b.strokeOpacity=d.opacity;(d=this.parseProperty(e,"*","width"))&&(b.strokeWidth=
d);break;case "polystyle":d=this.parseProperty(e,"*","color");if(d=this.parseKmlColor(d))b.fillOpacity=d.opacity,b.fillColor=d.color;"0"==this.parseProperty(e,"*","fill")&&(b.fillColor="none");"0"==this.parseProperty(e,"*","outline")&&(b.strokeWidth="0");break;case "iconstyle":var h=parseFloat(this.parseProperty(e,"*","scale")||1);d=32*h;var i=32*h,j=this.getElementsByTagNameNS(e,"*","Icon")[0];if(j){var k=this.parseProperty(j,"*","href");if(k){var l=this.parseProperty(j,"*","w"),m=this.parseProperty(j,
"*","h");OpenLayers.String.startsWith(k,"http://maps.google.com/mapfiles/kml")&&(!l&&!m)&&(m=l=64,h/=2);l=l||m;m=m||l;l&&(d=parseInt(l)*h);m&&(i=parseInt(m)*h);if(m=k.match(this.regExes.kmlIconPalette))l=m[1],m=m[2],k=this.parseProperty(j,"*","x"),j=this.parseProperty(j,"*","y"),k="http://maps.google.com/mapfiles/kml/pal"+l+"/icon"+(8*(j?7-j/32:7)+(k?k/32:0))+m;b.graphicOpacity=1;b.externalGraphic=k}}if(e=this.getElementsByTagNameNS(e,"*","hotSpot")[0])k=parseFloat(e.getAttribute("x")),j=parseFloat(e.getAttribute("y")),
                    l=e.getAttribute("xunits"),"pixels"==l?b.graphicXOffset=-k*h:"insetPixels"==l?b.graphicXOffset=-d+k*h:"fraction"==l&&(b.graphicXOffset=-d*k),e=e.getAttribute("yunits"),"pixels"==e?b.graphicYOffset=-i+j*h+1:"insetPixels"==e?b.graphicYOffset=-(j*h)+1:"fraction"==e&&(b.graphicYOffset=-i*(1-j)+1);b.graphicWidth=d;b.graphicHeight=i;break;case "balloonstyle":(e=OpenLayers.Util.getXmlNodeValue(e))&&(b.balloonStyle=e.replace(this.regExes.straightBracket,"${$1}"));break;case "labelstyle":if(d=this.parseProperty(e,
"*","color"),d=this.parseKmlColor(d))b.fontColor=d.color,b.fontOpacity=d.opacity}!b.strokeColor&&b.fillColor&&(b.strokeColor=b.fillColor);if((a=a.getAttribute("id"))&&b)b.id=a;return b},parseStyleMaps:function(a,b){for(var c=0,d=a.length;c<d;c++)for(var e=a[c],f=this.getElementsByTagNameNS(e,"*","Pair"),e=e.getAttribute("id"),g=0,h=f.length;g<h;g++){var i=f[g],j=this.parseProperty(i,"*","key");(i=this.parseProperty(i,"*","styleUrl"))&&"normal"==j&&(this.styles[(b.styleBaseUrl||"")+"#"+e]=this.styles[(b.styleBaseUrl||
"")+i])}},parseFeatures:function(a,b){for(var c=[],d=0,e=a.length;d<e;d++){var f=a[d],g=this.parseFeature.apply(this,[f]);if(g){this.extractStyles&&(g.attributes&&g.attributes.styleUrl)&&(g.style=this.getStyle(g.attributes.styleUrl,b));if(this.extractStyles){var h=this.getElementsByTagNameNS(f,"*","Style")[0];if(h&&(h=this.parseStyle(h)))g.style=OpenLayers.Util.extend(g.style,h)}if(this.extractTracks){if((f=this.getElementsByTagNameNS(f,this.namespaces.gx,"Track"))&&0<f.length)g={features:[],feature:g},
                    this.readNode(f[0],g),0<g.features.length&&c.push.apply(c,g.features)}else c.push(g)}else throw"Bad Placemark: "+d;}this.features=this.features.concat(c)},readers:{kml:{when:function(a,b){b.whens.push(OpenLayers.Date.parse(this.getChildValue(a)))},_trackPointAttribute:function(a,b){var c=a.nodeName.split(":").pop();b.attributes[c].push(this.getChildValue(a))}},gx:{Track:function(a,b){var c={whens:[],points:[],angles:[]};if(this.trackAttributes){var d;c.attributes={};for(var e=0,f=this.trackAttributes.length;e<
f;++e)d=this.trackAttributes[e],c.attributes[d]=[],d in this.readers.kml||(this.readers.kml[d]=this.readers.kml._trackPointAttribute)}this.readChildNodes(a,c);if(c.whens.length!==c.points.length)throw Error("gx:Track with unequal number of when ("+c.whens.length+") and gx:coord ("+c.points.length+") elements.");var g=0<c.angles.length;if(g&&c.whens.length!==c.angles.length)throw Error("gx:Track with unequal number of when ("+c.whens.length+") and gx:angles ("+c.angles.length+") elements.");for(var h,
i,e=0,f=c.whens.length;e<f;++e){h=b.feature.clone();h.fid=b.feature.fid||b.feature.id;i=c.points[e];h.geometry=i;"z"in i&&(h.attributes.altitude=i.z);this.internalProjection&&this.externalProjection&&h.geometry.transform(this.externalProjection,this.internalProjection);if(this.trackAttributes){i=0;for(var j=this.trackAttributes.length;i<j;++i)h.attributes[d]=c.attributes[this.trackAttributes[i]][e]}h.attributes.when=c.whens[e];h.attributes.trackId=b.feature.id;g&&(i=c.angles[e],h.attributes.heading=
parseFloat(i[0]),h.attributes.tilt=parseFloat(i[1]),h.attributes.roll=parseFloat(i[2]));b.features.push(h)}},coord:function(a,b){var c=this.getChildValue(a).replace(this.regExes.trimSpace,"").split(/\s+/),d=new OpenLayers.Geometry.Point(c[0],c[1]);2<c.length&&(d.z=parseFloat(c[2]));b.points.push(d)},angles:function(a,b){var c=this.getChildValue(a).replace(this.regExes.trimSpace,"").split(/\s+/);b.angles.push(c)}}},parseFeature:function(a){for(var b=["MultiGeometry","Polygon","LineString","Point"],
c,d,e,f=0,g=b.length;f<g;++f)if(c=b[f],this.internalns=a.namespaceURI?a.namespaceURI:this.kmlns,d=this.getElementsByTagNameNS(a,this.internalns,c),0<d.length){if(b=this.parseGeometry[c.toLowerCase()])e=b.apply(this,[d[0]]),this.internalProjection&&this.externalProjection&&e.transform(this.externalProjection,this.internalProjection);else throw new TypeError("Unsupported geometry type: "+c);break}var h;this.extractAttributes&&(h=this.parseAttributes(a));c=new OpenLayers.Feature.Vector(e,h);a=a.getAttribute("id")||
                    a.getAttribute("name");null!=a&&(c.fid=a);return c},getStyle:function(a,b){var c=OpenLayers.Util.removeTail(a),d=OpenLayers.Util.extend({},b);d.depth++;d.styleBaseUrl=c;!this.styles[a]&&!OpenLayers.String.startsWith(a,"#")&&d.depth<=this.maxDepth&&!this.fetched[c]&&(c=this.fetchLink(c))&&this.parseData(c,d);return OpenLayers.Util.extend({},this.styles[a])},parseGeometry:{point:function(a){var b=this.getElementsByTagNameNS(a,this.internalns,"coordinates"),a=[];if(0<b.length)var c=b[0].firstChild.nodeValue,
                    c=c.replace(this.regExes.removeSpace,""),a=c.split(",");b=null;if(1<a.length)2==a.length&&(a[2]=null),b=new OpenLayers.Geometry.Point(a[0],a[1],a[2]);else throw"Bad coordinate string: "+c;return b},linestring:function(a,b){var c=this.getElementsByTagNameNS(a,this.internalns,"coordinates"),d=null;if(0<c.length){for(var c=this.getChildValue(c[0]),c=c.replace(this.regExes.trimSpace,""),c=c.replace(this.regExes.trimComma,","),d=c.split(this.regExes.splitSpace),e=d.length,f=Array(e),g,h,i=0;i<e;++i)if(g=
d[i].split(","),h=g.length,1<h)2==g.length&&(g[2]=null),f[i]=new OpenLayers.Geometry.Point(g[0],g[1],g[2]);else throw"Bad LineString point coordinates: "+d[i];if(e)d=b?new OpenLayers.Geometry.LinearRing(f):new OpenLayers.Geometry.LineString(f);else throw"Bad LineString coordinates: "+c;}return d},polygon:function(a){var a=this.getElementsByTagNameNS(a,this.internalns,"LinearRing"),b=a.length,c=Array(b);if(0<b)for(var d=0,e=a.length;d<e;++d)if(b=this.parseGeometry.linestring.apply(this,[a[d],!0]))c[d]=
                        b;else throw"Bad LinearRing geometry: "+d;return new OpenLayers.Geometry.Polygon(c)},multigeometry:function(a){for(var b,c=[],d=a.childNodes,e=0,f=d.length;e<f;++e)a=d[e],1==a.nodeType&&(b=this.parseGeometry[(a.prefix?a.nodeName.split(":")[1]:a.nodeName).toLowerCase()])&&c.push(b.apply(this,[a]));return new OpenLayers.Geometry.Collection(c)}},parseAttributes:function(a){var b={},c=a.getElementsByTagName("ExtendedData");c.length&&(b=this.parseExtendedData(c[0]));for(var d,e,f,a=a.childNodes,c=0,g=
a.length;c<g;++c)if(d=a[c],1==d.nodeType&&(e=d.childNodes,1<=e.length&&3>=e.length)){switch(e.length){case 1:f=e[0];break;case 2:f=e[0];e=e[1];f=3==f.nodeType||4==f.nodeType?f:e;break;default:f=e[1]}if(3==f.nodeType||4==f.nodeType)if(d=d.prefix?d.nodeName.split(":")[1]:d.nodeName,f=OpenLayers.Util.getXmlNodeValue(f))f=f.replace(this.regExes.trimSpace,""),b[d]=f}return b},parseExtendedData:function(a){var b={},c,d,e,f,g=a.getElementsByTagName("Data");c=0;for(d=g.length;c<d;c++){e=g[c];f=e.getAttribute("name");
var h={},i=e.getElementsByTagName("value");i.length&&(h.value=this.getChildValue(i[0]));this.kvpAttributes?b[f]=h.value:(e=e.getElementsByTagName("displayName"),e.length&&(h.displayName=this.getChildValue(e[0])),b[f]=h)}a=a.getElementsByTagName("SimpleData");c=0;for(d=a.length;c<d;c++)h={},e=a[c],f=e.getAttribute("name"),h.value=this.getChildValue(e),this.kvpAttributes?b[f]=h.value:(h.displayName=f,b[f]=h);return b},parseProperty:function(a,b,c){var d,a=this.getElementsByTagNameNS(a,b,c);try{d=OpenLayers.Util.getXmlNodeValue(a[0])}catch(e){d=
    null}return d},write:function(a){OpenLayers.Util.isArray(a)||(a=[a]);for(var b=this.createElementNS(this.kmlns,"kml"),c=this.createFolderXML(),d=0,e=a.length;d<e;++d)c.appendChild(this.createPlacemarkXML(a[d]));b.appendChild(c);return OpenLayers.Format.XML.prototype.write.apply(this,[b])},createFolderXML:function(){var a=this.createElementNS(this.kmlns,"Folder");if(this.foldersName){var b=this.createElementNS(this.kmlns,"name"),c=this.createTextNode(this.foldersName);b.appendChild(c);a.appendChild(b)}this.foldersDesc&&
        (b=this.createElementNS(this.kmlns,"description"),c=this.createTextNode(this.foldersDesc),b.appendChild(c),a.appendChild(b));return a},createPlacemarkXML:function(a){var b=this.createElementNS(this.kmlns,"name");b.appendChild(this.createTextNode(a.style&&a.style.label?a.style.label:a.attributes.name||a.id));var c=this.createElementNS(this.kmlns,"description");c.appendChild(this.createTextNode(a.attributes.description||this.placemarksDesc));var d=this.createElementNS(this.kmlns,"Placemark");null!=
        a.fid&&d.setAttribute("id",a.fid);d.appendChild(b);d.appendChild(c);b=this.buildGeometryNode(a.geometry);d.appendChild(b);a.attributes&&(a=this.buildExtendedData(a.attributes))&&d.appendChild(a);return d},buildGeometryNode:function(a){var b=a.CLASS_NAME,b=this.buildGeometry[b.substring(b.lastIndexOf(".")+1).toLowerCase()],c=null;b&&(c=b.apply(this,[a]));return c},buildGeometry:{point:function(a){var b=this.createElementNS(this.kmlns,"Point");b.appendChild(this.buildCoordinatesNode(a));return b},multipoint:function(a){return this.buildGeometry.collection.apply(this,
[a])},linestring:function(a){var b=this.createElementNS(this.kmlns,"LineString");b.appendChild(this.buildCoordinatesNode(a));return b},multilinestring:function(a){return this.buildGeometry.collection.apply(this,[a])},linearring:function(a){var b=this.createElementNS(this.kmlns,"LinearRing");b.appendChild(this.buildCoordinatesNode(a));return b},polygon:function(a){for(var b=this.createElementNS(this.kmlns,"Polygon"),a=a.components,c,d,e=0,f=a.length;e<f;++e)c=0==e?"outerBoundaryIs":"innerBoundaryIs",
        c=this.createElementNS(this.kmlns,c),d=this.buildGeometry.linearring.apply(this,[a[e]]),c.appendChild(d),b.appendChild(c);return b},multipolygon:function(a){return this.buildGeometry.collection.apply(this,[a])},collection:function(a){for(var b=this.createElementNS(this.kmlns,"MultiGeometry"),c,d=0,e=a.components.length;d<e;++d)(c=this.buildGeometryNode.apply(this,[a.components[d]]))&&b.appendChild(c);return b}},buildCoordinatesNode:function(a){var b=this.createElementNS(this.kmlns,"coordinates"),
        c;if(c=a.components){for(var d=c.length,e=Array(d),f=0;f<d;++f)a=c[f],e[f]=this.buildCoordinates(a);c=e.join(" ")}else c=this.buildCoordinates(a);c=this.createTextNode(c);b.appendChild(c);return b},buildCoordinates:function(a){this.internalProjection&&this.externalProjection&&(a=a.clone(),a.transform(this.internalProjection,this.externalProjection));return a.x+","+a.y},buildExtendedData:function(a){var b=this.createElementNS(this.kmlns,"ExtendedData"),c;for(c in a)if(a[c]&&"name"!=c&&"description"!=
c&&"styleUrl"!=c){var d=this.createElementNS(this.kmlns,"Data");d.setAttribute("name",c);var e=this.createElementNS(this.kmlns,"value");if("object"==typeof a[c]){if(a[c].value&&e.appendChild(this.createTextNode(a[c].value)),a[c].displayName){var f=this.createElementNS(this.kmlns,"displayName");f.appendChild(this.getXMLDoc().createCDATASection(a[c].displayName));d.appendChild(f)}}else e.appendChild(this.createTextNode(a[c]));d.appendChild(e);b.appendChild(d)}return this.isSimpleContent(b)?null:b},
                                                                      CLASS_NAME:"OpenLayers.Format.KML"});

        _kml = `<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
  <Document>
    <name>Teams</name>
    <Style id="poly-097138-1000-189-nodesc-normal">
      <LineStyle>
        <color>ff387109</color>
        <width>1</width>
      </LineStyle>
      <PolyStyle>
        <color>bd387109</color>
        <fill>1</fill>
        <outline>1</outline>
      </PolyStyle>
      <BalloonStyle>
        <text><![CDATA[<h3>$[name]</h3>]]></text>
      </BalloonStyle>
    </Style>
    <Style id="poly-097138-1000-189-nodesc-highlight">
      <LineStyle>
        <color>ff387109</color>
        <width>1.5</width>
      </LineStyle>
      <PolyStyle>
        <color>bd387109</color>
        <fill>1</fill>
        <outline>1</outline>
      </PolyStyle>
      <BalloonStyle>
        <text><![CDATA[<h3>$[name]</h3>]]></text>
      </BalloonStyle>
    </Style>
    <StyleMap id="poly-097138-1000-189-nodesc">
      <Pair>
        <key>normal</key>
        <styleUrl>#poly-097138-1000-189-nodesc-normal</styleUrl>
      </Pair>
      <Pair>
        <key>highlight</key>
        <styleUrl>#poly-097138-1000-189-nodesc-highlight</styleUrl>
      </Pair>
    </StyleMap>
    <Style id="poly-1A237E-1000-189-nodesc-normal">
      <LineStyle>
        <color>ff7e231a</color>
        <width>1</width>
      </LineStyle>
      <PolyStyle>
        <color>bd7e231a</color>
        <fill>1</fill>
        <outline>1</outline>
      </PolyStyle>
      <BalloonStyle>
        <text><![CDATA[<h3>$[name]</h3>]]></text>
      </BalloonStyle>
    </Style>
    <Style id="poly-1A237E-1000-189-nodesc-highlight">
      <LineStyle>
        <color>ff7e231a</color>
        <width>1.5</width>
      </LineStyle>
      <PolyStyle>
        <color>bd7e231a</color>
        <fill>1</fill>
        <outline>1</outline>
      </PolyStyle>
      <BalloonStyle>
        <text><![CDATA[<h3>$[name]</h3>]]></text>
      </BalloonStyle>
    </Style>
    <StyleMap id="poly-1A237E-1000-189-nodesc">
      <Pair>
        <key>normal</key>
        <styleUrl>#poly-1A237E-1000-189-nodesc-normal</styleUrl>
      </Pair>
      <Pair>
        <key>highlight</key>
        <styleUrl>#poly-1A237E-1000-189-nodesc-highlight</styleUrl>
      </Pair>
    </StyleMap>
    <Style id="poly-F48FB1-1000-191-nodesc-normal">
      <LineStyle>
        <color>ffb18ff4</color>
        <width>1</width>
      </LineStyle>
      <PolyStyle>
        <color>bfb18ff4</color>
        <fill>1</fill>
        <outline>1</outline>
      </PolyStyle>
      <BalloonStyle>
        <text><![CDATA[<h3>$[name]</h3>]]></text>
      </BalloonStyle>
    </Style>
    <Style id="poly-F48FB1-1000-191-nodesc-highlight">
      <LineStyle>
        <color>ffb18ff4</color>
        <width>1.5</width>
      </LineStyle>
      <PolyStyle>
        <color>bfb18ff4</color>
        <fill>1</fill>
        <outline>1</outline>
      </PolyStyle>
      <BalloonStyle>
        <text><![CDATA[<h3>$[name]</h3>]]></text>
      </BalloonStyle>
    </Style>
    <StyleMap id="poly-F48FB1-1000-191-nodesc">
      <Pair>
        <key>normal</key>
        <styleUrl>#poly-F48FB1-1000-191-nodesc-normal</styleUrl>
      </Pair>
      <Pair>
        <key>highlight</key>
        <styleUrl>#poly-F48FB1-1000-191-nodesc-highlight</styleUrl>
      </Pair>
    </StyleMap>
    <Placemark>
      <name>Equipo 1</name>
      <styleUrl>#poly-F48FB1-1000-191-nodesc</styleUrl>
      <Polygon>
        <outerBoundaryIs>
          <LinearRing>
            <tessellate>1</tessellate>
            <coordinates>
              -106.76421,24.721347,0
              -106.775917,24.733096,0
              -106.784254,24.741456,0
              -106.793011,24.74391,0
              -106.796129,24.753361,0
              -106.861015,24.818358,0
              -106.865853,24.822955,0
              -106.867816,24.824164,0
              -106.902949,24.828388,0
              -106.919277,24.813953,0
              -106.930663,24.820917,0
              -106.938167,24.834697,0
              -106.938061,24.835251,0
              -106.946488,24.839753,0
              -106.943137,24.843057,0
              -106.943961,24.851527,0
              -106.946393,24.858508,0
              -106.950832,24.857948,0
              -106.951418,24.859024,0
              -106.92708,24.866624,0
              -106.932863,24.871479,0
              -106.930616,24.873473,0
              -106.934508,24.880536,0
              -106.946278,24.888952,0
              -106.951009,24.887997,0
              -106.973103,24.909286,0
              -106.973249,24.909615,0
              -107.000575,24.928241,0
              -107.021053,24.909908,0
              -107.024978,24.927176,0
              -107.025147,24.928381,0
              -107.018344,24.933617,0
              -107.038613,24.967508,0
              -107.043959,24.976444,0
              -107.057278,24.998698,0
              -107.058567,25.000611,0
              -107.059918,25.00184,0
              -107.06042,25.002427,0
              -107.060556,25.004103,0
              -107.060564,25.005657,0
              -107.061398,25.008466,0
              -107.061596,25.010321,0
              -107.062014,25.01245,0
              -107.066101,25.018905,0
              -107.066504,25.020397,0
              -107.0667,25.02213,0
              -107.066422,25.022915,0
              -107.065671,25.024138,0
              -107.064866,25.024893,0
              -107.063571,25.025255,0
              -107.067399,25.030155,0
              -107.067936,25.030347,0
              -107.116003,25.048032,0
              -107.129892,25.053139,0
              -107.127656,25.113171,0
              -107.12543,25.172959,0
              -107.124974,25.185207,0
              -107.124919,25.18664,0
              -107.125821,25.187556,0
              -107.12757,25.188117,0
              -107.129014,25.188401,0
              -107.129256,25.189445,0
              -107.136347,25.201735,0
              -107.148775,25.224548,0
              -107.135385,25.225343,0
              -107.134803,25.225731,0
              -107.13299,25.226355,0
              -107.132021,25.226712,0
              -107.131995,25.227132,0
              -107.131772,25.227774,0
              -107.130642,25.228611,0
              -107.130423,25.229483,0
              -107.130509,25.229674,0
              -107.130953,25.229912,0
              -107.131377,25.230774,0
              -107.13199,25.231274,0
              -107.131982,25.231537,0
              -107.131675,25.232202,0
              -107.131012,25.232979,0
              -107.12349,25.241436,0
              -107.123014,25.241304,0
              -107.12254,25.241339,0
              -107.121892,25.241862,0
              -107.121247,25.242622,0
              -107.121057,25.243111,0
              -107.121461,25.243467,0
              -107.122366,25.243712,0
              -107.123271,25.243824,0
              -107.123979,25.244106,0
              -107.125668,25.245402,0
              -107.126834,25.246497,0
              -107.129421,25.248157,0
              -107.130462,25.248857,0
              -107.131042,25.249388,0
              -107.131598,25.249933,0
              -107.132383,25.250326,0
              -107.13306,25.250335,0
              -107.133659,25.25045,0
              -107.134015,25.25078,0
              -107.134727,25.251229,0
              -107.138679,25.253877,0
              -107.139629,25.254684,0
              -107.140912,25.255471,0
              -107.141405,25.2557,0
              -107.141754,25.255515,0
              -107.142368,25.255672,0
              -107.142585,25.255822,0
              -107.14273,25.256251,0
              -107.143679,25.256823,0
              -107.145413,25.257846,0
              -107.147722,25.258944,0
              -107.149071,25.259415,0
              -107.15076,25.260108,0
              -107.154586,25.261741,0
              -107.155466,25.261638,0
              -107.156088,25.261504,0
              -107.157203,25.261765,0
              -107.157522,25.262304,0
              -107.15783,25.262691,0
              -107.158391,25.26298,0
              -107.200022,25.320755,0
              -107.207817,25.331564,0
              -107.171551,25.326358,0
              -107.203733,25.40206,0
              -107.210132,25.417101,0
              -107.184874,25.436816,0
              -107.164729,25.43964,0
              -107.164174,25.439886,0
              -107.164115,25.440091,0
              -107.163566,25.440454,0
              -107.162733,25.440622,0
              -107.161937,25.440818,0
              -107.161468,25.440858,0
              -107.160656,25.441002,0
              -107.160172,25.441154,0
              -107.159642,25.441403,0
              -107.159227,25.441762,0
              -107.15901,25.441794,0
              -107.158691,25.441992,0
              -107.15858,25.442166,0
              -107.158696,25.442447,0
              -107.158688,25.44259,0
              -107.15884,25.44282,0
              -107.159229,25.443178,0
              -107.159486,25.443299,0
              -107.159591,25.443479,0
              -107.159916,25.443578,0
              -107.160568,25.443879,0
              -107.160906,25.444203,0
              -107.160966,25.444497,0
              -107.160957,25.444801,0
              -107.160817,25.445219,0
              -107.160367,25.445716,0
              -107.159849,25.445894,0
              -107.159609,25.445881,0
              -107.157166,25.446203,0
              -107.15629,25.446448,0
              -107.155796,25.446872,0
              -107.155722,25.447473,0
              -107.155977,25.447866,0
              -107.156285,25.448103,0
              -107.15648,25.448376,0
              -107.156691,25.448534,0
              -107.15679,25.448774,0
              -107.156758,25.449085,0
              -107.156514,25.449244,0
              -107.156134,25.449267,0
              -107.155719,25.449428,0
              -107.15555,25.449568,0
              -107.155517,25.44981,0
              -107.155524,25.450207,0
              -107.155649,25.450826,0
              -107.155867,25.45134,0
              -107.155941,25.45158,0
              -107.156092,25.451792,0
              -107.156115,25.45202,0
              -107.15622,25.452251,0
              -107.156257,25.452522,0
              -107.156234,25.452801,0
              -107.156402,25.453442,0
              -107.156378,25.45369,0
              -107.156402,25.454128,0
              -107.156462,25.454444,0
              -107.156622,25.454865,0
              -107.156788,25.455453,0
              -107.156651,25.456135,0
              -107.156562,25.456424,0
              -107.155714,25.456923,0
              -107.154784,25.457079,0
              -107.152995,25.456933,0
              -107.151894,25.457093,0
              -107.151049,25.457578,0
              -107.150807,25.457937,0
              -107.150543,25.458044,0
              -107.150528,25.458286,0
              -107.151613,25.459115,0
              -107.152311,25.459496,0
              -107.152744,25.459933,0
              -107.153106,25.460475,0
              -107.153131,25.461092,0
              -107.152977,25.461505,0
              -107.152141,25.462617,0
              -107.152038,25.46296,0
              -107.151893,25.463252,0
              -107.151855,25.463494,0
              -107.151955,25.463966,0
              -107.151938,25.464202,0
              -107.152216,25.464691,0
              -107.152433,25.464838,0
              -107.152538,25.465057,0
              -107.152705,25.465263,0
              -107.153051,25.46555,0
              -107.153073,25.465739,0
              -107.153022,25.466066,0
              -107.152744,25.466414,0
              -107.152143,25.466697,0
              -107.151423,25.467069,0
              -107.151224,25.467217,0
              -107.151255,25.467476,0
              -107.151715,25.468147,0
              -107.152083,25.468639,0
              -107.152509,25.469074,0
              -107.152632,25.469696,0
              -107.152545,25.470093,0
              -107.152399,25.470438,0
              -107.15209,25.470939,0
              -107.151913,25.471411,0
              -107.151158,25.472535,0
              -107.150995,25.472851,0
              -107.150645,25.473949,0
              -107.150604,25.474287,0
              -107.15062,25.474533,0
              -107.150814,25.47484,0
              -107.151135,25.475814,0
              -107.151205,25.476283,0
              -107.151117,25.476698,0
              -107.150972,25.477029,0
              -107.150549,25.477576,0
              -107.149467,25.478794,0
              -107.147831,25.478864,0
              -107.147242,25.47927,0
              -107.147172,25.480209,0
              -107.146981,25.481874,0
              -107.146854,25.482453,0
              -107.146578,25.483074,0
              -107.146192,25.483469,0
              -107.145627,25.483912,0
              -107.145043,25.484314,0
              -107.144621,25.484507,0
              -107.144277,25.484759,0
              -107.143802,25.485164,0
              -107.143124,25.485455,0
              -107.142394,25.485954,0
              -107.141923,25.486219,0
              -107.141511,25.486338,0
              -107.141238,25.486303,0
              -107.140975,25.486107,0
              -107.140624,25.486172,0
              -107.140447,25.486427,0
              -107.140403,25.486794,0
              -107.14048,25.487255,0
              -107.140639,25.487978,0
              -107.140647,25.488495,0
              -107.140376,25.488875,0
              -107.139845,25.489253,0
              -107.139295,25.489565,0
              -107.139018,25.491665,0
              -107.139822,25.496621,0
              -107.147684,25.505027,0
              -107.162537,25.50312,0
              -107.164589,25.502742,0
              -107.16629,25.502995,0
              -107.169855,25.505705,0
              -107.172106,25.50739,0
              -107.172175,25.50765,0
              -107.172362,25.507996,0
              -107.173127,25.508962,0
              -107.173735,25.509553,0
              -107.175629,25.511802,0
              -107.176121,25.5127,0
              -107.176873,25.513608,0
              -107.177635,25.5144,0
              -107.177925,25.514823,0
              -107.178117,25.515176,0
              -107.178056,25.515734,0
              -107.177826,25.51598,0
              -107.1772,25.516774,0
              -107.176371,25.51775,0
              -107.176029,25.518245,0
              -107.176045,25.518659,0
              -107.175849,25.519216,0
              -107.175733,25.519665,0
              -107.175623,25.519858,0
              -107.175365,25.519972,0
              -107.175135,25.520237,0
              -107.175163,25.520601,0
              -107.175273,25.520921,0
              -107.175885,25.521328,0
              -107.176098,25.52157,0
              -107.176251,25.521946,0
              -107.176175,25.522344,0
              -107.175973,25.522707,0
              -107.175664,25.522938,0
              -107.175167,25.523116,0
              -107.174316,25.523355,0
              -107.174006,25.523492,0
              -107.173493,25.523935,0
              -107.173326,25.523956,0
              -107.173075,25.523865,0
              -107.172904,25.523679,0
              -107.172653,25.523607,0
              -107.172175,25.52369,0
              -107.172011,25.523843,0
              -107.171953,25.524109,0
              -107.171942,25.524657,0
              -107.171999,25.52571,0
              -107.172049,25.526144,0
              -107.172115,25.52637,0
              -107.172639,25.526513,0
              -107.173288,25.526655,0
              -107.173937,25.526759,0
              -107.174382,25.527168,0
              -107.174639,25.52771,0
              -107.174391,25.52804,0
              -107.174349,25.528732,0
              -107.174254,25.529101,0
              -107.173739,25.529655,0
              -107.173368,25.529906,0
              -107.172955,25.530139,0
              -107.172664,25.530219,0
              -107.172227,25.530226,0
              -107.171579,25.530178,0
              -107.171267,25.530183,0
              -107.17071,25.530513,0
              -107.170353,25.531388,0
              -107.170545,25.531708,0
              -107.170396,25.531932,0
              -107.169967,25.532093,0
              -107.169649,25.532295,0
              -107.169506,25.532468,0
              -107.16951,25.532657,0
              -107.169596,25.532826,0
              -107.169764,25.532899,0
              -107.170497,25.533058,0
              -107.170936,25.533108,0
              -107.171335,25.533292,0
              -107.171566,25.533345,0
              -107.172191,25.533317,0
              -107.173132,25.533492,0
              -107.173449,25.533714,0
              -107.173548,25.533938,0
              -107.173752,25.534114,0
              -107.173907,25.534432,0
              -107.173861,25.534807,0
              -107.173597,25.53569,0
              -107.173455,25.536229,0
              -107.173487,25.53721,0
              -107.173342,25.538032,0
              -107.173688,25.538516,0
              -107.173738,25.538862,0
              -107.174209,25.539249,0
              -107.174818,25.539813,0
              -107.176134,25.539964,0
              -107.176661,25.540125,0
              -107.17688,25.54082,0
              -107.176852,25.541188,0
              -107.176696,25.541551,0
              -107.176515,25.54182,0
              -107.176235,25.541996,0
              -107.175969,25.54223,0
              -107.176046,25.542724,0
              -107.176129,25.543039,0
              -107.176279,25.543262,0
              -107.176575,25.543579,0
              -107.1764,25.543993,0
              -107.176168,25.544404,0
              -107.175621,25.544583,0
              -107.175143,25.544624,0
              -107.174709,25.544535,0
              -107.174355,25.544104,0
              -107.174038,25.543901,0
              -107.173086,25.543102,0
              -107.172936,25.542877,0
              -107.172585,25.542717,0
              -107.172217,25.542651,0
              -107.171829,25.542799,0
              -107.171819,25.54334,0
              -107.171851,25.543626,0
              -107.171748,25.544235,0
              -107.171864,25.544693,0
              -107.171867,25.545138,0
              -107.171523,25.54547,0
              -107.171488,25.545783,0
              -107.171586,25.546108,0
              -107.171871,25.546315,0
              -107.172127,25.546633,0
              -107.172507,25.546854,0
              -107.172676,25.547003,0
              -107.172971,25.547131,0
              -107.173392,25.54739,0
              -107.173461,25.54764,0
              -107.173725,25.548018,0
              -107.174094,25.548144,0
              -107.174285,25.54833,0
              -107.174545,25.548427,0
              -107.174764,25.548593,0
              -107.174973,25.548825,0
              -107.175165,25.549198,0
              -107.175125,25.549811,0
              -107.174995,25.550114,0
              -107.174683,25.550482,0
              -107.174224,25.550918,0
              -107.173851,25.550983,0
              -107.173418,25.551142,0
              -107.172858,25.551301,0
              -107.172693,25.551417,0
              -107.172615,25.551702,0
              -107.172833,25.552226,0
              -107.17292,25.552658,0
              -107.173073,25.553015,0
              -107.173277,25.553386,0
              -107.173295,25.553787,0
              -107.173501,25.554824,0
              -107.173748,25.555325,0
              -107.173813,25.556148,0
              -107.173879,25.556553,0
              -107.173434,25.556848,0
              -107.173208,25.557078,0
              -107.172919,25.557215,0
              -107.172637,25.557438,0
              -107.172258,25.557444,0
              -107.171887,25.557542,0
              -107.170714,25.557369,0
              -107.17025,25.557254,0
              -107.169772,25.557356,0
              -107.169483,25.557512,0
              -107.169195,25.557724,0
              -107.169053,25.557953,0
              -107.169016,25.558218,0
              -107.169061,25.558426,0
              -107.169486,25.558919,0
              -107.169772,25.559041,0
              -107.169957,25.559241,0
              -107.17007,25.559547,0
              -107.138749,25.560095,0
              -107.139227,25.559656,0
              -107.139302,25.559005,0
              -107.139102,25.558781,0
              -107.13889,25.558625,0
              -107.138627,25.558366,0
              -107.13878,25.557989,0
              -107.138641,25.557573,0
              -107.138461,25.557376,0
              -107.138497,25.556917,0
              -107.138397,25.556201,0
              -107.13848,25.555941,0
              -107.138653,25.555799,0
              -107.139067,25.555594,0
              -107.139326,25.555331,0
              -107.139322,25.555112,0
              -107.139073,25.554697,0
              -107.139268,25.554294,0
              -107.138654,25.553951,0
              -107.13887,25.553573,0
              -107.13908,25.553356,0
              -107.139354,25.553198,0
              -107.139085,25.553193,0
              -107.138775,25.553126,0
              -107.138629,25.552985,0
              -107.138455,25.552394,0
              -107.138264,25.552198,0
              -107.137979,25.552111,0
              -107.137269,25.552113,0
              -107.137118,25.552247,0
              -107.136486,25.552421,0
              -107.135825,25.552493,0
              -107.135197,25.552463,0
              -107.134891,25.552404,0
              -107.134681,25.552266,0
              -107.134435,25.552194,0
              -107.134018,25.55218,0
              -107.133591,25.552216,0
              -107.133383,25.552377,0
              -107.133187,25.552605,0
              -107.132937,25.552702,0
              -107.132552,25.552695,0
              -107.132252,25.552425,0
              -107.131977,25.55235,0
              -107.131818,25.552093,0
              -107.131679,25.551696,0
              -107.131497,25.5513,0
              -107.131516,25.550912,0
              -107.131467,25.550614,0
              -107.131331,25.550376,0
              -107.131174,25.550219,0
              -107.131147,25.550419,0
              -107.131016,25.550661,0
              -107.130885,25.550797,0
              -107.13058,25.550834,0
              -107.130327,25.550669,0
              -107.130244,25.550476,0
              -107.129997,25.550215,0
              -107.129811,25.550199,0
              -107.129633,25.550023,0
              -107.12917,25.54995,0
              -107.128445,25.54998,0
              -107.127941,25.550047,0
              -107.127635,25.550171,0
              -107.127263,25.550236,0
              -107.126891,25.550361,0
              -107.125997,25.550713,0
              -107.125557,25.550719,0
              -107.125049,25.550547,0
              -107.124845,25.550392,0
              -107.124565,25.550414,0
              -107.124368,25.550557,0
              -107.124083,25.550641,0
              -107.123932,25.550763,0
              -107.12376,25.551024,0
              -107.12368,25.551424,0
              -107.123668,25.552002,0
              -107.123318,25.552087,0
              -107.122724,25.552076,0
              -107.122642,25.552317,0
              -107.122473,25.552488,0
              -107.122253,25.5528,0
              -107.122215,25.553099,0
              -107.12209,25.55352,0
              -107.121806,25.553662,0
              -107.120727,25.553884,0
              -107.120329,25.553934,0
              -107.119789,25.554108,0
              -107.119534,25.554222,0
              -107.119373,25.554569,0
              -107.1195,25.554932,0
              -107.119679,25.555109,0
              -107.120078,25.555302,0
              -107.120281,25.55553,0
              -107.120678,25.55584,0
              -107.121055,25.556054,0
              -107.121191,25.556291,0
              -107.121127,25.556411,0
              -107.120909,25.556474,0
              -107.120293,25.556463,0
              -107.1199,25.556588,0
              -107.119793,25.556769,0
              -107.119624,25.55719,0
              -107.119542,25.55749,0
              -107.119435,25.557651,0
              -107.119087,25.557895,0
              -107.118529,25.558121,0
              -107.117942,25.558322,0
              -107.117328,25.558557,0
              -107.116673,25.558893,0
              -107.116146,25.558921,0
              -107.115905,25.558964,0
              -107.115411,25.558987,0
              -107.115057,25.559176,0
              -107.114759,25.559421,0
              -107.114627,25.559685,0
              -107.114627,25.560019,0
              -107.114476,25.56022,0
              -107.114038,25.560286,0
              -107.113619,25.560193,0
              -107.113185,25.559904,0
              -107.113081,25.56106,0
              -107.109988,25.560556,0
              -107.098458,25.565868,0
              -107.036051,25.595428,0
              -107.034159,25.596323,0
              -106.976857,25.627624,0
              -106.97329,25.62957,0
              -106.994396,25.661795,0
              -106.994325,25.662233,0
              -106.96694,25.668331,0
              -106.966835,25.669337,0
              -106.96648,25.671431,0
              -106.966845,25.672834,0
              -106.966847,25.674277,0
              -106.966503,25.675923,0
              -106.965946,25.677095,0
              -106.968483,25.681686,0
              -106.969152,25.683006,0
              -106.968809,25.684298,0
              -106.965323,25.697879,0
              -106.990299,25.714924,0
              -106.990769,25.714314,0
              -106.990926,25.713868,0
              -106.990801,25.712739,0
              -106.991066,25.71154,0
              -106.991407,25.71049,0
              -106.992575,25.710356,0
              -106.993676,25.710135,0
              -106.995035,25.709793,0
              -106.996193,25.70913,0
              -106.996763,25.70821,0
              -106.998546,25.708009,0
              -107.000562,25.707035,0
              -107.000859,25.706417,0
              -107.001471,25.706115,0
              -107.001779,25.705445,0
              -107.002354,25.704592,0
              -107.002758,25.70418,0
              -107.002998,25.703999,0
              -107.003393,25.703823,0
              -107.004103,25.703561,0
              -107.004394,25.703405,0
              -107.004767,25.703134,0
              -107.004753,25.702781,0
              -107.004635,25.702472,0
              -107.004272,25.701733,0
              -107.004289,25.70124,0
              -107.004641,25.700827,0
              -107.004959,25.700648,0
              -107.005044,25.700439,0
              -107.005239,25.699316,0
              -107.00552,25.698713,0
              -107.006099,25.698472,0
              -107.00662,25.698416,0
              -107.00745,25.698441,0
              -107.007937,25.698596,0
              -107.008197,25.69858,0
              -107.008459,25.698493,0
              -107.009005,25.698462,0
              -107.009264,25.698493,0
              -107.009706,25.698459,0
              -107.01004,25.698539,0
              -107.010301,25.6985,0
              -107.010617,25.698368,0
              -107.010707,25.698018,0
              -107.010688,25.697829,0
              -107.010442,25.697446,0
              -107.010213,25.697322,0
              -107.010144,25.697085,0
              -107.010178,25.696851,0
              -107.010294,25.696502,0
              -107.010386,25.696105,0
              -107.010372,25.695752,0
              -107.010208,25.695277,0
              -107.010096,25.69478,0
              -107.010065,25.694192,0
              -107.010113,25.693558,0
              -107.010095,25.693323,0
              -107.010202,25.692503,0
              -107.010324,25.69199,0
              -107.010574,25.691527,0
              -107.01068,25.691459,0
              -107.01107,25.691424,0
              -107.011692,25.691465,0
              -107.011949,25.69152,0
              -107.012518,25.69156,0
              -107.012749,25.691637,0
              -107.013422,25.69168,0
              -107.014026,25.691486,0
              -107.014444,25.691381,0
              -107.015042,25.691351,0
              -107.015372,25.691549,0
              -107.015701,25.691793,0
              -107.016404,25.692448,0
              -107.016733,25.692669,0
              -107.01717,25.6928,0
              -107.017429,25.692807,0
              -107.018557,25.692464,0
              -107.018795,25.69233,0
              -107.019057,25.692243,0
              -107.019631,25.692166,0
              -107.020018,25.692224,0
              -107.020555,25.692451,0
              -107.020884,25.692672,0
              -107.022537,25.693712,0
              -107.025293,25.696203,0
              -107.026822,25.696801,0
              -107.02809,25.696842,0
              -107.029694,25.697219,0
              -107.031598,25.697882,0
              -107.033861,25.69819,0
              -107.040755,25.697016,0
              -107.041977,25.697098,0
              -107.043127,25.697699,0
              -107.044801,25.699014,0
              -107.045606,25.699672,0
              -107.046144,25.699875,0
              -107.046548,25.700216,0
              -107.0469,25.700579,0
              -107.047134,25.701316,0
              -107.047269,25.701931,0
              -107.047371,25.702735,0
              -107.047487,25.703915,0
              -107.047637,25.704837,0
              -107.047505,25.705715,0
              -107.04742,25.706481,0
              -107.047111,25.707398,0
              -107.04712,25.707898,0
              -107.047032,25.708458,0
              -107.047109,25.709163,0
              -107.047314,25.709749,0
              -107.048079,25.710827,0
              -107.048509,25.711262,0
              -107.049098,25.711519,0
              -107.049882,25.711714,0
              -107.050517,25.711792,0
              -107.051395,25.711982,0
              -107.052552,25.71232,0
              -107.053784,25.712779,0
              -107.05512,25.713216,0
              -107.055992,25.71357,0
              -107.056712,25.713779,0
              -107.057585,25.714109,0
              -107.058304,25.714341,0
              -107.059327,25.714841,0
              -107.060377,25.715294,0
              -107.060935,25.715686,0
              -107.06169,25.716414,0
              -107.062389,25.717234,0
              -107.062948,25.717626,0
              -107.06338,25.717897,0
              -107.063633,25.718116,0
              -107.064129,25.718812,0
              -107.064224,25.719074,0
              -107.064237,25.719451,0
              -107.064041,25.719869,0
              -107.063556,25.720374,0
              -107.063185,25.720575,0
              -107.063073,25.720807,0
              -107.062668,25.721267,0
              -107.062421,25.721637,0
              -107.062218,25.722267,0
              -107.062053,25.722521,0
              -107.061961,25.722942,0
              -107.061991,25.723579,0
              -107.062216,25.724301,0
              -107.062694,25.724514,0
              -107.062985,25.724572,0
              -107.063272,25.724402,0
              -107.063467,25.723964,0
              -107.06438,25.724044,0
              -107.064648,25.724178,0
              -107.064897,25.724395,0
              -107.064852,25.72458,0
              -107.06538,25.725203,0
              -107.065502,25.725833,0
              -107.065236,25.72659,0
              -107.064983,25.726976,0
              -107.064927,25.727536,0
              -107.065033,25.728005,0
              -107.064551,25.728335,0
              -107.064492,25.728689,0
              -107.064664,25.729217,0
              -107.064281,25.729634,0
              -107.064611,25.729923,0
              -107.064616,25.730188,0
              -107.064685,25.730446,0
              -107.064549,25.730961,0
              -107.064849,25.732039,0
              -107.064699,25.732372,0
              -107.064742,25.732778,0
              -107.064489,25.733137,0
              -107.064156,25.733206,0
              -107.063984,25.733379,0
              -107.063875,25.733636,0
              -107.064015,25.733819,0
              -107.063833,25.734162,0
              -107.063682,25.734337,0
              -107.063574,25.734774,0
              -107.063309,25.735096,0
              -107.063021,25.735133,0
              -107.062817,25.735386,0
              -107.062811,25.73557,0
              -107.061701,25.736423,0
              -107.061557,25.737221,0
              -107.061144,25.737425,0
              -107.060947,25.737688,0
              -107.061125,25.738558,0
              -107.061159,25.739019,0
              -107.060954,25.739295,0
              -107.060875,25.739547,0
              -107.060498,25.739996,0
              -107.060833,25.740571,0
              -107.060929,25.74112,0
              -107.06116,25.741434,0
              -107.061505,25.741631,0
              -107.061617,25.741808,0
              -107.062011,25.742071,0
              -107.062495,25.742665,0
              -107.062405,25.742922,0
              -107.062057,25.74313,0
              -107.061671,25.743074,0
              -107.061382,25.7431,0
              -107.061014,25.743035,0
              -107.061116,25.743341,0
              -107.061298,25.743623,0
              -107.061409,25.743872,0
              -107.061599,25.744,0
              -107.061707,25.744162,0
              -107.061614,25.744321,0
              -107.061389,25.744377,0
              -107.061479,25.744579,0
              -107.061678,25.744573,0
              -107.062096,25.744371,0
              -107.062462,25.74445,0
              -107.062853,25.744486,0
              -107.063448,25.74441,0
              -107.063644,25.74433,0
              -107.06373,25.744688,0
              -107.063929,25.744911,0
              -107.063924,25.745231,0
              -107.064281,25.745786,0
              -107.064384,25.74657,0
              -107.064768,25.747649,0
              -107.064683,25.748164,0
              -107.064222,25.749071,0
              -107.063373,25.750353,0
              -107.062388,25.751723,0
              -107.062146,25.752785,0
              -107.061742,25.75385,0
              -107.060756,25.755065,0
              -107.059329,25.755711,0
              -107.05889,25.756186,0
              -107.058381,25.756811,0
              -107.057905,25.757368,0
              -107.059328,25.758214,0
              -107.089088,25.778943,0
              -107.194577,25.852308,0
              -107.196545,25.852977,0
              -107.198213,25.853087,0
              -107.199018,25.853204,0
              -107.199232,25.853952,0
              -107.201258,25.855286,0
              -107.203114,25.855579,0
              -107.204399,25.856703,0
              -107.206503,25.856495,0
              -107.208153,25.856353,0
              -107.208866,25.856313,0
              -107.208614,25.858486,0
              -107.207469,25.861407,0
              -107.206939,25.862558,0
              -107.206949,25.863919,0
              -107.208075,25.864204,0
              -107.20957,25.863587,0
              -107.2106,25.863096,0
              -107.211577,25.862583,0
              -107.213123,25.861894,0
              -107.214278,25.862296,0
              -107.21552,25.86312,0
              -107.217526,25.864205,0
              -107.218718,25.864806,0
              -107.221576,25.866659,0
              -107.22336,25.86752,0
              -107.22528,25.868615,0
              -107.22706,25.869298,0
              -107.229033,25.869742,0
              -107.230362,25.870787,0
              -107.231357,25.871482,0
              -107.232229,25.872593,0
              -107.232855,25.873609,0
              -107.233461,25.874482,0
              -107.234478,25.875664,0
              -107.235676,25.876818,0
              -107.236507,25.877838,0
              -107.23702,25.878828,0
              -107.239382,25.880383,0
              -107.240316,25.880379,0
              -107.241481,25.881011,0
              -107.241964,25.880362,0
              -107.242173,25.879904,0
              -107.242957,25.879044,0
              -107.243729,25.878215,0
              -107.245123,25.877154,0
              -107.245399,25.87761,0
              -107.244825,25.878141,0
              -107.245388,25.878056,0
              -107.245634,25.877961,0
              -107.245932,25.878045,0
              -107.246042,25.877855,0
              -107.246268,25.877754,0
              -107.24651,25.877774,0
              -107.246601,25.877841,0
              -107.24671,25.878334,0
              -107.246608,25.878305,0
              -107.246386,25.878078,0
              -107.246399,25.878376,0
              -107.24664,25.878657,0
              -107.246957,25.878742,0
              -107.246948,25.878812,0
              -107.24656,25.878905,0
              -107.246325,25.878861,0
              -107.24632,25.879003,0
              -107.246727,25.879047,0
              -107.247049,25.879179,0
              -107.247004,25.879631,0
              -107.247079,25.879915,0
              -107.246793,25.880282,0
              -107.24635,25.880275,0
              -107.246475,25.880443,0
              -107.246497,25.880592,0
              -107.246306,25.880556,0
              -107.246233,25.880708,0
              -107.24629,25.8809,0
              -107.245923,25.881655,0
              -107.245886,25.8819,0
              -107.245923,25.882034,0
              -107.245841,25.882166,0
              -107.245895,25.882321,0
              -107.245839,25.882502,0
              -107.245497,25.882649,0
              -107.245745,25.883499,0
              -107.245521,25.88385,0
              -107.245211,25.883884,0
              -107.244952,25.884113,0
              -107.244724,25.884234,0
              -107.244281,25.884166,0
              -107.244191,25.884205,0
              -107.24409,25.884437,0
              -107.243868,25.884688,0
              -107.243363,25.885017,0
              -107.243222,25.885232,0
              -107.243508,25.88563,0
              -107.243758,25.885879,0
              -107.243808,25.886,0
              -107.243739,25.88638,0
              -107.243713,25.886744,0
              -107.243962,25.887107,0
              -107.2445,25.887411,0
              -107.242471,25.892349,0
              -107.242471,25.89237,0
              -107.296128,25.924793,0
              -107.287035,25.953985,0
              -107.286134,25.955269,0
              -107.28514,25.955842,0
              -107.284402,25.956604,0
              -107.28347,25.957059,0
              -107.28199,25.957384,0
              -107.280288,25.957395,0
              -107.280037,25.958096,0
              -107.280058,25.958816,0
              -107.279943,25.959311,0
              -107.280149,25.959726,0
              -107.28024,25.960209,0
              -107.280439,25.960452,0
              -107.280504,25.960915,0
              -107.280859,25.961379,0
              -107.281631,25.961753,0
              -107.282216,25.962193,0
              -107.282051,25.962422,0
              -107.282161,25.963835,0
              -107.282067,25.964786,0
              -107.282229,25.965534,0
              -107.282013,25.96587,0
              -107.281728,25.966011,0
              -107.281632,25.966638,0
              -107.281777,25.966929,0
              -107.281518,25.967408,0
              -107.281431,25.967936,0
              -107.281573,25.968257,0
              -107.281419,25.968662,0
              -107.281275,25.968935,0
              -107.28097,25.969118,0
              -107.28094,25.969423,0
              -107.280864,25.969688,0
              -107.280379,25.969955,0
              -107.280093,25.970234,0
              -107.280264,25.970868,0
              -107.280446,25.970945,0
              -107.280478,25.971076,0
              -107.280357,25.971354,0
              -107.280478,25.971819,0
              -107.280331,25.972328,0
              -107.280527,25.972844,0
              -107.280963,25.973565,0
              -107.281627,25.974802,0
              -107.282169,25.975036,0
              -107.282569,25.975376,0
              -107.28257,25.975541,0
              -107.282469,25.975752,0
              -107.282539,25.97612,0
              -107.282316,25.976219,0
              -107.282296,25.976618,0
              -107.282121,25.97675,0
              -107.281597,25.977372,0
              -107.281668,25.977637,0
              -107.28228,25.977992,0
              -107.282043,25.978479,0
              -107.281237,25.979031,0
              -107.281077,25.979789,0
              -107.280489,25.980702,0
              -107.280766,25.981115,0
              -107.281185,25.981814,0
              -107.281525,25.982523,0
              -107.281988,25.982964,0
              -107.282376,25.983186,0
              -107.282338,25.9838,0
              -107.282327,25.984386,0
              -107.282125,25.984573,0
              -107.282129,25.984984,0
              -107.282445,25.985741,0
              -107.282433,25.986136,0
              -107.282261,25.986172,0
              -107.282173,25.986341,0
              -107.282323,25.986842,0
              -107.282186,25.987064,0
              -107.281108,25.987341,0
              -107.280819,25.987568,0
              -107.28082,25.988054,0
              -107.280629,25.988401,0
              -107.280776,25.988668,0
              -107.280958,25.98872,0
              -107.281061,25.988432,0
              -107.281502,25.988514,0
              -107.281914,25.988766,0
              -107.282372,25.989432,0
              -107.282378,25.989925,0
              -107.282201,25.990062,0
              -107.281854,25.990111,0
              -107.281682,25.990682,0
              -107.28203,25.991981,0
              -107.281754,25.992281,0
              -107.281215,25.992628,0
              -107.280723,25.992857,0
              -107.280082,25.992886,0
              -107.27979,25.993004,0
              -107.279586,25.993195,0
              -107.278781,25.993505,0
              -107.278711,25.993635,0
              -107.278551,25.99416,0
              -107.278346,25.994196,0
              -107.278222,25.99454,0
              -107.278186,25.994828,0
              -107.278354,25.995068,0
              -107.278781,25.995285,0
              -107.278813,25.995412,0
              -107.278691,25.995898,0
              -107.278591,25.99594,0
              -107.278349,25.995658,0
              -107.278207,25.995595,0
              -107.277957,25.995632,0
              -107.277946,25.995879,0
              -107.277807,25.996108,0
              -107.277815,25.99675,0
              -107.278084,25.997558,0
              -107.278084,25.997986,0
              -107.277953,25.998112,0
              -107.277719,25.998456,0
              -107.277254,25.999031,0
              -107.276892,25.999897,0
              -107.277775,26.000377,0
              -107.277522,26.000879,0
              -107.277172,26.001009,0
              -107.277011,26.001217,0
              -107.276715,26.001872,0
              -107.276346,26.001977,0
              -107.306692,26.048784,0
              -107.30489,26.076402,0
              -107.327035,26.09089,0
              -107.346528,26.109523,0
              -107.416118,26.14122,0
              -107.432347,26.138246,0
              -107.431043,26.14286,0
              -107.433528,26.141971,0
              -107.436083,26.141823,0
              -107.439091,26.14115,0
              -107.442864,26.139616,0
              -107.445936,26.139376,0
              -107.447709,26.139183,0
              -107.448972,26.138659,0
              -107.449933,26.137803,0
              -107.450969,26.137617,0
              -107.452896,26.138162,0
              -107.455201,26.138361,0
              -107.457976,26.138558,0
              -107.460003,26.138315,0
              -107.462017,26.13739,0
              -107.463199,26.136549,0
              -107.465215,26.13433,0
              -107.466389,26.133336,0
              -107.466874,26.131912,0
              -107.467428,26.131335,0
              -107.469561,26.128852,0
              -107.470963,26.128054,0
              -107.47176,26.127493,0
              -107.472873,26.126193,0
              -107.477916,26.123452,0
              -107.477153,26.122363,0
              -107.477387,26.122294,0
              -107.477561,26.122125,0
              -107.47774,26.122071,0
              -107.477921,26.121681,0
              -107.47788,26.121324,0
              -107.477753,26.120957,0
              -107.479189,26.121038,0
              -107.479676,26.121302,0
              -107.480048,26.121426,0
              -107.480806,26.121272,0
              -107.481041,26.121113,0
              -107.481144,26.121194,0
              -107.481573,26.121058,0
              -107.482194,26.120723,0
              -107.482393,26.120696,0
              -107.482882,26.120886,0
              -107.482955,26.12071,0
              -107.483419,26.120609,0
              -107.483824,26.120355,0
              -107.484091,26.120241,0
              -107.484137,26.120118,0
              -107.484446,26.120171,0
              -107.484945,26.120032,0
              -107.485452,26.119699,0
              -107.485318,26.119287,0
              -107.485066,26.119076,0
              -107.485009,26.118939,0
              -107.48509,26.118637,0
              -107.485004,26.117941,0
              -107.48511,26.117667,0
              -107.485083,26.117416,0
              -107.485099,26.116987,0
              -107.485025,26.1169,0
              -107.485176,26.116617,0
              -107.485375,26.116502,0
              -107.485587,26.116142,0
              -107.485588,26.115972,0
              -107.485342,26.115635,0
              -107.485261,26.115421,0
              -107.486052,26.115235,0
              -107.487033,26.115112,0
              -107.487531,26.114911,0
              -107.487745,26.114717,0
              -107.487938,26.114631,0
              -107.488354,26.114785,0
              -107.48861,26.114705,0
              -107.488821,26.114573,0
              -107.489124,26.114176,0
              -107.490297,26.113655,0
              -107.490458,26.113726,0
              -107.490649,26.113551,0
              -107.490615,26.113419,0
              -107.490315,26.113067,0
              -107.492171,26.111463,0
              -107.493745,26.11058,0
              -107.495119,26.110761,0
              -107.49612,26.111182,0
              -107.496839,26.111289,0
              -107.49719,26.111899,0
              -107.497825,26.112418,0
              -107.497998,26.112585,0
              -107.49831,26.112718,0
              -107.498471,26.112614,0
              -107.498739,26.112617,0
              -107.49895,26.112782,0
              -107.499116,26.112782,0
              -107.49926,26.112881,0
              -107.499455,26.112816,0
              -107.500053,26.112981,0
              -107.500181,26.113074,0
              -107.500502,26.113074,0
              -107.501032,26.113533,0
              -107.501078,26.113735,0
              -107.502267,26.114179,0
              -107.502803,26.114563,0
              -107.502956,26.114765,0
              -107.502819,26.11495,0
              -107.502824,26.115067,0
              -107.503256,26.115118,0
              -107.503519,26.115387,0
              -107.503907,26.115917,0
              -107.504372,26.115934,0
              -107.504479,26.116024,0
              -107.504786,26.115947,0
              -107.505061,26.115824,0
              -107.506115,26.115787,0
              -107.507833,26.114618,0
              -107.508881,26.113614,0
              -107.509558,26.112263,0
              -107.510186,26.111101,0
              -107.511674,26.111107,0
              -107.513341,26.110939,0
              -107.514406,26.110224,0
              -107.516946,26.108405,0
              -107.52002,26.104227,0
              -107.52394,26.10723,0
              -107.523767,26.10768,0
              -107.523096,26.107996,0
              -107.522143,26.108552,0
              -107.521848,26.109427,0
              -107.522129,26.11182,0
              -107.522551,26.112049,0
              -107.523489,26.112104,0
              -107.524213,26.113174,0
              -107.524966,26.115678,0
              -107.52667,26.118872,0
              -107.52721,26.119874,0
              -107.528113,26.121381,0
              -107.527428,26.121973,0
              -107.526818,26.122457,0
              -107.526669,26.123182,0
              -107.526523,26.123699,0
              -107.526522,26.124041,0
              -107.526711,26.12439,0
              -107.526859,26.124937,0
              -107.526777,26.125497,0
              -107.526521,26.125923,0
              -107.526274,26.12614,0
              -107.525973,26.126265,0
              -107.52607,26.127123,0
              -107.526151,26.127452,0
              -107.526267,26.127748,0
              -107.526603,26.128056,0
              -107.527412,26.128449,0
              -107.528616,26.129197,0
              -107.528809,26.129031,0
              -107.529132,26.129151,0
              -107.529532,26.129385,0
              -107.530033,26.129152,0
              -107.530321,26.129137,0
              -107.530681,26.129219,0
              -107.531018,26.129216,0
              -107.531333,26.12928,0
              -107.531745,26.129456,0
              -107.532168,26.12969,0
              -107.532418,26.129731,0
              -107.532612,26.12985,0
              -107.532821,26.13021,0
              -107.532943,26.130753,0
              -107.533113,26.130997,0
              -107.533572,26.131055,0
              -107.53401,26.130998,0
              -107.534264,26.130911,0
              -107.534595,26.130938,0
              -107.534655,26.131185,0
              -107.534867,26.13166,0
              -107.535054,26.131872,0
              -107.535337,26.132075,0
              -107.535695,26.132564,0
              -107.535818,26.133157,0
              -107.535789,26.133504,0
              -107.535871,26.133915,0
              -107.536007,26.134277,0
              -107.536311,26.134767,0
              -107.536737,26.135833,0
              -107.5369,26.136607,0
              -107.537146,26.137501,0
              -107.537388,26.137662,0
              -107.538157,26.137665,0
              -107.538579,26.137723,0
              -107.538945,26.1377,0
              -107.539236,26.13758,0
              -107.5396,26.137491,0
              -107.540458,26.137376,0
              -107.540895,26.137253,0
              -107.541279,26.137213,0
              -107.541642,26.137058,0
              -107.54193,26.136855,0
              -107.542298,26.136898,0
              -107.542982,26.137216,0
              -107.543476,26.137174,0
              -107.54368,26.13732,0
              -107.543844,26.137623,0
              -107.543016,26.138075,0
              -107.541783,26.138942,0
              -107.540887,26.139732,0
              -107.539997,26.140804,0
              -107.54021,26.142353,0
              -107.541117,26.143467,0
              -107.541919,26.144488,0
              -107.543277,26.146349,0
              -107.54479,26.147297,0
              -107.546623,26.147636,0
              -107.547944,26.147441,0
              -107.550148,26.148819,0
              -107.551856,26.149924,0
              -107.553507,26.151366,0
              -107.553957,26.15175,0
              -107.554129,26.152554,0
              -107.554085,26.15339,0
              -107.554032,26.15383,0
              -107.554163,26.15414,0
              -107.554173,26.154511,0
              -107.55434,26.155092,0
              -107.554857,26.156168,0
              -107.555082,26.156582,0
              -107.555406,26.1573,0
              -107.555521,26.158327,0
              -107.555471,26.158829,0
              -107.555508,26.159134,0
              -107.555677,26.159623,0
              -107.556027,26.159832,0
              -107.556669,26.160084,0
              -107.557175,26.160194,0
              -107.557656,26.160353,0
              -107.558724,26.160669,0
              -107.559367,26.160969,0
              -107.559821,26.16108,0
              -107.560299,26.161144,0
              -107.560779,26.161255,0
              -107.56113,26.161536,0
              -107.562069,26.162021,0
              -107.56296,26.162747,0
              -107.563691,26.163404,0
              -107.564176,26.163754,0
              -107.564935,26.164482,0
              -107.565389,26.164641,0
              -107.565841,26.164681,0
              -107.566239,26.164674,0
              -107.567168,26.164705,0
              -107.56801,26.164403,0
              -107.568485,26.164275,0
              -107.569155,26.163865,0
              -107.570284,26.163342,0
              -107.571831,26.163721,0
              -107.572407,26.163969,0
              -107.573095,26.164114,0
              -107.573484,26.164098,0
              -107.574348,26.1648,0
              -107.57459,26.164964,0
              -107.574937,26.165029,0
              -107.575255,26.165023,0
              -107.575598,26.164969,0
              -107.576234,26.16491,0
              -107.576524,26.164833,0
              -107.576944,26.164658,0
              -107.577262,26.164605,0
              -107.577529,26.164696,0
              -107.577751,26.16517,0
              -107.578048,26.165404,0
              -107.578212,26.165616,0
              -107.5784,26.165733,0
              -107.578853,26.16582,0
              -107.579412,26.165736,0
              -107.579566,26.166126,0
              -107.579574,26.166485,0
              -107.579667,26.167129,0
              -107.579805,26.167366,0
              -107.580022,26.167553,0
              -107.580506,26.167855,0
              -107.58078,26.168257,0
              -107.580862,26.168662,0
              -107.580851,26.169093,0
              -107.58092,26.169786,0
              -107.580978,26.170024,0
              -107.581089,26.170237,0
              -107.581402,26.170501,0
              -107.581708,26.170606,0
              -107.582296,26.170653,0
              -107.582914,26.170665,0
              -107.58329,26.170568,0
              -107.583572,26.170617,0
              -107.583878,26.17051,0
              -107.584506,26.170032,0
              -107.585065,26.169805,0
              -107.585427,26.16985,0
              -107.585665,26.169653,0
              -107.58624,26.169749,0
              -107.586687,26.16969,0
              -107.587015,26.169509,0
              -107.587732,26.169568,0
              -107.588054,26.169705,0
              -107.588799,26.169875,0
              -107.589435,26.169928,0
              -107.589763,26.169802,0
              -107.590279,26.169441,0
              -107.590624,26.169114,0
              -107.591056,26.168755,0
              -107.591357,26.168616,0
              -107.591505,26.168375,0
              -107.591646,26.167799,0
              -107.591895,26.167626,0
              -107.592636,26.167303,0
              -107.59277,26.167086,0
              -107.592857,26.166517,0
              -107.593024,26.166192,0
              -107.593183,26.166043,0
              -107.593474,26.166015,0
              -107.593711,26.166114,0
              -107.594122,26.166423,0
              -107.594373,26.166525,0
              -107.594645,26.166478,0
              -107.595106,26.166259,0
              -107.59528,26.166114,0
              -107.595686,26.165882,0
              -107.596141,26.165842,0
              -107.5965,26.16576,0
              -107.597462,26.165335,0
              -107.59799,26.16529,0
              -107.598706,26.165498,0
              -107.599064,26.165416,0
              -107.599679,26.165446,0
              -107.600027,26.165507,0
              -107.600525,26.165478,0
              -107.600633,26.165133,0
              -107.601059,26.165034,0
              -107.601356,26.16504,0
              -107.601816,26.164907,0
              -107.602077,26.164926,0
              -107.602371,26.165044,0
              -107.602567,26.165347,0
              -107.602729,26.165487,0
              -107.602991,26.165582,0
              -107.603352,26.165632,0
              -107.603648,26.165577,0
              -107.603883,26.165481,0
              -107.604132,26.165069,0
              -107.604368,26.164859,0
              -107.60476,26.164751,0
              -107.605056,26.16462,0
              -107.605389,26.16453,0
              -107.605655,26.164597,0
              -107.606743,26.165101,0
              -107.607175,26.165136,0
              -107.607485,26.165062,0
              -107.607744,26.164689,0
              -107.60811,26.164359,0
              -107.608414,26.164226,0
              -107.609323,26.16393,0
              -107.609615,26.163947,0
              -107.61002,26.163619,0
              -107.610356,26.163594,0
              -107.611158,26.163279,0
              -107.611501,26.163102,0
              -107.612085,26.162998,0
              -107.612389,26.162784,0
              -107.61269,26.162667,0
              -107.613137,26.162587,0
              -107.613736,26.162658,0
              -107.614168,26.162669,0
              -107.614522,26.162801,0
              -107.615037,26.16282,0
              -107.615274,26.162756,0
              -107.615906,26.16281,0
              -107.61614,26.162789,0
              -107.616536,26.162585,0
              -107.616849,26.162347,0
              -107.617211,26.16248,0
              -107.617325,26.162439,0
              -107.617284,26.162318,0
              -107.617679,26.162428,0
              -107.617846,26.162369,0
              -107.618481,26.16266,0
              -107.618778,26.162765,0
              -107.619015,26.162713,0
              -107.619386,26.16256,0
              -107.620273,26.162547,0
              -107.620526,26.162693,0
              -107.62077,26.162646,0
              -107.62096,26.162472,0
              -107.62106,26.162108,0
              -107.621415,26.161887,0
              -107.621806,26.161488,0
              -107.622004,26.161331,0
              -107.622156,26.161105,0
              -107.622623,26.160758,0
              -107.622853,26.160805,0
              -107.623045,26.160732,0
              -107.623384,26.160887,0
              -107.624074,26.161085,0
              -107.6243,26.161073,0
              -107.624455,26.160795,0
              -107.624712,26.160558,0
              -107.625149,26.159998,0
              -107.625145,26.159737,0
              -107.625236,26.159499,0
              -107.625474,26.159393,0
              -107.625823,26.15952,0
              -107.626585,26.159461,0
              -107.627528,26.159012,0
              -107.627846,26.158716,0
              -107.628004,26.158477,0
              -107.628299,26.158189,0
              -107.628771,26.158012,0
              -107.629034,26.157977,0
              -107.629265,26.158065,0
              -107.629586,26.158071,0
              -107.629804,26.15795,0
              -107.630123,26.157691,0
              -107.630782,26.157605,0
              -107.630988,26.157482,0
              -107.631348,26.15747,0
              -107.631981,26.157352,0
              -107.632345,26.157164,0
              -107.632602,26.156824,0
              -107.632885,26.156202,0
              -107.633547,26.155955,0
              -107.63384,26.155732,0
              -107.634233,26.155234,0
              -107.635346,26.154658,0
              -107.63575,26.154578,0
              -107.636045,26.15469,0
              -107.636168,26.154952,0
              -107.63625,26.155307,0
              -107.636624,26.155405,0
              -107.636814,26.15534,0
              -107.637082,26.15513,0
              -107.6374,26.155212,0
              -107.637596,26.155313,0
              -107.638139,26.155354,0
              -107.63929,26.155569,0
              -107.639682,26.15558,0
              -107.639878,26.155522,0
              -107.640098,26.155534,0
              -107.640697,26.155663,0
              -107.640965,26.155795,0
              -107.641343,26.156168,0
              -107.64165,26.156704,0
              -107.641785,26.157026,0
              -107.642058,26.157379,0
              -107.642267,26.157559,0
              -107.642549,26.15766,0
              -107.642797,26.15764,0
              -107.643233,26.157435,0
              -107.643561,26.1576,0
              -107.643737,26.157623,0
              -107.643996,26.157464,0
              -107.644283,26.157559,0
              -107.644778,26.157819,0
              -107.645032,26.158103,0
              -107.645193,26.158158,0
              -107.645542,26.158121,0
              -107.646082,26.158289,0
              -107.646388,26.158507,0
              -107.64654,26.158768,0
              -107.64657,26.159424,0
              -107.64669,26.159699,0
              -107.646823,26.15988,0
              -107.64712,26.159993,0
              -107.647448,26.160036,0
              -107.647863,26.159987,0
              -107.648389,26.160301,0
              -107.64871,26.160698,0
              -107.649368,26.161212,0
              -107.649934,26.161706,0
              -107.650616,26.162083,0
              -107.651951,26.162929,0
              -107.652764,26.163641,0
              -107.653041,26.163658,0
              -107.65323,26.1635,0
              -107.653467,26.163124,0
              -107.653865,26.163127,0
              -107.654219,26.163239,0
              -107.654524,26.163466,0
              -107.654748,26.163702,0
              -107.655089,26.163931,0
              -107.655367,26.163899,0
              -107.655635,26.163727,0
              -107.656254,26.163192,0
              -107.657445,26.163098,0
              -107.657939,26.162945,0
              -107.659142,26.162649,0
              -107.659716,26.16265,0
              -107.660262,26.162781,0
              -107.660864,26.16296,0
              -107.662042,26.16342,0
              -107.662472,26.163675,0
              -107.663725,26.163987,0
              -107.664302,26.16398,0
              -107.664911,26.163897,0
              -107.665465,26.163872,0
              -107.666006,26.163912,0
              -107.666635,26.163833,0
              -107.667288,26.163891,0
              -107.667687,26.164131,0
              -107.66812,26.164202,0
              -107.668449,26.164406,0
              -107.668954,26.164512,0
              -107.669817,26.164515,0
              -107.670232,26.164557,0
              -107.670575,26.164558,0
              -107.671283,26.164474,0
              -107.6718,26.164367,0
              -107.672327,26.164468,0
              -107.673285,26.164306,0
              -107.673987,26.164262,0
              -107.674431,26.164113,0
              -107.674937,26.163902,0
              -107.67512,26.163779,0
              -107.675538,26.163675,0
              -107.675934,26.163685,0
              -107.676335,26.163565,0
              -107.676809,26.163531,0
              -107.677556,26.163767,0
              -107.677767,26.16394,0
              -107.678004,26.164031,0
              -107.678575,26.164098,0
              -107.679007,26.164322,0
              -107.679412,26.164395,0
              -107.679853,26.16428,0
              -107.680279,26.16409,0
              -107.680486,26.16365,0
              -107.68042,26.163245,0
              -107.680527,26.163009,0
              -107.680848,26.162857,0
              -107.681174,26.162934,0
              -107.682064,26.16352,0
              -107.682411,26.163575,0
              -107.682688,26.163539,0
              -107.682959,26.163325,0
              -107.683401,26.163425,0
              -107.683901,26.163677,0
              -107.684213,26.163803,0
              -107.68464,26.163914,0
              -107.684934,26.164052,0
              -107.685282,26.164165,0
              -107.685791,26.164395,0
              -107.686088,26.164629,0
              -107.686706,26.164976,0
              -107.687265,26.165392,0
              -107.687716,26.165306,0
              -107.688361,26.165115,0
              -107.688659,26.165092,0
              -107.689116,26.16519,0
              -107.689976,26.165239,0
              -107.690372,26.165219,0
              -107.690737,26.165354,0
              -107.691204,26.165634,0
              -107.691585,26.165778,0
              -107.692117,26.165707,0
              -107.692436,26.165517,0
              -107.692782,26.165445,0
              -107.694569,26.165223,0
              -107.695534,26.165392,0
              -107.696319,26.165474,0
              -107.696456,26.165702,0
              -107.696465,26.165915,0
              -107.696403,26.16642,0
              -107.696442,26.166771,0
              -107.696617,26.167403,0
              -107.696811,26.167894,0
              -107.696962,26.168142,0
              -107.697206,26.168685,0
              -107.697532,26.169269,0
              -107.6978,26.169625,0
              -107.698135,26.169908,0
              -107.698548,26.170301,0
              -107.699194,26.170737,0
              -107.700034,26.170981,0
              -107.700983,26.17106,0
              -107.701661,26.171011,0
              -107.702262,26.170883,0
              -107.703095,26.170599,0
              -107.70435,26.170223,0
              -107.705158,26.170049,0
              -107.705716,26.170011,0
              -107.706139,26.170068,0
              -107.706598,26.170383,0
              -107.707031,26.171059,0
              -107.707134,26.171402,0
              -107.707306,26.172167,0
              -107.707493,26.172624,0
              -107.707708,26.173031,0
              -107.707936,26.173376,0
              -107.708259,26.173675,0
              -107.708744,26.174021,0
              -107.709248,26.174187,0
              -107.710391,26.174438,0
              -107.711076,26.174413,0
              -107.711661,26.1743,0
              -107.71209,26.174104,0
              -107.712957,26.17345,0
              -107.713255,26.173052,0
              -107.713524,26.172456,0
              -107.713569,26.171486,0
              -107.713637,26.170677,0
              -107.713975,26.169305,0
              -107.714373,26.16798,0
              -107.7146,26.167306,0
              -107.715134,26.166326,0
              -107.715447,26.165871,0
              -107.715778,26.165547,0
              -107.716258,26.165254,0
              -107.716841,26.16503,0
              -107.717432,26.164742,0
              -107.718182,26.164553,0
              -107.720113,26.164244,0
              -107.721056,26.164135,0
              -107.72185,26.164072,0
              -107.722614,26.163842,0
              -107.723293,26.163553,0
              -107.723973,26.163285,0
              -107.724889,26.163171,0
              -107.72576,26.163288,0
              -107.726453,26.163438,0
              -107.727425,26.16382,0
              -107.728092,26.164052,0
              -107.728874,26.164395,0
              -107.729601,26.164836,0
              -107.731026,26.16567,0
              -107.731831,26.166061,0
              -107.732564,26.16671,0
              -107.733213,26.167083,0
              -107.733733,26.167495,0
              -107.734332,26.167772,0
              -107.735233,26.168085,0
              -107.735768,26.168179,0
              -107.736217,26.168216,0
              -107.736659,26.168103,0
              -107.737463,26.167851,0
              -107.738208,26.167577,0
              -107.738716,26.16724,0
              -107.739201,26.166722,0
              -107.7395,26.166184,0
              -107.739788,26.165382,0
              -107.740025,26.164484,0
              -107.740133,26.163439,0
              -107.740075,26.162289,0
              -107.739842,26.161634,0
              -107.739424,26.160848,0
              -107.738865,26.160103,0
              -107.738475,26.159498,0
              -107.738012,26.158724,0
              -107.737823,26.15814,0
              -107.737721,26.157487,0
              -107.737873,26.156947,0
              -107.738207,26.156444,0
              -107.738997,26.155999,0
              -107.73956,26.155889,0
              -107.740513,26.155794,0
              -107.741692,26.155761,0
              -107.743175,26.155808,0
              -107.744367,26.155747,0
              -107.745195,26.155649,0
              -107.746012,26.155289,0
              -107.746935,26.154542,0
              -107.747597,26.153793,0
              -107.747989,26.152822,0
              -107.748142,26.151195,0
              -107.748435,26.149867,0
              -107.748664,26.148271,0
              -107.74849,26.14672,0
              -107.748212,26.146142,0
              -107.747745,26.145095,0
              -107.747781,26.144163,0
              -107.74792,26.143494,0
              -107.748351,26.142496,0
              -107.74889,26.141554,0
              -107.749404,26.14061,0
              -107.750515,26.139677,0
              -107.751725,26.13854,0
              -107.752713,26.137558,0
              -107.753467,26.136642,0
              -107.754716,26.135523,0
              -107.755172,26.134512,0
              -107.78069,26.136938,0
              -107.787792,26.163452,0
              -107.788024,26.164018,0
              -107.788322,26.1651,0
              -107.788223,26.165288,0
              -107.788157,26.165757,0
              -107.788453,26.166241,0
              -107.788674,26.166821,0
              -107.788761,26.167193,0
              -107.7889,26.16761,0
              -107.78889,26.168264,0
              -107.788924,26.168614,0
              -107.789082,26.168727,0
              -107.78939,26.168813,0
              -107.789808,26.16876,0
              -107.790817,26.168741,0
              -107.791334,26.168707,0
              -107.792029,26.16853,0
              -107.792216,26.168399,0
              -107.792628,26.168297,0
              -107.793018,26.16836,0
              -107.793568,26.168629,0
              -107.793757,26.168929,0
              -107.794103,26.169343,0
              -107.79424,26.169667,0
              -107.794537,26.170152,0
              -107.79483,26.170496,0
              -107.794995,26.170937,0
              -107.794992,26.171282,0
              -107.794903,26.17163,0
              -107.795565,26.172023,0
              -107.796254,26.172663,0
              -107.796699,26.172888,0
              -107.797797,26.173334,0
              -107.798163,26.173467,0
              -107.798843,26.173757,0
              -107.799286,26.173865,0
              -107.799935,26.173946,0
              -107.800416,26.173947,0
              -107.800806,26.173986,0
              -107.801067,26.174075,0
              -107.801419,26.174291,0
              -107.80198,26.174471,0
              -107.802286,26.174313,0
              -107.802905,26.174642,0
              -107.803308,26.174699,0
              -107.803677,26.174709,0
              -107.80411,26.174681,0
              -107.804536,26.174802,0
              -107.804639,26.175126,0
              -107.805042,26.175725,0
              -107.805098,26.175911,0
              -107.80526,26.176188,0
              -107.805372,26.176536,0
              -107.805849,26.176994,0
              -107.805985,26.177271,0
              -107.806415,26.177916,0
              -107.806938,26.17814,0
              -107.807201,26.178321,0
              -107.807469,26.17869,0
              -107.807461,26.179437,0
              -107.807596,26.179668,0
              -107.807861,26.179891,0
              -107.808094,26.17998,0
              -107.808379,26.180003,0
              -107.808396,26.180633,0
              -107.80855,26.181169,0
              -107.808926,26.181502,0
              -107.809157,26.182119,0
              -107.809476,26.182348,0
              -107.809812,26.182852,0
              -107.810277,26.183681,0
              -107.810561,26.183761,0
              -107.811001,26.183685,0
              -107.811457,26.183528,0
              -107.812143,26.183426,0
              -107.812798,26.183384,0
              -107.813485,26.183311,0
              -107.814302,26.183147,0
              -107.814658,26.182963,0
              -107.815243,26.182715,0
              -107.816031,26.182758,0
              -107.816825,26.183039,0
              -107.818246,26.183454,0
              -107.818974,26.183736,0
              -107.819446,26.184259,0
              -107.82019,26.185162,0
              -107.820866,26.185477,0
              -107.821335,26.185882,0
              -107.82167,26.186201,0
              -107.821941,26.186551,0
              -107.822083,26.186962,0
              -107.822321,26.187342,0
              -107.822755,26.187629,0
              -107.823142,26.187355,0
              -107.823817,26.18678,0
              -107.82393,26.186009,0
              -107.823831,26.18465,0
              -107.824015,26.184114,0
              -107.824637,26.184072,0
              -107.825037,26.184301,0
              -107.825666,26.184555,0
              -107.826065,26.184754,0
              -107.826557,26.184774,0
              -107.826945,26.18453,0
              -107.827366,26.184314,0
              -107.828316,26.184236,0
              -107.828999,26.183986,0
              -107.830787,26.183686,0
              -107.831686,26.183481,0
              -107.832744,26.183327,0
              -107.833666,26.183228,0
              -107.835241,26.182873,0
              -107.836155,26.182648,0
              -107.837128,26.182463,0
              -107.838081,26.182417,0
              -107.839103,26.182633,0
              -107.83995,26.182938,0
              -107.840909,26.183554,0
              -107.841321,26.184284,0
              -107.841504,26.184911,0
              -107.854019,26.196519,0
              -107.856265,26.226035,0
              -107.87332,26.250334,0
              -107.899806,26.286709,0
              -107.915106,26.307711,0
              -107.949813,26.35532,0
              -107.974118,26.388634,0
              -107.973724,26.389032,0
              -107.973225,26.389616,0
              -107.973014,26.390132,0
              -107.972803,26.390577,0
              -107.972616,26.391233,0
              -107.973025,26.392527,0
              -107.973466,26.392999,0
              -108.000586,26.422162,0
              -108.012797,26.439048,0
              -108.000586,26.44756,0
              -107.969639,26.470168,0
              -107.985623,26.4721,0
              -107.985356,26.47306,0
              -107.985039,26.473785,0
              -107.984698,26.474158,0
              -107.984279,26.474531,0
              -107.983755,26.474951,0
              -107.983074,26.475698,0
              -107.981892,26.477169,0
              -107.981368,26.477659,0
              -107.980398,26.478686,0
              -107.979874,26.479199,0
              -107.979034,26.480132,0
              -107.978614,26.480717,0
              -107.97812,26.481226,0
              -107.977854,26.481463,0
              -107.976935,26.482513,0
              -107.976226,26.483424,0
              -107.975492,26.484077,0
              -107.97439,26.485361,0
              -107.973289,26.486505,0
              -107.972606,26.487298,0
              -107.971515,26.487964,0
              -107.970519,26.489069,0
              -107.969823,26.489367,0
              -107.969492,26.4898,0
              -107.968841,26.490149,0
              -107.967855,26.49034,0
              -107.966827,26.490586,0
              -107.965839,26.490704,0
              -107.964634,26.49106,0
              -107.963247,26.49135,0
              -107.961684,26.491557,0
              -107.960249,26.491967,0
              -107.959388,26.492549,0
              -107.958174,26.493043,0
              -107.957631,26.493392,0
              -107.957265,26.493744,0
              -107.957193,26.494391,0
              -107.957237,26.494669,0
              -107.957746,26.495417,0
              -107.957942,26.496016,0
              -107.95807,26.496855,0
              -107.957586,26.498643,0
              -107.956846,26.499537,0
              -107.956566,26.500012,0
              -107.956573,26.500456,0
              -107.95655,26.501349,0
              -107.956597,26.501959,0
              -107.956588,26.50302,0
              -107.956498,26.50347,0
              -107.956228,26.503913,0
              -107.955711,26.504529,0
              -107.955522,26.504961,0
              -107.955471,26.50542,0
              -107.95546,26.505984,0
              -107.955651,26.506353,0
              -107.955644,26.506684,0
              -107.955792,26.507373,0
              -107.956125,26.508061,0
              -107.956324,26.508336,0
              -107.95668,26.508614,0
              -107.957254,26.508723,0
              -107.957697,26.508995,0
              -107.958156,26.509507,0
              -107.958815,26.510124,0
              -107.959066,26.5107,0
              -107.959212,26.511225,0
              -107.959313,26.511777,0
              -107.959305,26.512397,0
              -107.959388,26.512888,0
              -107.959371,26.513419,0
              -107.95947,26.513916,0
              -107.95964,26.514389,0
              -107.959864,26.514736,0
              -107.960262,26.515216,0
              -107.960535,26.51561,0
              -107.960841,26.516121,0
              -107.960977,26.516444,0
              -107.961363,26.516959,0
              -107.961786,26.517343,0
              -107.961991,26.517805,0
              -107.962052,26.518543,0
              -107.961744,26.519177,0
              -107.961144,26.519892,0
              -107.961061,26.520203,0
              -107.961356,26.520384,0
              -107.961481,26.520709,0
              -107.961786,26.52132,0
              -107.961983,26.521942,0
              -107.962168,26.522857,0
              -107.962183,26.52352,0
              -107.962142,26.524001,0
              -107.962048,26.524329,0
              -107.961858,26.524814,0
              -107.961464,26.525548,0
              -107.961083,26.526105,0
              -107.960968,26.526665,0
              -107.961017,26.526955,0
              -107.961156,26.527068,0
              -107.962118,26.527097,0
              -107.962707,26.527203,0
              -107.963294,26.52719,0
              -107.963647,26.527259,0
              -107.964001,26.52745,0
              -107.964388,26.527757,0
              -107.965152,26.528294,0
              -107.965721,26.528666,0
              -107.96639,26.529014,0
              -107.966858,26.52937,0
              -107.967507,26.52999,0
              -107.968112,26.53041,0
              -107.968595,26.530818,0
              -107.969394,26.53164,0
              -107.97016,26.532506,0
              -107.970437,26.532892,0
              -107.970682,26.533046,0
              -107.971245,26.533026,0
              -107.9719,26.53329,0
              -107.972972,26.533942,0
              -107.973624,26.534267,0
              -107.974106,26.534567,0
              -107.974697,26.534837,0
              -107.975193,26.535034,0
              -107.976497,26.53546,0
              -107.977509,26.536113,0
              -107.977693,26.536406,0
              -107.977797,26.53675,0
              -107.977874,26.537283,0
              -107.977926,26.538285,0
              -107.978001,26.538555,0
              -107.977965,26.538972,0
              -107.978135,26.539449,0
              -107.978484,26.540193,0
              -107.97885,26.540704,0
              -107.979187,26.541454,0
              -107.979303,26.541962,0
              -107.97938,26.54249,0
              -107.979484,26.542808,0
              -107.979691,26.543185,0
              -107.980024,26.543261,0
              -107.980273,26.543133,0
              -107.980373,26.542804,0
              -107.980604,26.542632,0
              -107.981018,26.542698,0
              -107.981677,26.542881,0
              -107.982263,26.54318,0
              -107.98264,26.543678,0
              -107.98286,26.544744,0
              -107.983012,26.545197,0
              -107.98321,26.545627,0
              -107.983644,26.546037,0
              -107.984427,26.546077,0
              -107.985339,26.546026,0
              -107.985893,26.545971,0
              -107.986425,26.545858,0
              -107.986894,26.545815,0
              -107.987228,26.545832,0
              -107.987595,26.545898,0
              -107.98804,26.546128,0
              -107.988173,26.546351,0
              -107.988368,26.546895,0
              -107.988471,26.547086,0
              -107.988861,26.547376,0
              -107.989098,26.547613,0
              -107.989442,26.547802,0
              -107.989745,26.54804,0
              -107.98997,26.548331,0
              -107.990316,26.549128,0
              -107.990624,26.549553,0
              -107.990824,26.549882,0
              -107.990626,26.550103,0
              -107.990467,26.550675,0
              -107.989969,26.55132,0
              -107.989832,26.551589,0
              -107.989801,26.551912,0
              -107.989825,26.552639,0
              -107.989905,26.553109,0
              -107.989903,26.553583,0
              -107.990042,26.554376,0
              -107.990227,26.554849,0
              -107.990457,26.555258,0
              -107.990853,26.55584,0
              -107.991061,26.556457,0
              -107.991176,26.55723,0
              -107.99124,26.558182,0
              -107.99136,26.559745,0
              -107.991461,26.560203,0
              -107.991646,26.560716,0
              -107.991888,26.561767,0
              -107.992046,26.562283,0
              -107.992305,26.562577,0
              -107.992764,26.562745,0
              -107.993825,26.563047,0
              -107.9944,26.563179,0
              -107.995442,26.563311,0
              -107.99598,26.563564,0
              -107.996979,26.564089,0
              -107.997646,26.564705,0
              -107.998033,26.565222,0
              -107.998029,26.565557,0
              -107.997624,26.56579,0
              -107.997408,26.566242,0
              -107.997144,26.566322,0
              -107.997024,26.566606,0
              -107.997008,26.566882,0
              -107.997076,26.567097,0
              -107.997284,26.567533,0
              -107.997664,26.5681,0
              -107.998081,26.568496,0
              -107.99839,26.568739,0
              -107.998664,26.568902,0
              -107.999378,26.569423,0
              -107.999612,26.569753,0
              -107.999777,26.570271,0
              -107.999979,26.570732,0
              -108.000393,26.571606,0
              -108.000518,26.572016,0
              -108.001002,26.572556,0
              -108.001237,26.572746,0
              -108.001799,26.573087,0
              -108.001986,26.573172,0
              -108.002639,26.573277,0
              -108.0036,26.573351,0
              -108.004007,26.573466,0
              -108.004284,26.573703,0
              -108.004332,26.574037,0
              -108.004419,26.574335,0
              -108.005211,26.57483,0
              -108.005827,26.57517,0
              -108.006285,26.575361,0
              -108.006873,26.575668,0
              -108.007248,26.57579,0
              -108.007523,26.576071,0
              -108.007975,26.57641,0
              -108.008242,26.576701,0
              -108.008651,26.577013,0
              -108.008886,26.577277,0
              -108.009124,26.577378,0
              -108.009641,26.57778,0
              -108.01,26.578137,0
              -108.01051,26.578204,0
              -108.011037,26.578432,0
              -108.01174,26.579095,0
              -108.012484,26.579643,0
              -108.012787,26.580933,0
              -108.012889,26.581927,0
              -108.012702,26.582579,0
              -108.012441,26.583208,0
              -108.012086,26.583963,0
              -108.011883,26.584956,0
              -108.011762,26.585394,0
              -108.011687,26.586119,0
              -108.01149,26.586936,0
              -108.011296,26.587371,0
              -108.011166,26.587577,0
              -108.011048,26.587964,0
              -108.010778,26.588378,0
              -108.010951,26.589015,0
              -108.011115,26.589361,0
              -108.011438,26.589933,0
              -108.011677,26.590292,0
              -108.011915,26.590931,0
              -108.012175,26.591396,0
              -108.012596,26.591843,0
              -108.013161,26.591922,0
              -108.013403,26.592288,0
              -108.013687,26.592638,0
              -108.014519,26.593415,0
              -108.015113,26.593652,0
              -108.016178,26.593993,0
              -108.016703,26.594236,0
              -108.017272,26.594537,0
              -108.017904,26.594841,0
              -108.018413,26.595148,0
              -108.018956,26.595578,0
              -108.019466,26.596053,0
              -108.019712,26.596479,0
              -108.019971,26.596797,0
              -108.020281,26.597001,0
              -108.020747,26.597185,0
              -108.021296,26.597339,0
              -108.022004,26.597433,0
              -108.022922,26.597581,0
              -108.023793,26.597675,0
              -108.024499,26.597774,0
              -108.025471,26.59783,0
              -108.02608,26.598052,0
              -108.0271,26.598499,0
              -108.027481,26.598757,0
              -108.027858,26.599051,0
              -108.028385,26.599726,0
              -108.028749,26.600149,0
              -108.02946,26.600793,0
              -108.030098,26.601303,0
              -108.030642,26.6017,0
              -108.031632,26.602298,0
              -108.031898,26.602495,0
              -108.032514,26.603182,0
              -108.032927,26.604115,0
              -108.033172,26.604634,0
              -108.033243,26.605098,0
              -108.033446,26.605875,0
              -108.03346,26.606888,0
              -108.033519,26.607457,0
              -108.033614,26.607765,0
              -108.033962,26.608047,0
              -108.034384,26.608497,0
              -108.034781,26.60888,0
              -108.035407,26.609206,0
              -108.035436,26.609715,0
              -108.035283,26.61025,0
              -108.035164,26.610478,0
              -108.034725,26.611482,0
              -108.034185,26.612332,0
              -108.033497,26.613161,0
              -108.033196,26.61335,0
              -108.032868,26.613509,0
              -108.032531,26.613755,0
              -108.031933,26.6145,0
              -108.031772,26.614783,0
              -108.031657,26.615175,0
              -108.031646,26.61569,0
              -108.03181,26.615924,0
              -108.032136,26.615973,0
              -108.032732,26.61597,0
              -108.033148,26.616004,0
              -108.033562,26.616137,0
              -108.033877,26.616305,0
              -108.034215,26.616932,0
              -108.03448,26.617269,0
              -108.035572,26.618446,0
              -108.036343,26.61911,0
              -108.036831,26.619428,0
              -108.037462,26.619705,0
              -108.037947,26.619781,0
              -108.038535,26.61979,0
              -108.039266,26.619514,0
              -108.039718,26.619567,0
              -108.040238,26.619586,0
              -108.041059,26.619651,0
              -108.041728,26.619636,0
              -108.042595,26.619733,0
              -108.043348,26.619485,0
              -108.043883,26.619406,0
              -108.044745,26.619447,0
              -108.04515,26.619713,0
              -108.045291,26.620619,0
              -108.04527,26.621166,0
              -108.045424,26.62193,0
              -108.045305,26.622293,0
              -108.045109,26.623142,0
              -108.044985,26.623459,0
              -108.044772,26.623831,0
              -108.044605,26.624044,0
              -108.044519,26.624515,0
              -108.044533,26.624968,0
              -108.045336,26.625542,0
              -108.045778,26.626003,0
              -108.046215,26.626414,0
              -108.047507,26.626807,0
              -108.048144,26.626929,0
              -108.048797,26.627098,0
              -108.049177,26.627348,0
              -108.049561,26.627556,0
              -108.050136,26.627918,0
              -108.050443,26.628141,0
              -108.050665,26.628555,0
              -108.050862,26.628841,0
              -108.050985,26.629108,0
              -108.05121,26.629346,0
              -108.051582,26.629836,0
              -108.051935,26.629905,0
              -108.052217,26.629837,0
              -108.05257,26.629699,0
              -108.052844,26.629466,0
              -108.052965,26.629114,0
              -108.053131,26.628149,0
              -108.053272,26.627809,0
              -108.053573,26.627423,0
              -108.0539,26.627174,0
              -108.054965,26.627293,0
              -108.055316,26.627351,0
              -108.0557,26.627455,0
              -108.056069,26.627604,0
              -108.056511,26.627727,0
              -108.057085,26.627334,0
              -108.057475,26.627158,0
              -108.058206,26.626746,0
              -108.058671,26.626588,0
              -108.06037,26.626895,0
              -108.060918,26.626966,0
              -108.061256,26.627235,0
              -108.061662,26.627637,0
              -108.06194,26.627949,0
              -108.062221,26.628315,0
              -108.062483,26.628789,0
              -108.062511,26.629552,0
              -108.06261,26.629853,0
              -108.062764,26.630172,0
              -108.062991,26.630426,0
              -108.06351,26.630649,0
              -108.064142,26.630646,0
              -108.064582,26.630565,0
              -108.064835,26.630445,0
              -108.065424,26.630291,0
              -108.066253,26.630283,0
              -108.067009,26.630315,0
              -108.067393,26.630549,0
              -108.067729,26.630874,0
              -108.067931,26.631169,0
              -108.068138,26.63137,0
              -108.068421,26.631451,0
              -108.068817,26.631448,0
              -108.069148,26.631399,0
              -108.069482,26.631251,0
              -108.069795,26.630664,0
              -108.070492,26.629426,0
              -108.070681,26.628929,0
              -108.070807,26.628423,0
              -108.070971,26.627981,0
              -108.07117,26.627707,0
              -108.071312,26.627347,0
              -108.071497,26.627094,0
              -108.071724,26.626918,0
              -108.072053,26.626817,0
              -108.072696,26.627048,0
              -108.073068,26.627266,0
              -108.073673,26.627532,0
              -108.074558,26.627994,0
              -108.07506,26.628339,0
              -108.075449,26.628706,0
              -108.075675,26.628983,0
              -108.076014,26.629863,0
              -108.076065,26.630229,0
              -108.075975,26.630602,0
              -108.075389,26.631038,0
              -108.07503,26.63149,0
              -108.07485,26.631787,0
              -108.074384,26.632405,0
              -108.073989,26.633377,0
              -108.073835,26.63394,0
              -108.073826,26.634203,0
              -108.07392,26.634575,0
              -108.073924,26.634928,0
              -108.073998,26.635427,0
              -108.074103,26.635754,0
              -108.074282,26.636055,0
              -108.074427,26.636448,0
              -108.07474,26.636903,0
              -108.074939,26.637078,0
              -108.075384,26.637231,0
              -108.075927,26.63726,0
              -108.076404,26.637405,0
              -108.076714,26.637846,0
              -108.07684,26.638089,0
              -108.076852,26.638531,0
              -108.077005,26.638848,0
              -108.077342,26.639202,0
              -108.078132,26.639747,0
              -108.078574,26.640082,0
              -108.0792,26.640504,0
              -108.080392,26.641026,0
              -108.080769,26.641059,0
              -108.08094,26.641163,0
              -108.080941,26.641264,0
              -108.081495,26.64179,0
              -108.081603,26.641994,0
              -108.081285,26.642316,0
              -108.081212,26.642841,0
              -108.081021,26.6438,0
              -108.080651,26.644509,0
              -108.080347,26.644838,0
              -108.079662,26.645311,0
              -108.079004,26.645319,0
              -108.078735,26.645252,0
              -108.07842,26.645301,0
              -108.078226,26.645492,0
              -108.078058,26.645934,0
              -108.077927,26.646174,0
              -108.077561,26.645889,0
              -108.077117,26.645433,0
              -108.076738,26.645318,0
              -108.07615,26.645456,0
              -108.075578,26.645699,0
              -108.075301,26.645904,0
              -108.074646,26.646296,0
              -108.074541,26.646425,0
              -108.074452,26.646743,0
              -108.074187,26.647129,0
              -108.073708,26.646715,0
              -108.07354,26.646671,0
              -108.073033,26.646986,0
              -108.07279,26.647182,0
              -108.07259,26.647145,0
              -108.072401,26.646912,0
              -108.071984,26.646538,0
              -108.071914,26.646243,0
              -108.071625,26.646078,0
              -108.071298,26.64605,0
              -108.071151,26.646141,0
              -108.070939,26.646401,0
              -108.070821,26.646623,0
              -108.070734,26.647144,0
              -108.070583,26.647304,0
              -108.070302,26.647343,0
              -108.069601,26.647191,0
              -108.069302,26.647064,0
              -108.06864,26.64698,0
              -108.067938,26.646942,0
              -108.067283,26.646848,0
              -108.067056,26.646935,0
              -108.066842,26.647177,0
              -108.066769,26.647668,0
              -108.066668,26.647959,0
              -108.066432,26.648263,0
              -108.066043,26.648185,0
              -108.06582,26.648053,0
              -108.065413,26.647588,0
              -108.065203,26.647475,0
              -108.064824,26.647374,0
              -108.064646,26.647371,0
              -108.064388,26.64765,0
              -108.064363,26.64838,0
              -108.063882,26.648699,0
              -108.063584,26.648839,0
              -108.063413,26.649,0
              -108.063397,26.649167,0
              -108.063282,26.64943,0
              -108.063058,26.64956,0
              -108.062262,26.649706,0
              -108.061852,26.649818,0
              -108.061643,26.649919,0
              -108.061068,26.650269,0
              -108.060647,26.650677,0
              -108.060525,26.650877,0
              -108.06065,26.65096,0
              -108.060606,26.651191,0
              -108.060196,26.651574,0
              -108.059862,26.651658,0
              -108.059433,26.651647,0
              -108.059184,26.651442,0
              -108.05893,26.650862,0
              -108.058755,26.650732,0
              -108.058521,26.650746,0
              -108.058068,26.6509,0
              -108.058003,26.651063,0
              -108.057893,26.651108,0
              -108.057572,26.651528,0
              -108.057232,26.651733,0
              -108.056451,26.651812,0
              -108.056279,26.651895,0
              -108.056187,26.652026,0
              -108.05617,26.652967,0
              -108.055973,26.652993,0
              -108.05564,26.652859,0
              -108.055466,26.653081,0
              -108.055284,26.65347,0
              -108.055273,26.653713,0
              -108.055073,26.654447,0
              -108.055019,26.654754,0
              -108.055176,26.654962,0
              -108.056066,26.65534,0
              -108.056314,26.655585,0
              -108.056246,26.656011,0
              -108.056134,26.656261,0
              -108.055951,26.656468,0
              -108.055763,26.656502,0
              -108.055541,26.656462,0
              -108.055307,26.656494,0
              -108.054986,26.656749,0
              -108.054765,26.656826,0
              -108.054235,26.656634,0
              -108.054038,26.656512,0
              -108.053641,26.656385,0
              -108.053253,26.656306,0
              -108.052975,26.656379,0
              -108.05282,26.656525,0
              -108.052708,26.656951,0
              -108.052722,26.65731,0
              -108.053005,26.657673,0
              -108.053132,26.658049,0
              -108.053008,26.658319,0
              -108.052776,26.658593,0
              -108.052478,26.658743,0
              -108.052211,26.658773,0
              -108.051713,26.658688,0
              -108.051129,26.658651,0
              -108.05086,26.658715,0
              -108.050612,26.659377,0
              -108.050284,26.659634,0
              -108.050138,26.6596,0
              -108.049433,26.659166,0
              -108.049147,26.659257,0
              -108.048632,26.659509,0
              -108.047968,26.659341,0
              -108.047642,26.659404,0
              -108.047003,26.659774,0
              -108.046838,26.659741,0
              -108.046534,26.659795,0
              -108.046428,26.659887,0
              -108.046495,26.660508,0
              -108.046414,26.660875,0
              -108.046249,26.66111,0
              -108.045774,26.661354,0
              -108.045645,26.661461,0
              -108.045219,26.661555,0
              -108.044971,26.661652,0
              -108.045144,26.662187,0
              -108.045125,26.662551,0
              -108.044982,26.662764,0
              -108.044758,26.662795,0
              -108.044433,26.662757,0
              -108.04419,26.662808,0
              -108.043994,26.662791,0
              -108.04383,26.662899,0
              -108.043597,26.66295,0
              -108.043466,26.663078,0
              -108.043134,26.663232,0
              -108.04312,26.66347,0
              -108.043047,26.663674,0
              -108.043027,26.663965,0
              -108.042781,26.664166,0
              -108.042696,26.66449,0
              -108.042698,26.664706,0
              -108.042848,26.665615,0
              -108.042907,26.665813,0
              -108.042898,26.666509,0
              -108.042695,26.666758,0
              -108.042229,26.666716,0
              -108.041462,26.666919,0
              -108.040959,26.666923,0
              -108.04047,26.66678,0
              -108.040182,26.666532,0
              -108.039936,26.666387,0
              -108.039602,26.666252,0
              -108.039082,26.666299,0
              -108.038658,26.666388,0
              -108.038054,26.66674,0
              -108.036491,26.667559,0
              -108.035747,26.667464,0
              -108.035202,26.667867,0
              -108.034841,26.667911,0
              -108.034458,26.668155,0
              -108.033883,26.668164,0
              -108.033628,26.667862,0
              -108.03321,26.667727,0
              -108.03287,26.667672,0
              -108.032148,26.667749,0
              -108.031724,26.667981,0
              -108.031621,26.668285,0
              -108.031662,26.668821,0
              -108.031841,26.669086,0
              -108.031813,26.669327,0
              -108.030606,26.670513,0
              -108.030593,26.671017,0
              -108.030369,26.671518,0
              -108.030352,26.672212,0
              -108.03036,26.67313,0
              -108.030548,26.674018,0
              -108.030325,26.674262,0
              -108.029601,26.674027,0
              -108.029328,26.673705,0
              -108.028843,26.673443,0
              -108.02848,26.673527,0
              -108.02827,26.674217,0
              -108.027911,26.674679,0
              -108.027504,26.674984,0
              -108.027009,26.675073,0
              -108.026584,26.675232,0
              -108.026355,26.676274,0
              -108.026113,26.676632,0
              -108.026099,26.677145,0
              -108.025718,26.67779,0
              -108.025622,26.678114,0
              -108.025459,26.67836,0
              -108.025157,26.678552,0
              -108.024754,26.678467,0
              -108.024464,26.678338,0
              -108.024249,26.678308,0
              -108.02403,26.678464,0
              -108.023668,26.678585,0
              -108.023066,26.679268,0
              -108.022904,26.679851,0
              -108.022752,26.680156,0
              -108.022435,26.680173,0
              -108.021849,26.680346,0
              -108.021477,26.680538,0
              -108.021116,26.680847,0
              -108.020905,26.680948,0
              -108.020739,26.681356,0
              -108.020632,26.681859,0
              -108.02053,26.682193,0
              -108.020304,26.682469,0
              -108.020075,26.682884,0
              -108.019721,26.68327,0
              -108.019433,26.683544,0
              -108.019137,26.683716,0
              -108.018769,26.683839,0
              -108.018362,26.683858,0
              -108.017954,26.683962,0
              -108.017193,26.684366,0
              -108.016593,26.684634,0
              -108.016561,26.685207,0
              -108.016284,26.685447,0
              -108.015645,26.685676,0
              -108.015346,26.68573,0
              -108.014847,26.685691,0
              -108.014628,26.685715,0
              -108.014276,26.686044,0
              -108.014271,26.686212,0
              -108.01439,26.686439,0
              -108.014604,26.686611,0
              -108.014982,26.687144,0
              -108.014917,26.687593,0
              -108.014667,26.687766,0
              -108.014197,26.687749,0
              -108.013812,26.687695,0
              -108.013654,26.687787,0
              -108.013702,26.688,0
              -108.014001,26.688197,0
              -108.013762,26.688676,0
              -108.013314,26.688908,0
              -108.012795,26.68885,0
              -108.012504,26.688973,0
              -108.011747,26.689482,0
              -108.011578,26.689956,0
              -108.011324,26.691749,0
              -108.011795,26.692847,0
              -108.011539,26.693198,0
              -108.011716,26.693609,0
              -108.010977,26.694311,0
              -108.010344,26.695385,0
              -108.009978,26.696632,0
              -108.009284,26.697354,0
              -108.008876,26.698255,0
              -108.008777,26.698389,0
              -108.007897,26.69933,0
              -108.008023,26.700364,0
              -108.008364,26.700978,0
              -108.008969,26.701581,0
              -108.008875,26.702365,0
              -108.008548,26.703734,0
              -108.008095,26.704314,0
              -108.007866,26.70467,0
              -108.007484,26.70535,0
              -108.006785,26.705531,0
              -108.00706,26.706418,0
              -108.00731,26.707025,0
              -108.007648,26.708007,0
              -108.007553,26.708409,0
              -108.00681,26.71019,0
              -108.00702,26.712422,0
              -108.006958,26.713106,0
              -108.006795,26.713933,0
              -108.00671,26.714783,0
              -108.006779,26.715488,0
              -108.00695,26.716049,0
              -108.00713,26.716988,0
              -108.007541,26.718816,0
              -108.00788,26.719845,0
              -108.008122,26.721183,0
              -108.008802,26.723312,0
              -108.00929,26.723985,0
              -108.010851,26.72565,0
              -108.01253,26.726771,0
              -108.01499,26.727689,0
              -108.016378,26.728697,0
              -108.01866,26.72983,0
              -108.019231,26.730667,0
              -108.019114,26.731258,0
              -108.018812,26.731781,0
              -108.018247,26.732263,0
              -108.016614,26.734155,0
              -108.015242,26.737054,0
              -108.015115,26.738328,0
              -108.014616,26.740456,0
              -108.014525,26.744319,0
              -108.013722,26.750313,0
              -108.005701,26.761049,0
              -108.014264,26.773153,0
              -108.037649,26.769781,0
              -108.026821,26.798466,0
              -108.036831,26.810075,0
              -108.084557,26.861338,0
              -108.094107,26.870464,0
              -108.144247,26.867649,0
              -108.1396,26.895479,0
              -108.139955,26.896234,0
              -108.141128,26.896877,0
              -108.142001,26.897757,0
              -108.142097,26.898862,0
              -108.142305,26.90004,0
              -108.141753,26.902393,0
              -108.141494,26.903787,0
              -108.14154,26.904921,0
              -108.141517,26.905853,0
              -108.141721,26.90659,0
              -108.142226,26.9072,0
              -108.143102,26.907884,0
              -108.144203,26.908439,0
              -108.145382,26.908863,0
              -108.146496,26.908952,0
              -108.147548,26.908507,0
              -108.148315,26.90759,0
              -108.150351,26.9035,0
              -108.153174,26.897693,0
              -108.154015,26.896777,0
              -108.155003,26.895931,0
              -108.155913,26.895217,0
              -108.157482,26.894915,0
              -108.159866,26.894763,0
              -108.162237,26.895077,0
              -108.164231,26.89565,0
              -108.165861,26.895883,0
              -108.167052,26.89584,0
              -108.168558,26.895071,0
              -108.169702,26.893961,0
              -108.170917,26.892919,0
              -108.17175,26.892336,0
              -108.171775,26.891337,0
              -108.170972,26.887723,0
              -108.170943,26.885924,0
              -108.171439,26.883935,0
              -108.172516,26.88249,0
              -108.174549,26.881465,0
              -108.176705,26.881441,0
              -108.177584,26.8822,0
              -108.178708,26.884523,0
              -108.179224,26.887822,0
              -108.180208,26.890282,0
              -108.18087,26.893498,0
              -108.181096,26.896539,0
              -108.181729,26.898184,0
              -108.183916,26.899738,0
              -108.185669,26.899713,0
              -108.187079,26.897263,0
              -108.18825,26.896259,0
              -108.190081,26.895872,0
              -108.191734,26.897174,0
              -108.194195,26.898553,0
              -108.195835,26.900398,0
              -108.197667,26.902671,0
              -108.200546,26.903514,0
              -108.20236,26.903791,0
              -108.204228,26.905696,0
              -108.205898,26.906333,0
              -108.20739,26.906,0
              -108.207964,26.904621,0
              -108.207134,26.902731,0
              -108.206275,26.89927,0
              -108.20371,26.893901,0
              -108.20278,26.890619,0
              -108.203527,26.887672,0
              -108.206209,26.88555,0
              -108.209717,26.885438,0
              -108.212329,26.886154,0
              -108.214442,26.888009,0
              -108.216212,26.890038,0
              -108.217159,26.892655,0
              -108.218513,26.89522,0
              -108.220674,26.897801,0
              -108.223916,26.900343,0
              -108.226902,26.902336,0
              -108.229286,26.90473,0
              -108.229791,26.905202,0
              -108.230237,26.905725,0
              -108.230324,26.906456,0
              -108.229889,26.90778,0
              -108.228853,26.909395,0
              -108.228533,26.910312,0
              -108.228787,26.911913,0
              -108.22866,26.912826,0
              -108.227344,26.914398,0
              -108.227397,26.915171,0
              -108.227779,26.916292,0
              -108.227802,26.918028,0
              -108.227334,26.919372,0
              -108.226967,26.920121,0
              -108.22654,26.921296,0
              -108.226171,26.921529,0
              -108.225555,26.921717,0
              -108.22514,26.922091,0
              -108.22504,26.922518,0
              -108.225021,26.922877,0
              -108.225168,26.923413,0
              -108.2255,26.92403,0
              -108.225517,26.924376,0
              -108.225481,26.925569,0
              -108.225365,26.926286,0
              -108.225514,26.926809,0
              -108.225998,26.927932,0
              -108.226051,26.92901,0
              -108.226251,26.929534,0
              -108.22682,26.930051,0
              -108.227351,26.930305,0
              -108.228039,26.930574,0
              -108.228744,26.930519,0
              -108.229377,26.930621,0
              -108.230265,26.931445,0
              -108.230896,26.932384,0
              -108.231016,26.932805,0
              -108.230962,26.933221,0
              -108.230829,26.933753,0
              -108.230478,26.936047,0
              -108.230402,26.936404,0
              -108.230381,26.936717,0
              -108.23042,26.936964,0
              -108.230207,26.937181,0
              -108.229016,26.938015,0
              -108.228775,26.938567,0
              -108.228894,26.939138,0
              -108.229581,26.939801,0
              -108.230416,26.9402,0
              -108.231041,26.94031,0
              -108.231393,26.940708,0
              -108.231046,26.941024,0
              -108.230637,26.941192,0
              -108.229943,26.941319,0
              -108.229339,26.941454,0
              -108.229355,26.94236,0
              -108.229255,26.942665,0
              -108.229399,26.942885,0
              -108.229886,26.942847,0
              -108.230304,26.942757,0
              -108.230729,26.943004,0
              -108.231029,26.943477,0
              -108.231029,26.943836,0
              -108.230945,26.944197,0
              -108.230845,26.94495,0
              -108.230739,26.945566,0
              -108.230485,26.945974,0
              -108.230537,26.947214,0
              -108.230507,26.947965,0
              -108.230748,26.948197,0
              -108.230892,26.948578,0
              -108.231304,26.948959,0
              -108.231749,26.949931,0
              -108.232126,26.950511,0
              -108.232639,26.950801,0
              -108.233566,26.951533,0
              -108.234115,26.95214,0
              -108.234628,26.953112,0
              -108.235148,26.953148,0
              -108.235493,26.953472,0
              -108.235379,26.953721,0
              -108.234979,26.953966,0
              -108.235064,26.954112,0
              -108.23501,26.954373,0
              -108.23505,26.95475,0
              -108.235129,26.954996,0
              -108.235076,26.955277,0
              -108.235097,26.955715,0
              -108.23521,26.956398,0
              -108.235141,26.957045,0
              -108.23479,26.957612,0
              -108.234841,26.958141,0
              -108.235016,26.95862,0
              -108.234713,26.95888,0
              -108.234199,26.958979,0
              -108.234038,26.95919,0
              -108.233645,26.959333,0
              -108.233462,26.959993,0
              -108.233289,26.960243,0
              -108.233,26.96019,0
              -108.232822,26.960338,0
              -108.232535,26.960324,0
              -108.232469,26.960723,0
              -108.232056,26.961084,0
              -108.231533,26.960941,0
              -108.231008,26.960961,0
              -108.230692,26.961016,0
              -108.230493,26.961198,0
              -108.230396,26.961722,0
              -108.230317,26.96186,0
              -108.229998,26.961943,0
              -108.229827,26.962104,0
              -108.229591,26.962126,0
              -108.229358,26.96236,0
              -108.229029,26.962362,0
              -108.228655,26.962295,0
              -108.228385,26.962357,0
              -108.228079,26.962501,0
              -108.227648,26.962781,0
              -108.227024,26.963336,0
              -108.226723,26.963274,0
              -108.226438,26.963368,0
              -108.2263,26.963644,0
              -108.226013,26.963734,0
              -108.225835,26.963662,0
              -108.225686,26.96372,0
              -108.225434,26.963683,0
              -108.224917,26.963463,0
              -108.224622,26.963641,0
              -108.224186,26.963662,0
              -108.2241,26.963754,0
              -108.224094,26.964012,0
              -108.22397,26.964077,0
              -108.223728,26.963866,0
              -108.223015,26.963826,0
              -108.222959,26.964063,0
              -108.222816,26.964196,0
              -108.22232,26.96412,0
              -108.222154,26.964444,0
              -108.222008,26.964538,0
              -108.221749,26.964501,0
              -108.220981,26.964565,0
              -108.220659,26.964611,0
              -108.220352,26.964839,0
              -108.22026,26.96466,0
              -108.219815,26.964678,0
              -108.2197,26.964788,0
              -108.219109,26.964749,0
              -108.218374,26.964787,0
              -108.218285,26.965079,0
              -108.218215,26.965527,0
              -108.218151,26.965703,0
              -108.218312,26.966142,0
              -108.218505,26.966566,0
              -108.218497,26.966973,0
              -108.21816,26.967392,0
              -108.218247,26.967636,0
              -108.218794,26.968343,0
              -108.218929,26.968845,0
              -108.218963,26.969621,0
              -108.218724,26.970069,0
              -108.21858,26.970462,0
              -108.218637,26.970869,0
              -108.218958,26.971675,0
              -108.218975,26.971904,0
              -108.218779,26.971996,0
              -108.218353,26.97185,0
              -108.218331,26.971526,0
              -108.218169,26.971156,0
              -108.217943,26.971008,0
              -108.216965,26.970873,0
              -108.216603,26.970715,0
              -108.216028,26.970397,0
              -108.215329,26.970399,0
              -108.215598,26.970939,0
              -108.215823,26.971,0
              -108.21609,26.971484,0
              -108.215926,26.971902,0
              -108.21598,26.972107,0
              -108.215918,26.972421,0
              -108.215734,26.972625,0
              -108.215789,26.972825,0
              -108.216071,26.97304,0
              -108.216316,26.973308,0
              -108.216387,26.973571,0
              -108.216275,26.973683,0
              -108.215116,26.974093,0
              -108.215081,26.974889,0
              -108.21526,26.97578,0
              -108.21555,26.975946,0
              -108.216227,26.976562,0
              -108.216292,26.977041,0
              -108.216091,26.977446,0
              -108.215828,26.977683,0
              -108.215152,26.97748,0
              -108.214527,26.977323,0
              -108.213834,26.977312,0
              -108.213244,26.977469,0
              -108.212825,26.977838,0
              -108.212414,26.977999,0
              -108.211315,26.977757,0
              -108.210691,26.97812,0
              -108.210669,26.978445,0
              -108.210819,26.978893,0
              -108.210872,26.979561,0
              -108.21102,26.979977,0
              -108.210851,26.980382,0
              -108.210251,26.980528,0
              -108.20951,26.980521,0
              -108.209316,26.980388,0
              -108.209052,26.980457,0
              -108.208924,26.980816,0
              -108.208965,26.981292,0
              -108.208927,26.98163,0
              -108.208683,26.981862,0
              -108.208335,26.982123,0
              -108.2078,26.982976,0
              -108.207378,26.983111,0
              -108.207057,26.983068,0
              -108.206854,26.982901,0
              -108.20683,26.982574,0
              -108.206982,26.98217,0
              -108.207682,26.981815,0
              -108.207937,26.98145,0
              -108.207972,26.981065,0
              -108.207778,26.980919,0
              -108.207424,26.980842,0
              -108.20721,26.98092,0
              -108.206645,26.980991,0
              -108.20607,26.98102,0
              -108.205452,26.980785,0
              -108.204712,26.980293,0
              -108.204565,26.980366,0
              -108.204368,26.980693,0
              -108.204343,26.980947,0
              -108.204183,26.981132,0
              -108.203883,26.981159,0
              -108.203515,26.981021,0
              -108.203225,26.981051,0
              -108.203064,26.981222,0
              -108.203181,26.981599,0
              -108.203392,26.982022,0
              -108.203073,26.982387,0
              -108.20249,26.982467,0
              -108.202369,26.982623,0
              -108.201958,26.982934,0
              -108.201269,26.983025,0
              -108.200475,26.982232,0
              -108.20017,26.982146,0
              -108.199816,26.981988,0
              -108.199672,26.981651,0
              -108.199439,26.981359,0
              -108.198792,26.980927,0
              -108.198295,26.980918,0
              -108.197962,26.981167,0
              -108.197577,26.981182,0
              -108.196907,26.981124,0
              -108.196937,26.9815,0
              -108.197175,26.982559,0
              -108.197308,26.983602,0
              -108.19705,26.983795,0
              -108.196273,26.983692,0
              -108.194592,26.983558,0
              -108.19413,26.984237,0
              -108.193747,26.984393,0
              -108.193399,26.984614,0
              -108.192854,26.984911,0
              -108.191937,26.984933,0
              -108.191692,26.985123,0
              -108.191351,26.985638,0
              -108.190853,26.985838,0
              -108.190147,26.985489,0
              -108.189729,26.985593,0
              -108.189768,26.986247,0
              -108.189759,26.986673,0
              -108.189582,26.986794,0
              -108.188923,26.98662,0
              -108.188454,26.986454,0
              -108.188195,26.986235,0
              -108.187893,26.986361,0
              -108.187869,26.986914,0
              -108.187721,26.987402,0
              -108.188224,26.987551,0
              -108.188506,26.987724,0
              -108.188616,26.987966,0
              -108.188496,26.988884,0
              -108.188224,26.989506,0
              -108.187392,26.990707,0
              -108.186868,26.991148,0
              -108.186286,26.991522,0
              -108.186135,26.991747,0
              -108.186347,26.992547,0
              -108.186403,26.992964,0
              -108.186277,26.993114,0
              -108.185879,26.993299,0
              -108.185622,26.99334,0
              -108.185492,26.993125,0
              -108.185031,26.992873,0
              -108.184042,26.992861,0
              -108.18328,26.99311,0
              -108.182449,26.993021,0
              -108.182345,26.993174,0
              -108.182142,26.993253,0
              -108.181695,26.993705,0
              -108.181524,26.99411,0
              -108.181664,26.994375,0
              -108.181964,26.994499,0
              -108.182199,26.99476,0
              -108.18259,26.994951,0
              -108.183083,26.995117,0
              -108.183426,26.995147,0
              -108.183624,26.99531,0
              -108.183444,26.995851,0
              -108.183255,26.996024,0
              -108.181933,26.996581,0
              -108.181825,26.996999,0
              -108.181848,26.997481,0
              -108.181616,26.997996,0
              -108.181936,26.998237,0
              -108.182224,26.998628,0
              -108.182105,26.999093,0
              -108.181894,26.99946,0
              -108.180352,26.99978,0
              -108.180283,27.000161,0
              -108.180819,27.000414,0
              -108.181303,27.000786,0
              -108.181499,27.001235,0
              -108.181391,27.001646,0
              -108.181242,27.001975,0
              -108.181433,27.002078,0
              -108.181556,27.002277,0
              -108.181543,27.003196,0
              -108.181889,27.003398,0
              -108.182509,27.004137,0
              -108.182584,27.004504,0
              -108.182784,27.004548,0
              -108.183139,27.005015,0
              -108.18295,27.005203,0
              -108.182902,27.005404,0
              -108.182971,27.005637,0
              -108.183478,27.006217,0
              -108.183919,27.006682,0
              -108.183882,27.006875,0
              -108.183975,27.007002,0
              -108.184031,27.007331,0
              -108.183827,27.007699,0
              -108.184,27.007887,0
              -108.183784,27.00835,0
              -108.18373,27.008728,0
              -108.183544,27.00886,0
              -108.183597,27.009064,0
              -108.18382,27.009251,0
              -108.184235,27.009311,0
              -108.184303,27.009095,0
              -108.184652,27.009073,0
              -108.185106,27.00917,0
              -108.185605,27.009238,0
              -108.186203,27.009509,0
              -108.186225,27.009655,0
              -108.187284,27.01027,0
              -108.187349,27.010675,0
              -108.187489,27.010985,0
              -108.187477,27.011154,0
              -108.187249,27.011322,0
              -108.18688,27.011532,0
              -108.186754,27.011778,0
              -108.186754,27.012166,0
              -108.187102,27.012491,0
              -108.187359,27.012831,0
              -108.187146,27.013008,0
              -108.187336,27.013438,0
              -108.187967,27.01356,0
              -108.18845,27.013766,0
              -108.189073,27.014119,0
              -108.189481,27.014539,0
              -108.18953,27.015549,0
              -108.190004,27.015889,0
              -108.190017,27.016072,0
              -108.189779,27.016279,0
              -108.189706,27.016637,0
              -108.189869,27.016947,0
              -108.189805,27.017158,0
              -108.189711,27.01778,0
              -108.189978,27.018097,0
              -108.189835,27.018596,0
              -108.190015,27.019147,0
              -108.190267,27.01952,0
              -108.190161,27.019741,0
              -108.190513,27.019907,0
              -108.190781,27.020519,0
              -108.190959,27.020642,0
              -108.191321,27.020971,0
              -108.191755,27.020937,0
              -108.19208,27.021015,0
              -108.192241,27.021331,0
              -108.192731,27.021393,0
              -108.193073,27.021916,0
              -108.192545,27.022467,0
              -108.192876,27.02255,0
              -108.193076,27.022507,0
              -108.193401,27.022313,0
              -108.193596,27.022242,0
              -108.193701,27.022422,0
              -108.193682,27.022726,0
              -108.193985,27.023012,0
              -108.194435,27.024238,0
              -108.194815,27.025529,0
              -108.194808,27.02589,0
              -108.194894,27.026114,0
              -108.194862,27.026227,0
              -108.19467,27.026301,0
              -108.194409,27.026229,0
              -108.194212,27.026111,0
              -108.193707,27.025978,0
              -108.193608,27.025732,0
              -108.193472,27.025667,0
              -108.193391,27.025451,0
              -108.193235,27.025323,0
              -108.192904,27.025336,0
              -108.19254,27.025514,0
              -108.192126,27.025631,0
              -108.191819,27.025892,0
              -108.192048,27.026169,0
              -108.192362,27.026625,0
              -108.192628,27.026912,0
              -108.192799,27.02702,0
              -108.192888,27.027174,0
              -108.193083,27.027287,0
              -108.193127,27.027423,0
              -108.193317,27.027575,0
              -108.193296,27.027974,0
              -108.193376,27.02819,0
              -108.193517,27.028381,0
              -108.193695,27.028364,0
              -108.193849,27.028651,0
              -108.194452,27.028926,0
              -108.194468,27.029097,0
              -108.194566,27.029257,0
              -108.194518,27.029795,0
              -108.194601,27.030212,0
              -108.194546,27.030448,0
              -108.194647,27.030701,0
              -108.194597,27.030977,0
              -108.194437,27.031109,0
              -108.194353,27.03134,0
              -108.194274,27.031953,0
              -108.195069,27.032704,0
              -108.195468,27.032803,0
              -108.195826,27.032954,0
              -108.196122,27.033148,0
              -108.196602,27.033334,0
              -108.196878,27.033561,0
              -108.197149,27.033663,0
              -108.19735,27.033926,0
              -108.197697,27.03471,0
              -108.198766,27.035194,0
              -108.199486,27.035172,0
              -108.200269,27.034222,0
              -108.200452,27.033296,0
              -108.200643,27.032047,0
              -108.201097,27.031484,0
              -108.201872,27.030856,0
              -108.202836,27.03066,0
              -108.203594,27.030747,0
              -108.204406,27.031836,0
              -108.205427,27.032572,0
              -108.206502,27.032772,0
              -108.207672,27.03233,0
              -108.209548,27.032294,0
              -108.210286,27.033699,0
              -108.211143,27.03426,0
              -108.211566,27.034449,0
              -108.212549,27.034227,0
              -108.21332,27.033571,0
              -108.213836,27.032787,0
              -108.214162,27.032027,0
              -108.214546,27.030821,0
              -108.214721,27.030216,0
              -108.215894,27.029667,0
              -108.217376,27.029517,0
              -108.218461,27.029324,0
              -108.219466,27.029094,0
              -108.220003,27.028389,0
              -108.221138,27.027732,0
              -108.222699,27.027691,0
              -108.22393,27.028001,0
              -108.225854,27.027221,0
              -108.226805,27.027562,0
              -108.227361,27.027716,0
              -108.227705,27.028367,0
              -108.228327,27.029059,0
              -108.2297,27.030123,0
              -108.23108,27.030937,0
              -108.232143,27.031602,0
              -108.232989,27.032942,0
              -108.234073,27.034394,0
              -108.234978,27.034985,0
              -108.236045,27.035506,0
              -108.236346,27.036263,0
              -108.236523,27.037197,0
              -108.2373,27.038142,0
              -108.23832,27.038914,0
              -108.23927,27.039326,0
              -108.240122,27.040104,0
              -108.240375,27.040627,0
              -108.240801,27.041313,0
              -108.241219,27.041846,0
              -108.242326,27.042306,0
              -108.242941,27.042048,0
              -108.243238,27.041451,0
              -108.243643,27.040909,0
              -108.244672,27.039861,0
              -108.246167,27.038811,0
              -108.246591,27.038841,0
              -108.247408,27.039081,0
              -108.248543,27.039616,0
              -108.249472,27.040254,0
              -108.249854,27.040771,0
              -108.250448,27.041031,0
              -108.25087,27.040912,0
              -108.251069,27.040385,0
              -108.251431,27.039944,0
              -108.252277,27.03945,0
              -108.253817,27.038683,0
              -108.254434,27.037634,0
              -108.254901,27.037207,0
              -108.255669,27.036577,0
              -108.256622,27.036164,0
              -108.257309,27.035717,0
              -108.258095,27.035568,0
              -108.258586,27.035269,0
              -108.258661,27.034847,0
              -108.258576,27.034488,0
              -108.258244,27.03396,0
              -108.258189,27.03371,0
              -108.258437,27.033563,0
              -108.258999,27.033744,0
              -108.259832,27.033896,0
              -108.260368,27.033591,0
              -108.260855,27.033129,0
              -108.260988,27.032199,0
              -108.260843,27.03149,0
              -108.260535,27.030517,0
              -108.260443,27.030048,0
              -108.260463,27.029325,0
              -108.260794,27.028988,0
              -108.261232,27.028846,0
              -108.261797,27.02931,0
              -108.262194,27.029441,0
              -108.262633,27.029353,0
              -108.263028,27.028949,0
              -108.263037,27.028525,0
              -108.26287,27.028158,0
              -108.262325,27.027591,0
              -108.262931,27.026756,0
              -108.263175,27.026648,0
              -108.263789,27.026776,0
              -108.264256,27.026775,0
              -108.264764,27.026354,0
              -108.265521,27.025878,0
              -108.265853,27.025896,0
              -108.266552,27.026343,0
              -108.266737,27.026361,0
              -108.268312,27.025521,0
              -108.269522,27.025321,0
              -108.269879,27.025121,0
              -108.270291,27.024739,0
              -108.270389,27.024314,0
              -108.27022,27.023683,0
              -108.270724,27.023315,0
              -108.271141,27.023183,0
              -108.271718,27.023202,0
              -108.272294,27.022948,0
              -108.272815,27.02278,0
              -108.27313,27.022494,0
              -108.272928,27.021733,0
              -108.273081,27.021253,0
              -108.273502,27.020952,0
              -108.273586,27.020415,0
              -108.274009,27.0197,0
              -108.27373,27.019195,0
              -108.273953,27.018898,0
              -108.274559,27.018814,0
              -108.274749,27.018199,0
              -108.275584,27.017605,0
              -108.276341,27.017484,0
              -108.276706,27.017105,0
              -108.27671,27.016686,0
              -108.277198,27.016355,0
              -108.2778,27.016138,0
              -108.278477,27.01624,0
              -108.278798,27.016163,0
              -108.279116,27.015806,0
              -108.279904,27.015074,0
              -108.2807,27.014777,0
              -108.281036,27.014414,0
              -108.281323,27.013856,0
              -108.281262,27.013576,0
              -108.281605,27.013166,0
              -108.282187,27.013161,0
              -108.282832,27.013093,0
              -108.283632,27.01285,0
              -108.284217,27.012466,0
              -108.28523,27.012666,0
              -108.28601,27.012471,0
              -108.287128,27.013072,0
              -108.28803,27.01335,0
              -108.288998,27.013594,0
              -108.289796,27.014466,0
              -108.290639,27.01463,0
              -108.290932,27.01483,0
              -108.290948,27.015803,0
              -108.29039,27.016338,0
              -108.290207,27.016717,0
              -108.290811,27.017371,0
              -108.290671,27.017857,0
              -108.290261,27.018313,0
              -108.290234,27.018549,0
              -108.290295,27.018813,0
              -108.290111,27.019417,0
              -108.290104,27.01959,0
              -108.289962,27.019675,0
              -108.290055,27.019974,0
              -108.289758,27.020103,0
              -108.28931,27.020746,0
              -108.289394,27.021767,0
              -108.289538,27.022373,0
              -108.289173,27.0243,0
              -108.288914,27.02658,0
              -108.290095,27.026203,0
              -108.290855,27.025544,0
              -108.293137,27.025377,0
              -108.294082,27.02554,0
              -108.294634,27.025868,0
              -108.294844,27.026126,0
              -108.294897,27.026737,0
              -108.295029,27.027254,0
              -108.297526,27.029836,0
              -108.298235,27.030258,0
              -108.299287,27.032207,0
              -108.301624,27.033262,0
              -108.303388,27.03662,0
              -108.304777,27.035585,0
              -108.305669,27.035255,0
              -108.307426,27.034853,0
              -108.31013,27.035484,0
              -108.315639,27.034231,0
              -108.316558,27.034488,0
              -108.317476,27.034111,0
              -108.31813,27.032865,0
              -108.318285,27.031267,0
              -108.318677,27.030679,0
              -108.319858,27.030348,0
              -108.320775,27.029736,0
              -108.321823,27.02863,0
              -108.322714,27.027665,0
              -108.323051,27.025526,0
              -108.323443,27.024774,0
              -108.324098,27.02388,0
              -108.324515,27.02254,0
              -108.325354,27.021622,0
              -108.325981,27.020493,0
              -108.325742,27.018707,0
              -108.325242,27.017557,0
              -108.324716,27.016782,0
              -108.323718,27.016219,0
              -108.322614,27.015281,0
              -108.322245,27.014459,0
              -108.322398,27.011756,0
              -108.322026,27.008937,0
              -108.323127,27.008512,0
              -108.323729,27.007336,0
              -108.324907,27.006206,0
              -108.325773,27.006299,0
              -108.326483,27.006792,0
              -108.327612,27.00773,0
              -108.328215,27.007565,0
              -108.328728,27.006772,0
              -108.32997,27.005612,0
              -108.33212,27.004739,0
              -108.333326,27.004596,0
              -108.33391,27.004671,0
              -108.335,27.005237,0
              -108.33568,27.006179,0
              -108.336805,27.007545,0
              -108.338534,27.00896,0
              -108.338952,27.009619,0
              -108.339372,27.009996,0
              -108.339554,27.010467,0
              -108.339656,27.011525,0
              -108.340153,27.012396,0
              -108.340991,27.01367,0
              -108.342348,27.014867,0
              -108.343988,27.015406,0
              -108.344823,27.016034,0
              -108.345562,27.016724,0
              -108.346612,27.017294,0
              -108.347647,27.01836,0
              -108.349869,27.022339,0
              -108.35011,27.022554,0
              -108.371637,27.023012,0
              -108.40964,27.013405,0
              -108.409831,27.014227,0
              -108.409652,27.014993,0
              -108.409928,27.016075,0
              -108.411143,27.017781,0
              -108.412577,27.019167,0
              -108.413727,27.020158,0
              -108.414889,27.020712,0
              -108.415509,27.020768,0
              -108.416359,27.020554,0
              -108.416712,27.020068,0
              -108.418055,27.020171,0
              -108.419451,27.020483,0
              -108.422013,27.021543,0
              -108.423402,27.022286,0
              -108.424268,27.023099,0
              -108.425243,27.023955,0
              -108.426558,27.02445,0
              -108.428277,27.024921,0
              -108.430878,27.025559,0
              -108.432126,27.02608,0
              -108.43353,27.026466,0
              -108.434601,27.026337,0
              -108.435734,27.026258,0
              -108.437177,27.026663,0
              -108.439062,27.027604,0
              -108.440226,27.028263,0
              -108.440882,27.028413,0
              -108.441458,27.028608,0
              -108.442285,27.029151,0
              -108.443102,27.029498,0
              -108.444678,27.029328,0
              -108.445294,27.029388,0
              -108.445747,27.029224,0
              -108.446909,27.029227,0
              -108.448067,27.02918,0
              -108.448469,27.029061,0
              -108.449848,27.028344,0
              -108.450789,27.028023,0
              -108.451158,27.02813,0
              -108.451892,27.028188,0
              -108.453085,27.027157,0
              -108.453654,27.026971,0
              -108.454382,27.026956,0
              -108.454791,27.027036,0
              -108.455955,27.027648,0
              -108.456803,27.028338,0
              -108.457783,27.028945,0
              -108.458274,27.029667,0
              -108.458377,27.030645,0
              -108.458409,27.032273,0
              -108.458811,27.033487,0
              -108.458953,27.03462,0
              -108.459381,27.035209,0
              -108.46183,27.037339,0
              -108.462334,27.037999,0
              -108.462899,27.038851,0
              -108.46359,27.038962,0
              -108.463808,27.039296,0
              -108.46398,27.039887,0
              -108.464309,27.0401,0
              -108.465506,27.039914,0
              -108.466947,27.038722,0
              -108.467269,27.038285,0
              -108.467681,27.037341,0
              -108.468371,27.036821,0
              -108.468945,27.036217,0
              -108.469529,27.035874,0
              -108.470221,27.034499,0
              -108.470395,27.034218,0
              -108.47011,27.033023,0
              -108.469942,27.031283,0
              -108.470427,27.030748,0
              -108.471313,27.030495,0
              -108.471939,27.030599,0
              -108.472399,27.031345,0
              -108.472933,27.032755,0
              -108.473626,27.035417,0
              -108.473993,27.036983,0
              -108.474365,27.037814,0
              -108.475011,27.038784,0
              -108.475514,27.039945,0
              -108.475852,27.039995,0
              -108.476284,27.039955,0
              -108.47653,27.039616,0
              -108.476584,27.039248,0
              -108.476739,27.039132,0
              -108.47735,27.038815,0
              -108.47751,27.038792,0
              -108.478177,27.038923,0
              -108.478288,27.038903,0
              -108.478496,27.039037,0
              -108.47894,27.039152,0
              -108.479608,27.039582,0
              -108.479974,27.039588,0
              -108.480421,27.039333,0
              -108.480724,27.038696,0
              -108.480964,27.03853,0
              -108.481021,27.038335,0
              -108.481201,27.038273,0
              -108.48172,27.038007,0
              -108.48293,27.037903,0
              -108.484163,27.037494,0
              -108.48544,27.037616,0
              -108.485762,27.037502,0
              -108.48615,27.037155,0
              -108.486763,27.036651,0
              -108.487389,27.035932,0
              -108.487642,27.035693,0
              -108.487782,27.035663,0
              -108.487728,27.035522,0
              -108.487836,27.035343,0
              -108.487824,27.035214,0
              -108.487985,27.034521,0
              -108.487973,27.034281,0
              -108.487472,27.033704,0
              -108.486997,27.03308,0
              -108.486933,27.032697,0
              -108.487035,27.032531,0
              -108.487496,27.032406,0
              -108.488495,27.032286,0
              -108.489482,27.032204,0
              -108.490071,27.032134,0
              -108.490459,27.03204,0
              -108.490796,27.031916,0
              -108.491381,27.031542,0
              -108.491476,27.031382,0
              -108.491735,27.03138,0
              -108.491704,27.031053,0
              -108.491512,27.030872,0
              -108.490936,27.030614,0
              -108.489734,27.030376,0
              -108.488112,27.03,0
              -108.486847,27.029547,0
              -108.485993,27.028827,0
              -108.485377,27.027834,0
              -108.485129,27.027069,0
              -108.484907,27.02562,0
              -108.484887,27.024971,0
              -108.484762,27.024297,0
              -108.48441,27.023189,0
              -108.48399,27.022524,0
              -108.483675,27.021476,0
              -108.483507,27.021154,0
              -108.483414,27.020085,0
              -108.483545,27.01897,0
              -108.483637,27.018513,0
              -108.484172,27.017439,0
              -108.484578,27.017105,0
              -108.485305,27.016561,0
              -108.485333,27.016421,0
              -108.485476,27.016354,0
              -108.485604,27.01619,0
              -108.485936,27.016114,0
              -108.486671,27.01562,0
              -108.486975,27.015345,0
              -108.48734,27.015377,0
              -108.48753,27.015492,0
              -108.487947,27.015982,0
              -108.488171,27.016185,0
              -108.488439,27.016262,0
              -108.488809,27.016279,0
              -108.489449,27.016115,0
              -108.48982,27.015911,0
              -108.490201,27.015847,0
              -108.490598,27.015671,0
              -108.491511,27.015221,0
              -108.491846,27.015094,0
              -108.492207,27.015031,0
              -108.492556,27.015065,0
              -108.493054,27.015012,0
              -108.493563,27.014914,0
              -108.494317,27.014266,0
              -108.495164,27.013742,0
              -108.495473,27.013479,0
              -108.496138,27.013423,0
              -108.496544,27.013548,0
              -108.496931,27.013608,0
              -108.4973,27.013409,0
              -108.497562,27.012644,0
              -108.497725,27.011817,0
              -108.497677,27.011052,0
              -108.497794,27.010423,0
              -108.498059,27.010179,0
              -108.498513,27.009993,0
              -108.499005,27.009939,0
              -108.499477,27.009612,0
              -108.499804,27.009483,0
              -108.499897,27.009316,0
              -108.500161,27.009315,0
              -108.500388,27.009233,0
              -108.500761,27.009232,0
              -108.501117,27.00889,0
              -108.501379,27.00872,0
              -108.501572,27.008398,0
              -108.501596,27.008053,0
              -108.501382,27.00758,0
              -108.500839,27.006838,0
              -108.500652,27.006512,0
              -108.500475,27.005841,0
              -108.500451,27.00536,0
              -108.500645,27.00483,0
              -108.500868,27.004437,0
              -108.501188,27.004374,0
              -108.501404,27.004215,0
              -108.501641,27.004116,0
              -108.501814,27.003959,0
              -108.502199,27.004071,0
              -108.502625,27.004494,0
              -108.503073,27.005007,0
              -108.503196,27.005471,0
              -108.503418,27.005661,0
              -108.503562,27.006146,0
              -108.503711,27.006757,0
              -108.503691,27.006923,0
              -108.503776,27.007045,0
              -108.504115,27.007217,0
              -108.504439,27.007184,0
              -108.504517,27.006965,0
              -108.504289,27.006793,0
              -108.504242,27.006531,0
              -108.504365,27.006474,0
              -108.504388,27.006211,0
              -108.504875,27.006001,0
              -108.505072,27.005774,0
              -108.505065,27.005504,0
              -108.504807,27.005065,0
              -108.5046,27.004561,0
              -108.504734,27.00425,0
              -108.505043,27.003981,0
              -108.505203,27.003901,0
              -108.505247,27.003781,0
              -108.505548,27.003606,0
              -108.505983,27.003494,0
              -108.506124,27.0032,0
              -108.50626,27.00308,0
              -108.506251,27.002903,0
              -108.505925,27.002624,0
              -108.505267,27.002404,0
              -108.504785,27.002411,0
              -108.504486,27.002338,0
              -108.50433,27.001945,0
              -108.504331,27.001042,0
              -108.504157,27.000492,0
              -108.503926,27.000043,0
              -108.503484,26.999381,0
              -108.503364,26.999252,0
              -108.503188,26.998883,0
              -108.50304,26.998722,0
              -108.502989,26.998513,0
              -108.503031,26.998119,0
              -108.502913,26.99801,0
              -108.502951,26.997878,0
              -108.502873,26.997779,0
              -108.502551,26.996977,0
              -108.502363,26.996726,0
              -108.50219,26.996672,0
              -108.501761,26.996661,0
              -108.501853,26.996281,0
              -108.503175,26.994611,0
              -108.50375,26.993855,0
              -108.504072,26.992907,0
              -108.50419,26.992433,0
              -108.50384,26.991613,0
              -108.503859,26.991314,0
              -108.503287,26.990651,0
              -108.503113,26.990246,0
              -108.50305,26.989932,0
              -108.502936,26.989646,0
              -108.502703,26.988908,0
              -108.502474,26.987784,0
              -108.502486,26.987357,0
              -108.499542,26.986279,0
              -108.49746,26.986001,0
              -108.429823,26.976972,0
              -108.424271,26.97623,0
              -108.428899,26.975631,0
              -108.466978,26.970702,0
              -108.492802,26.925352,0
              -108.517725,26.881549,0
              -108.518212,26.881585,0
              -108.518247,26.881438,0
              -108.517999,26.881131,0
              -108.518018,26.88087,0
              -108.517964,26.880599,0
              -108.518086,26.880362,0
              -108.518337,26.880194,0
              -108.518364,26.880088,0
              -108.518591,26.879845,0
              -108.518772,26.879715,0
              -108.519157,26.879542,0
              -108.519311,26.879341,0
              -108.519304,26.879134,0
              -108.519423,26.879008,0
              -108.519827,26.879075,0
              -108.519924,26.87916,0
              -108.519986,26.879395,0
              -108.519795,26.879597,0
              -108.519324,26.879637,0
              -108.519235,26.879782,0
              -108.520021,26.880194,0
              -108.520044,26.880233,0
              -108.522058,26.879678,0
              -108.533118,26.844394,0
              -108.53402,26.844155,0
              -108.534145,26.843619,0
              -108.534261,26.843246,0
              -108.534423,26.842949,0
              -108.534523,26.842235,0
              -108.534685,26.841862,0
              -108.53471,26.841708,0
              -108.534845,26.841459,0
              -108.535056,26.841202,0
              -108.53513,26.840975,0
              -108.535329,26.8409,0
              -108.535358,26.840774,0
              -108.535936,26.84037,0
              -108.536164,26.840185,0
              -108.536223,26.840016,0
              -108.536482,26.839779,0
              -108.53725,26.839373,0
              -108.537384,26.83915,0
              -108.537493,26.839098,0
              -108.537607,26.838822,0
              -108.537726,26.838749,0
              -108.537612,26.838115,0
              -108.537841,26.838056,0
              -108.538075,26.837897,0
              -108.538153,26.837775,0
              -108.538391,26.837765,0
              -108.538476,26.837696,0
              -108.538989,26.836916,0
              -108.5392,26.83673,0
              -108.539558,26.836495,0
              -108.540351,26.836075,0
              -108.540723,26.835963,0
              -108.541261,26.836001,0
              -108.541544,26.836047,0
              -108.541967,26.835973,0
              -108.542146,26.835839,0
              -108.54236,26.835308,0
              -108.542224,26.83463,0
              -108.542127,26.834578,0
              -108.542172,26.83432,0
              -108.542514,26.834211,0
              -108.542951,26.833897,0
              -108.543201,26.833674,0
              -108.54345,26.833659,0
              -108.543696,26.833433,0
              -108.543879,26.833103,0
              -108.544115,26.832931,0
              -108.544679,26.832752,0
              -108.545744,26.832021,0
              -108.545752,26.831334,0
              -108.545708,26.831081,0
              -108.545756,26.83071,0
              -108.545651,26.83052,0
              -108.54563,26.830201,0
              -108.545703,26.830038,0
              -108.545682,26.829802,0
              -108.547043,26.828557,0
              -108.550023,26.828109,0
              -108.551189,26.827701,0
              -108.553058,26.827123,0
              -108.55405,26.826713,0
              -108.554804,26.826327,0
              -108.555607,26.825606,0
              -108.555964,26.825229,0
              -108.557043,26.823753,0
              -108.557279,26.823117,0
              -108.557621,26.821971,0
              -108.557999,26.819239,0
              -108.557865,26.817312,0
              -108.557601,26.816312,0
              -108.557215,26.815067,0
              -108.556808,26.813998,0
              -108.555936,26.812461,0
              -108.555352,26.811584,0
              -108.554393,26.810471,0
              -108.553097,26.809245,0
              -108.552317,26.808648,0
              -108.550006,26.806929,0
              -108.547664,26.805826,0
              -108.545936,26.805404,0
              -108.544023,26.805484,0
              -108.54185,26.805446,0
              -108.540845,26.80522,0
              -108.539457,26.804778,0
              -108.537919,26.804125,0
              -108.536853,26.803131,0
              -108.536442,26.801748,0
              -108.536437,26.800258,0
              -108.536912,26.798429,0
              -108.538381,26.796555,0
              -108.539381,26.795419,0
              -108.540312,26.794505,0
              -108.541904,26.792866,0
              -108.544036,26.791407,0
              -108.546213,26.790025,0
              -108.548396,26.78876,0
              -108.549824,26.78756,0
              -108.550467,26.786423,0
              -108.550923,26.785393,0
              -108.551142,26.784455,0
              -108.551095,26.783533,0
              -108.551221,26.782056,0
              -108.551473,26.781535,0
              -108.551785,26.780969,0
              -108.554034,26.779857,0
              -108.555344,26.780041,0
              -108.55621,26.78025,0
              -108.556813,26.780319,0
              -108.557913,26.780221,0
              -108.559378,26.7797,0
              -108.562205,26.779055,0
              -108.563252,26.778746,0
              -108.564011,26.778697,0
              -108.56477,26.778483,0
              -108.575205,26.793217,0
              -108.580849,26.789577,0
              -108.580078,26.786804,0
              -108.57598,26.777765,0
              -108.57794,26.776535,0
              -108.577943,26.776316,0
              -108.577582,26.776223,0
              -108.577378,26.775938,0
              -108.577371,26.775723,0
              -108.577457,26.77553,0
              -108.577722,26.77514,0
              -108.578398,26.774233,0
              -108.578555,26.773755,0
              -108.578659,26.77307,0
              -108.57874,26.772687,0
              -108.578838,26.771991,0
              -108.578789,26.771789,0
              -108.578471,26.771376,0
              -108.578039,26.769148,0
              -108.578101,26.764542,0
              -108.578123,26.763624,0
              -108.578329,26.762777,0
              -108.579004,26.761271,0
              -108.579942,26.759973,0
              -108.580386,26.759597,0
              -108.580778,26.759501,0
              -108.581615,26.759099,0
              -108.581981,26.759027,0
              -108.594189,26.759173,0
              -108.594416,26.757244,0
              -108.59522,26.755243,0
              -108.596234,26.753382,0
              -108.596884,26.752227,0
              -108.597561,26.751449,0
              -108.598857,26.750307,0
              -108.598696,26.749693,0
              -108.598117,26.748672,0
              -108.597733,26.747114,0
              -108.597575,26.746007,0
              -108.597214,26.743224,0
              -108.59752,26.740511,0
              -108.597976,26.737711,0
              -108.597954,26.736096,0
              -108.598714,26.732717,0
              -108.599183,26.73135,0
              -108.599488,26.730024,0
              -108.600333,26.729394,0
              -108.600856,26.728111,0
              -108.601024,26.727223,0
              -108.602773,26.727189,0
              -108.614936,26.726886,0
              -108.616254,26.726463,0
              -108.616731,26.726214,0
              -108.617264,26.725777,0
              -108.617697,26.725126,0
              -108.617848,26.724533,0
              -108.617941,26.723603,0
              -108.617729,26.722003,0
              -108.628385,26.718387,0
              -108.629764,26.712458,0
              -108.631466,26.706974,0
              -108.631197,26.701437,0
              -108.631316,26.701242,0
              -108.632644,26.698041,0
              -108.632727,26.697761,0
              -108.633823,26.694886,0
              -108.635328,26.6917,0
              -108.635994,26.690515,0
              -108.631798,26.6872,0
              -108.63143,26.685097,0
              -108.631156,26.68394,0
              -108.630695,26.682241,0
              -108.630526,26.68124,0
              -108.629868,26.68049,0
              -108.629968,26.680435,0
              -108.633698,26.679568,0
              -108.630366,26.676573,0
              -108.638797,26.67426,0
              -108.64098,26.673652,0
              -108.657681,26.669129,0
              -108.657674,26.669011,0
              -108.658296,26.668536,0
              -108.659019,26.667774,0
              -108.660035,26.666781,0
              -108.660766,26.665619,0
              -108.66147,26.664527,0
              -108.661808,26.663429,0
              -108.661856,26.662419,0
              -108.662005,26.661623,0
              -108.662722,26.65992,0
              -108.663301,26.658741,0
              -108.663873,26.657496,0
              -108.665115,26.655709,0
              -108.66581,26.655016,0
              -108.667262,26.652601,0
              -108.673737,26.647297,0
              -108.678988,26.642889,0
              -108.679282,26.633999,0
              -108.679291,26.626285,0
              -108.679112,26.616384,0
              -108.678705,26.612546,0
              -108.678737,26.608326,0
              -108.678768,26.604963,0
              -108.678771,26.599755,0
              -108.678831,26.587015,0
              -108.692162,26.587021,0
              -108.703274,26.587022,0
              -108.71059,26.587058,0
              -108.710741,26.593628,0
              -108.712006,26.59366,0
              -108.712546,26.593497,0
              -108.718511,26.593488,0
              -108.727147,26.593448,0
              -108.729965,26.593432,0
              -108.733925,26.593563,0
              -108.734293,26.593568,0
              -108.741839,26.591183,0
              -108.754934,26.587131,0
              -108.761848,26.584845,0
              -108.762372,26.584637,0
              -108.77659,26.580109,0
              -108.776585,26.575788,0
              -108.776438,26.573501,0
              -108.776851,26.573661,0
              -108.776986,26.573621,0
              -108.777084,26.573731,0
              -108.77732,26.573737,0
              -108.777433,26.573573,0
              -108.777419,26.5733,0
              -108.777586,26.573191,0
              -108.777611,26.573065,0
              -108.77777,26.572898,0
              -108.777799,26.572618,0
              -108.777369,26.572308,0
              -108.777156,26.571844,0
              -108.777062,26.571014,0
              -108.777155,26.570847,0
              -108.777372,26.570753,0
              -108.777511,26.570518,0
              -108.77845,26.56995,0
              -108.779811,26.569947,0
              -108.782582,26.569469,0
              -108.784175,26.568806,0
              -108.785219,26.568051,0
              -108.786026,26.566944,0
              -108.787724,26.565256,0
              -108.795512,26.565627,0
              -108.795748,26.566261,0
              -108.796,26.566843,0
              -108.797218,26.56784,0
              -108.79997,26.569064,0
              -108.802466,26.569996,0
              -108.803877,26.570565,0
              -108.804424,26.570116,0
              -108.805344,26.570029,0
              -108.806423,26.570604,0
              -108.818449,26.56677,0
              -108.82479,26.564745,0
              -108.832879,26.562458,0
              -108.873152,26.551071,0
              -108.891363,26.489854,0
              -108.891318,26.489595,0
              -108.902707,26.484321,0
              -108.912385,26.480644,0
              -108.91467,26.47954,0
              -108.888171,26.480111,0
              -108.875129,26.480317,0
              -108.85674,26.480515,0
              -108.852326,26.484395,0
              -108.851062,26.48606,0
              -108.850652,26.486362,0
              -108.848418,26.487133,0
              -108.84748,26.487217,0
              -108.845946,26.484724,0
              -108.844094,26.482975,0
              -108.842566,26.481348,0
              -108.84156,26.480353,0
              -108.841061,26.479709,0
              -108.840573,26.478938,0
              -108.838543,26.477559,0
              -108.837795,26.476857,0
              -108.837762,26.472523,0
              -108.841794,26.470442,0
              -108.842846,26.469939,0
              -108.84471,26.46908,0
              -108.846325,26.468242,0
              -108.84838,26.467626,0
              -108.849099,26.467224,0
              -108.852328,26.464992,0
              -108.852744,26.464659,0
              -108.857776,26.461174,0
              -108.859423,26.459991,0
              -108.861139,26.458801,0
              -108.861944,26.458325,0
              -108.86355,26.457158,0
              -108.867072,26.454587,0
              -108.870444,26.452036,0
              -108.876108,26.447576,0
              -108.86034,26.43277,0
              -108.876237,26.412748,0
              -108.881392,26.406252,0
              -108.910115,26.421715,0
              -108.909185,26.416585,0
              -108.915303,26.410616,0
              -108.936522,26.39018,0
              -108.949836,26.392202,0
              -109.003574,26.400071,0
              -109.004054,26.400085,0
              -109.006152,26.402468,0
              -109.006443,26.40237,0
              -109.010896,26.399235,0
              -109.014293,26.396734,0
              -109.020499,26.392316,0
              -109.038768,26.379349,0
              -109.046636,26.373751,0
              -109.046617,26.373728,0
              -109.048497,26.372393,0
              -109.052164,26.369818,0
              -109.056718,26.366585,0
              -109.057177,26.366346,0
              -109.066218,26.359902,0
              -109.06994,26.357261,0
              -109.070346,26.356649,0
              -109.070606,26.356316,0
              -109.070647,26.355934,0
              -109.070717,26.355672,0
              -109.070882,26.355261,0
              -109.071186,26.354991,0
              -109.072079,26.35445,0
              -109.074214,26.35353,0
              -109.074973,26.352608,0
              -109.075829,26.351137,0
              -109.07649,26.349376,0
              -109.076552,26.347443,0
              -109.077428,26.345535,0
              -109.077752,26.344716,0
              -109.078029,26.343687,0
              -109.078272,26.343323,0
              -109.078709,26.342956,0
              -109.079927,26.341836,0
              -109.080384,26.341356,0
              -109.08067,26.340504,0
              -109.080992,26.339678,0
              -109.081132,26.337915,0
              -109.081218,26.337739,0
              -109.081984,26.337383,0
              -109.082512,26.337173,0
              -109.082819,26.337087,0
              -109.084517,26.337193,0
              -109.084966,26.336937,0
              -109.085405,26.336495,0
              -109.085909,26.335302,0
              -109.08678,26.332817,0
              -109.087541,26.330819,0
              -109.087546,26.330528,0
              -109.087507,26.329826,0
              -109.087205,26.327557,0
              -109.087133,26.326222,0
              -109.087271,26.325608,0
              -109.087647,26.325577,0
              -109.088609,26.324863,0
              -109.088907,26.324604,0
              -109.089328,26.324096,0
              -109.090112,26.323344,0
              -109.091502,26.321966,0
              -109.09336,26.320503,0
              -109.093762,26.319854,0
              -109.094076,26.317187,0
              -109.09553,26.31424,0
              -109.09668,26.312124,0
              -109.098037,26.31228,0
              -109.098048,26.312817,0
              -109.100113,26.312929,0
              -109.119264,26.303234,0
              -109.119657,26.303078,0
              -109.119978,26.302051,0
              -109.120318,26.300361,0
              -109.120675,26.299442,0
              -109.121008,26.29891,0
              -109.121687,26.298617,0
              -109.12237,26.298504,0
              -109.123515,26.297727,0
              -109.123969,26.297561,0
              -109.124547,26.29744,0
              -109.125066,26.297095,0
              -109.125238,26.297014,0
              -109.125524,26.296988,0
              -109.125678,26.297045,0
              -109.125771,26.297177,0
              -109.126038,26.297369,0
              -109.127379,26.298126,0
              -109.127526,26.298423,0
              -109.127448,26.298649,0
              -109.127688,26.298611,0
              -109.127895,26.298452,0
              -109.128204,26.298474,0
              -109.128436,26.298396,0
              -109.128752,26.298377,0
              -109.129392,26.297931,0
              -109.129701,26.297776,0
              -109.130473,26.297547,0
              -109.13093,26.297435,0
              -109.131546,26.297458,0
              -109.131855,26.297494,0
              -109.132471,26.29762,0
              -109.132931,26.29784,0
              -109.133124,26.297859,0
              -109.133608,26.298236,0
              -109.134004,26.298477,0
              -109.134426,26.298826,0
              -109.134708,26.299108,0
              -109.134801,26.299417,0
              -109.134715,26.299957,0
              -109.134699,26.3004,0
              -109.134799,26.3012,0
              -109.135399,26.3016,0
              -109.136999,26.302,0
              -109.138599,26.3025,0
              -109.139999,26.3031,0
              -109.141599,26.3036,0
              -109.142699,26.304,0
              -109.143799,26.3046,0
              -109.145299,26.305,0
              -109.146499,26.3054,0
              -109.149599,26.3064,0
              -109.1522,26.307,0
              -109.154276,26.307151,0
              -109.155513,26.30695,0
              -109.156362,26.306285,0
              -109.156941,26.305374,0
              -109.157688,26.305949,0
              -109.158063,26.306168,0
              -109.159067,26.306563,0
              -109.159476,26.306594,0
              -109.160121,26.306597,0
              -109.160542,26.306569,0
              -109.161003,26.306616,0
              -109.161611,26.306603,0
              -109.162247,26.306533,0
              -109.162941,26.30642,0
              -109.163415,26.306431,0
              -109.164363,26.306638,0
              -109.164943,26.306847,0
              -109.165103,26.306999,0
              -109.16524,26.307483,0
              -109.165337,26.307597,0
              -109.165346,26.307855,0
              -109.16549,26.308089,0
              -109.166229,26.308704,0
              -109.166336,26.309085,0
              -109.166625,26.309485,0
              -109.166726,26.309935,0
              -109.166947,26.310392,0
              -109.167228,26.310452,0
              -109.167684,26.31069,0
              -109.168018,26.310716,0
              -109.168409,26.310689,0
              -109.168796,26.310853,0
              -109.169352,26.310892,0
              -109.170194,26.311013,0
              -109.17126,26.31135,0
              -109.171744,26.311632,0
              -109.172029,26.31196,0
              -109.172248,26.312091,0
              -109.172477,26.312316,0
              -109.172722,26.31265,0
              -109.172931,26.312772,0
              -109.1732,26.313001,0
              -109.173627,26.313431,0
              -109.174226,26.314148,0
              -109.174633,26.314783,0
              -109.175058,26.315626,0
              -109.175178,26.315984,0
              -109.175308,26.316781,0
              -109.175308,26.317144,0
              -109.175173,26.31769,0
              -109.175034,26.318001,0
              -109.174608,26.318673,0
              -109.174579,26.31897,0
              -109.175601,26.319051,0
              -109.176297,26.31926,0
              -109.177193,26.319623,0
              -109.177587,26.319909,0
              -109.178176,26.320541,0
              -109.178554,26.321186,0
              -109.178865,26.321608,0
              -109.179194,26.321911,0
              -109.179457,26.322212,0
              -109.179727,26.322631,0
              -109.179894,26.323004,0
              -109.18022,26.323611,0
              -109.180415,26.324134,0
              -109.180705,26.324629,0
              -109.180801,26.32491,0
              -109.181054,26.325198,0
              -109.181282,26.325783,0
              -109.181906,26.326671,0
              -109.182035,26.327092,0
              -109.182348,26.327191,0
              -109.182429,26.327287,0
              -109.182593,26.327257,0
              -109.183118,26.327279,0
              -109.183555,26.327354,0
              -109.183985,26.327553,0
              -109.184153,26.327686,0
              -109.184994,26.328229,0
              -109.185191,26.328429,0
              -109.185611,26.329,0
              -109.185732,26.329271,0
              -109.186309,26.329694,0
              -109.186645,26.330287,0
              -109.186768,26.330613,0
              -109.187199,26.33102,0
              -109.187348,26.331344,0
              -109.187555,26.33153,0
              -109.187814,26.331931,0
              -109.188078,26.332155,0
              -109.188171,26.332374,0
              -109.188279,26.332414,0
              -109.18875,26.332456,0
              -109.189168,26.332642,0
              -109.190115,26.332749,0
              -109.190272,26.332846,0
              -109.190215,26.333003,0
              -109.190358,26.333123,0
              -109.190039,26.333451,0
              -109.189404,26.333711,0
              -109.189027,26.333556,0
              -109.188927,26.333106,0
              -109.188824,26.332988,0
              -109.188813,26.333139,0
              -109.188897,26.333389,0
              -109.188839,26.334422,0
              -109.188957,26.334734,0
              -109.188968,26.335029,0
              -109.189128,26.335357,0
              -109.189127,26.33553,0
              -109.189278,26.335804,0
              -109.189294,26.33599,0
              -109.189385,26.336094,0
              -109.189644,26.336228,0
              -109.189819,26.336465,0
              -109.189945,26.33675,0
              -109.190027,26.337132,0
              -109.190036,26.337649,0
              -109.190199,26.337777,0
              -109.190847,26.337934,0
              -109.191139,26.338193,0
              -109.191286,26.338391,0
              -109.19154,26.338524,0
              -109.19205,26.339001,0
              -109.192207,26.339384,0
              -109.192347,26.339541,0
              -109.192434,26.339918,0
              -109.192637,26.340413,0
              -109.193061,26.340793,0
              -109.19313,26.340935,0
              -109.19324,26.34093,0
              -109.193469,26.340702,0
              -109.193919,26.340718,0
              -109.194314,26.340673,0
              -109.194743,26.34088,0
              -109.195118,26.340995,0
              -109.195385,26.340996,0
              -109.195879,26.341187,0
              -109.196587,26.341337,0
              -109.197835,26.341502,0
              -109.198719,26.34173,0
              -109.19909,26.342154,0
              -109.199146,26.342423,0
              -109.199407,26.342679,0
              -109.199476,26.342844,0
              -109.199748,26.343018,0
              -109.200127,26.343395,0
              -109.200638,26.343708,0
              -109.201177,26.343992,0
              -109.201495,26.344087,0
              -109.202421,26.344431,0
              -109.202621,26.344408,0
              -109.202634,26.344199,0
              -109.202557,26.343807,0
              -109.202783,26.343697,0
              -109.202842,26.343322,0
              -109.20296,26.343081,0
              -109.20314,26.34251,0
              -109.203275,26.342227,0
              -109.203568,26.341978,0
              -109.203902,26.341827,0
              -109.204302,26.341854,0
              -109.204521,26.341731,0
              -109.205113,26.341858,0
              -109.205304,26.342045,0
              -109.205532,26.342152,0
              -109.205858,26.342219,0
              -109.206311,26.342203,0
              -109.207179,26.342327,0
              -109.207571,26.342414,0
              -109.20782,26.342534,0
              -109.20802,26.342693,0
              -109.20832,26.342838,0
              -109.208544,26.342787,0
              -109.208929,26.342824,0
              -109.20922,26.342798,0
              -109.209738,26.343069,0
              -109.209886,26.343189,0
              -109.210112,26.34317,0
              -109.210421,26.343029,0
              -109.21071,26.342975,0
              -109.211276,26.342736,0
              -109.211895,26.342277,0
              -109.212323,26.341904,0
              -109.212835,26.341168,0
              -109.213064,26.340563,0
              -109.213485,26.340167,0
              -109.213606,26.339994,0
              -109.213857,26.339352,0
              -109.214118,26.338795,0
              -109.214228,26.338504,0
              -109.214331,26.337923,0
              -109.214536,26.337256,0
              -109.21486,26.336488,0
              -109.215002,26.336227,0
              -109.21537,26.335339,0
              -109.215639,26.334532,0
              -109.2251,26.3294,0
              -109.234,26.3244,0
              -109.2422,26.3195,0
              -109.246788,26.316035,0
              -109.247134,26.316033,0
              -109.247445,26.31611,0
              -109.247598,26.315985,0
              -109.258324,26.319928,0
              -109.251892,26.312178,0
              -109.260747,26.302989,0
              -109.274418,26.291031,0
              -109.28192,26.282986,0
              -109.286799,26.279421,0
              -109.289852,26.274076,0
              -109.292831,26.251884,0
              -109.295719,26.236346,0
              -109.295746,26.236237,0
              -109.298951,26.226394,0
              -109.310288,26.202495,0
              -109.31738,26.189733,0
              -109.331206,26.167295,0
              -109.344256,26.146622,0
              -109.352322,26.134655,0
              -109.359316,26.124329,0
              -109.365525,26.115693,0
              -109.371818,26.107206,0
              -109.378291,26.099242,0
              -109.380922,26.095713,0
              -109.384028,26.090542,0
              -109.386457,26.088023,0
              -109.387965,26.088339,0
              -109.396827,26.075393,0
              -109.400007,26.069506,0
              -109.40375,26.064066,0
              -109.408316,26.058498,0
              -109.411142,26.050852,0
              -109.414486,26.043957,0
              -109.420184,26.032638,0
              -109.423086,26.024541,0
              -109.43023,26.008058,0
              -109.434559,25.999426,0
              -109.435825,25.99432,0
              -109.437357,25.98782,0
              -109.441314,25.974819,0
              -109.444406,25.962155,0
              -109.445867,25.957161,0
              -109.445916,25.955493,0
              -109.445904,25.954536,0
              -109.44568,25.953741,0
              -109.444594,25.95198,0
              -109.445045,25.949954,0
              -109.446964,25.949821,0
              -109.447693,25.948988,0
              -109.446281,25.946132,0
              -109.444126,25.939615,0
              -109.443957,25.937437,0
              -109.443067,25.934489,0
              -109.442215,25.930303,0
              -109.440834,25.925944,0
              -109.440284,25.92347,0
              -109.438352,25.919311,0
              -109.437194,25.916728,0
              -109.434597,25.912232,0
              -109.432998,25.910232,0
              -109.428829,25.905178,0
              -109.426665,25.902631,0
              -109.425509,25.900054,0
              -109.424477,25.898512,0
              -109.423819,25.896233,0
              -109.421133,25.893893,0
              -109.421614,25.892395,0
              -109.422072,25.891202,0
              -109.422679,25.889101,0
              -109.423099,25.886043,0
              -109.420628,25.881478,0
              -109.419617,25.878323,0
              -109.419141,25.873965,0
              -109.419531,25.868512,0
              -109.420147,25.862758,0
              -109.420777,25.858372,0
              -109.42209,25.850331,0
              -109.423918,25.841141,0
              -109.425095,25.835862,0
              -109.427017,25.828933,0
              -109.427609,25.825712,0
              -109.427822,25.823439,0
              -109.428387,25.820312,0
              -109.43119,25.813512,0
              -109.433372,25.811671,0
              -109.433603,25.809409,0
              -109.432977,25.806868,0
              -109.432357,25.806129,0
              -109.430091,25.801138,0
              -109.429594,25.798295,0
              -109.428907,25.796259,0
              -109.427409,25.79194,0
              -109.425749,25.787745,0
              -109.423325,25.782546,0
              -109.422117,25.780506,0
              -109.419592,25.776452,0
              -109.418275,25.774438,0
              -109.415458,25.768726,0
              -109.413592,25.764568,0
              -109.412481,25.76203,0
              -109.411016,25.758325,0
              -109.409649,25.754752,0
              -109.407869,25.74803,0
              -109.406687,25.743775,0
              -109.405174,25.736015,0
              -109.404533,25.73129,0
              -109.404093,25.726942,0
              -109.403071,25.717199,0
              -109.402302,25.712877,0
              -109.401684,25.709327,0
              -109.40058,25.704615,0
              -109.399845,25.700506,0
              -109.399884,25.693868,0
              -109.40011,25.689525,0
              -109.399934,25.687462,0
              -109.399707,25.685398,0
              -109.399377,25.684296,0
              -109.3991,25.683707,0
              -109.39822,25.682256,0
              -109.397304,25.680985,0
              -109.396284,25.679987,0
              -109.395301,25.67877,0
              -109.394368,25.678008,0
              -109.392486,25.677072,0
              -109.3905,25.6696,0
              -109.391197,25.65427,0
              -109.392148,25.642822,0
              -109.392698,25.642563,0
              -109.394711,25.641224,0
              -109.39553,25.640645,0
              -109.396219,25.640571,0
              -109.397227,25.639897,0
              -109.397789,25.639357,0
              -109.398158,25.638683,0
              -109.396599,25.638563,0
              -109.395914,25.638027,0
              -109.394402,25.637458,0
              -109.393437,25.637259,0
              -109.392475,25.637196,0
              -109.391566,25.63722,0
              -109.390391,25.637152,0
              -109.389084,25.637203,0
              -109.386988,25.637454,0
              -109.385722,25.637429,0
              -109.383512,25.637736,0
              -109.381984,25.637698,0
              -109.379364,25.63736,0
              -109.377535,25.637264,0
              -109.376429,25.637242,0
              -109.373159,25.637619,0
              -109.370154,25.638187,0
              -109.367761,25.638791,0
              -109.366121,25.639214,0
              -109.3598,25.641,0
              -109.356589,25.642069,0
              -109.353618,25.642986,0
              -109.351934,25.643577,0
              -109.350231,25.644067,0
              -109.344765,25.645234,0
              -109.341094,25.646131,0
              -109.336254,25.646797,0
              -109.333246,25.647117,0
              -109.330482,25.647234,0
              -109.329121,25.647323,0
              -109.320169,25.646899,0
              -109.31847,25.646781,0
              -109.3048,25.646,0
              -109.2963,25.6454,0
              -109.2909,25.6447,0
              -109.2883,25.6442,0
              -109.2872,25.6439,0
              -109.2861,25.6438,0
              -109.283669,25.643386,0
              -109.276862,25.642146,0
              -109.2743,25.6415,0
              -109.265454,25.639245,0
              -109.257924,25.637216,0
              -109.254256,25.636138,0
              -109.251044,25.635223,0
              -109.243865,25.632781,0
              -109.24034,25.631566,0
              -109.237413,25.630531,0
              -109.231839,25.628585,0
              -109.225464,25.62609,0
              -109.219517,25.62332,0
              -109.215535,25.621169,0
              -109.208588,25.616572,0
              -109.204748,25.613755,0
              -109.202,25.6116,0
              -109.1993,25.6095,0
              -109.191815,25.603665,0
              -109.188428,25.600645,0
              -109.1849,25.5977,0
              -109.1823,25.5948,0
              -109.1804,25.5927,0
              -109.1777,25.59,0
              -109.1748,25.5863,0
              -109.171528,25.580997,0
              -109.169841,25.578014,0
              -109.167986,25.574449,0
              -109.166928,25.572205,0
              -109.16593,25.569987,0
              -109.164768,25.567122,0
              -109.163967,25.564786,0
              -109.163728,25.563942,0
              -109.1634,25.562298,0
              -109.162933,25.560826,0
              -109.119223,25.544999,0
              -109.118584,25.542995,0
              -109.117482,25.541644,0
              -109.116505,25.541024,0
              -109.115822,25.54061,0
              -109.115067,25.539959,0
              -109.112737,25.538183,0
              -109.112007,25.537605,0
              -109.1116,25.537081,0
              -109.111,25.5365,0
              -109.1095,25.5349,0
              -109.1085,25.5333,0
              -109.1074,25.5325,0
              -109.1066,25.5315,0
              -109.104955,25.529212,0
              -109.103364,25.527747,0
              -109.102222,25.526516,0
              -109.100444,25.524845,0
              -109.09936,25.523943,0
              -109.096067,25.520625,0
              -109.094522,25.519008,0
              -109.093874,25.518502,0
              -109.092476,25.517008,0
              -109.089641,25.514045,0
              -109.088282,25.512443,0
              -109.086598,25.510652,0
              -109.085319,25.509342,0
              -109.08427,25.508341,0
              -109.083543,25.507236,0
              -109.083053,25.506346,0
              -109.082455,25.505401,0
              -109.081452,25.503305,0
              -109.080775,25.50198,0
              -109.080586,25.501138,0
              -109.081026,25.500699,0
              -109.080784,25.500411,0
              -109.080882,25.498386,0
              -109.080357,25.498233,0
              -109.079751,25.496671,0
              -109.079631,25.496039,0
              -109.079643,25.495411,0
              -109.079714,25.494632,0
              -109.080118,25.494264,0
              -109.080443,25.4943,0
              -109.080529,25.493934,0
              -109.08084,25.49345,0
              -109.080672,25.492986,0
              -109.08025,25.492524,0
              -109.079951,25.492406,0
              -109.07961,25.4926,0
              -109.079282,25.492663,0
              -109.07868,25.492105,0
              -109.077758,25.491351,0
              -109.076299,25.490288,0
              -109.075119,25.489593,0
              -109.07384,25.489124,0
              -109.072644,25.488635,0
              -109.07077,25.487949,0
              -109.06923,25.48767,0
              -109.067134,25.486392,0
              -109.06474,25.484625,0
              -109.063668,25.483452,0
              -109.062942,25.482478,0
              -109.061599,25.480743,0
              -109.0596,25.478628,0
              -109.056549,25.475511,0
              -109.055378,25.473954,0
              -109.053841,25.472114,0
              -109.051352,25.469919,0
              -109.049592,25.46846,0
              -109.048734,25.467797,0
              -109.046967,25.466117,0
              -109.045987,25.465479,0
              -109.044152,25.464078,0
              -109.043767,25.463856,0
              -109.041842,25.462896,0
              -109.041048,25.462574,0
              -109.039222,25.46215,0
              -109.038686,25.461957,0
              -109.038472,25.461817,0
              -109.037288,25.461637,0
              -109.03664,25.461769,0
              -109.036398,25.46218,0
              -109.035678,25.461131,0
              -109.034588,25.459406,0
              -109.025965,25.443277,0
              -109.026546,25.442239,0
              -109.026472,25.441351,0
              -109.026095,25.440766,0
              -109.025249,25.440035,0
              -109.024083,25.439327,0
              -109.022391,25.438357,0
              -109.020436,25.437735,0
              -109.015526,25.437171,0
              -109.008424,25.436891,0
              -109.001581,25.436575,0
              -108.996276,25.436114,0
              -108.9921,25.4356,0
              -108.9855,25.4351,0
              -108.975058,25.433411,0
              -108.962724,25.43175,0
              -108.9543,25.4303,0
              -108.937032,25.426943,0
              -108.927754,25.424921,0
              -108.9112,25.4206,0
              -108.8949,25.4151,0
              -108.8838,25.411,0
              -108.8683,25.4047,0
              -108.8624,25.4019,0
              -108.8479,25.3947,0
              -108.837414,25.389659,0
              -108.829239,25.385082,0
              -108.824639,25.382367,0
              -108.818882,25.379553,0
              -108.81168,25.376295,0
              -108.808462,25.374566,0
              -108.807222,25.373804,0
              -108.805886,25.373043,0
              -108.802878,25.370526,0
              -108.80176,25.369838,0
              -108.800064,25.36869,0
              -108.799204,25.368705,0
              -108.79844,25.369031,0
              -108.798074,25.369624,0
              -108.751211,25.36851,0
              -108.749308,25.366708,0
              -108.745655,25.364629,0
              -108.739952,25.36344,0
              -108.727218,25.361788,0
              -108.709356,25.358422,0
              -108.689846,25.354564,0
              -108.675829,25.351048,0
              -108.65211,25.344173,0
              -108.629643,25.336903,0
              -108.605083,25.328312,0
              -108.595905,25.324902,0
              -108.569153,25.314817,0
              -108.563911,25.312746,0
              -108.556776,25.30965,0
              -108.550287,25.306788,0
              -108.549449,25.306249,0
              -108.544157,25.30377,0
              -108.541849,25.302454,0
              -108.534799,25.299093,0
              -108.524733,25.295301,0
              -108.50889,25.288409,0
              -108.495669,25.282567,0
              -108.494844,25.280672,0
              -108.472904,25.270989,0
              -108.450282,25.256604,0
              -108.444013,25.251615,0
              -108.435077,25.243602,0
              -108.428777,25.2358,0
              -108.422161,25.227987,0
              -108.421824,25.227514,0
              -108.42049,25.226002,0
              -108.410551,25.214496,0
              -108.403782,25.206914,0
              -108.398846,25.200408,0
              -108.396202,25.194703,0
              -108.395893,25.192736,0
              -108.395379,25.192347,0
              -108.39396,25.192347,0
              -108.393338,25.192152,0
              -108.392275,25.191647,0
              -108.390592,25.190334,0
              -108.38924,25.188716,0
              -108.38826,25.187255,0
              -108.387986,25.185944,0
              -108.387044,25.185295,0
              -108.386069,25.186099,0
              -108.385205,25.186459,0
              -108.384625,25.187303,0
              -108.383667,25.186664,0
              -108.357453,25.169194,0
              -108.358146,25.167282,0
              -108.357218,25.166598,0
              -108.35581,25.165963,0
              -108.33423,25.124512,0
              -108.335537,25.124021,0
              -108.336224,25.123831,0
              -108.337045,25.123578,0
              -108.337446,25.123286,0
              -108.337942,25.123096,0
              -108.338656,25.122743,0
              -108.339281,25.120963,0
              -108.339639,25.11796,0
              -108.339614,25.115551,0
              -108.338897,25.11412,0
              -108.337613,25.112935,0
              -108.335069,25.109795,0
              -108.332459,25.105688,0
              -108.327569,25.101504,0
              -108.320541,25.097825,0
              -108.306724,25.090146,0
              -108.297073,25.084255,0
              -108.286931,25.077095,0
              -108.278126,25.070073,0
              -108.268429,25.062037,0
              -108.26297,25.057243,0
              -108.260539,25.054999,0
              -108.257301,25.052111,0
              -108.249525,25.044733,0
              -108.23958,25.034532,0
              -108.232536,25.026493,0
              -108.228676,25.021548,0
              -108.224371,25.015794,0
              -108.219224,25.008242,0
              -108.215055,25.001333,0
              -108.211953,24.995746,0
              -108.208529,24.988971,0
              -108.20506,24.983003,0
              -108.201238,24.97678,0
              -108.196697,24.970261,0
              -108.188899,24.958995,0
              -108.183668,24.950543,0
              -108.175697,24.937311,0
              -108.171685,24.930351,0
              -108.166119,24.92045,0
              -108.161394,24.91241,0
              -108.153985,24.900012,0
              -108.149523,24.89285,0
              -108.143449,24.883152,0
              -108.140487,24.878418,0
              -108.136212,24.871685,0
              -108.134522,24.867575,0
              -108.131807,24.862431,0
              -108.130804,24.860365,0
              -108.130173,24.859016,0
              -108.129286,24.857215,0
              -108.128432,24.855357,0
              -108.126859,24.851812,0
              -108.125788,24.848798,0
              -108.124793,24.845859,0
              -108.12422,24.843577,0
              -108.123872,24.842445,0
              -108.124081,24.840781,0
              -108.124398,24.836722,0
              -108.123493,24.832487,0
              -108.121758,24.829478,0
              -108.118655,24.826948,0
              -108.115553,24.825207,0
              -108.112686,24.823485,0
              -108.111257,24.822583,0
              -108.10951,24.821766,0
              -108.106575,24.820277,0
              -108.10339,24.819242,0
              -108.099934,24.817907,0
              -108.096961,24.816763,0
              -108.093327,24.815228,0
              -108.089968,24.81473,0
              -108.069911,24.785141,0
              -108.070814,24.783449,0
              -108.071584,24.781853,0
              -108.071898,24.780286,0
              -108.068545,24.777385,0
              -108.047872,24.762743,0
              -108.035043,24.750499,0
              -108.030828,24.745676,0
              -108.026966,24.741023,0
              -108.023213,24.736287,0
              -108.02077,24.732389,0
              -108.018951,24.728778,0
              -108.018376,24.727562,0
              -108.018091,24.726904,0
              -108.017898,24.726519,0
              -108.01758,24.725741,0
              -108.017336,24.72503,0
              -108.017163,24.724311,0
              -108.016828,24.723313,0
              -108.016696,24.722682,0
              -108.016617,24.721911,0
              -108.01649,24.721472,0
              -108.01651,24.720388,0
              -108.01638,24.719694,0
              -108.016358,24.718973,0
              -108.016388,24.717702,0
              -108.01637,24.715583,0
              -108.016536,24.712316,0
              -108.017114,24.710857,0
              -108.018254,24.708541,0
              -108.018477,24.706951,0
              -108.0187,24.705529,0
              -108.018788,24.704486,0
              -108.018901,24.703711,0
              -108.018867,24.703249,0
              -108.018935,24.702664,0
              -108.01907,24.701249,0
              -108.019019,24.699997,0
              -108.019175,24.698778,0
              -108.019126,24.69746,0
              -108.019147,24.696916,0
              -108.019047,24.69597,0
              -108.018982,24.693992,0
              -108.01894,24.693041,0
              -108.018949,24.691775,0
              -108.018883,24.690954,0
              -108.01887,24.690459,0
              -108.019092,24.689372,0
              -108.018782,24.688852,0
              -108.018694,24.687789,0
              -108.019157,24.687044,0
              -108.018692,24.686254,0
              -108.018972,24.685371,0
              -108.018454,24.68305,0
              -108.018135,24.681577,0
              -108.017649,24.68039,0
              -108.016948,24.678841,0
              -108.016202,24.67772,0
              -108.015655,24.676616,0
              -108.015036,24.675317,0
              -108.014046,24.673366,0
              -108.012154,24.670595,0
              -108.011211,24.668993,0
              -108.011001,24.668196,0
              -108.010359,24.66722,0
              -108.00997,24.66676,0
              -108.010041,24.666557,0
              -108.009655,24.666206,0
              -108.009576,24.665891,0
              -108.009209,24.665261,0
              -108.008318,24.664283,0
              -108.007712,24.663333,0
              -108.007237,24.662668,0
              -108.006597,24.661823,0
              -108.006052,24.660977,0
              -108.005386,24.660045,0
              -108.003929,24.658027,0
              -108.003308,24.657408,0
              -108.002553,24.65636,0
              -108.001382,24.655194,0
              -108.000247,24.653947,0
              -107.999163,24.652871,0
              -107.997624,24.651465,0
              -107.994918,24.649015,0
              -107.993962,24.647981,0
              -107.99345,24.647396,0
              -107.993071,24.647032,0
              -107.992041,24.646181,0
              -107.991017,24.645144,0
              -107.989169,24.643529,0
              -107.986883,24.641427,0
              -107.980824,24.636775,0
              -107.974365,24.631986,0
              -107.968371,24.627854,0
              -107.960672,24.622581,0
              -107.950451,24.615666,0
              -107.938475,24.607952,0
              -107.922223,24.59841,0
              -107.91024,24.591797,0
              -107.901409,24.586924,0
              -107.894997,24.584338,0
              -107.885621,24.580027,0
              -107.882966,24.579124,0
              -107.881413,24.578808,0
              -107.875316,24.573406,0
              -107.874481,24.571353,0
              -107.872643,24.570007,0
              -107.865071,24.566717,0
              -107.844549,24.555291,0
              -107.839337,24.551178,0
              -107.833521,24.54428,0
              -107.830928,24.540316,0
              -107.830565,24.53432,0
              -107.830137,24.529741,0
              -107.829125,24.52715,0
              -107.828914,24.523266,0
              -107.828456,24.521484,0
              -107.827995,24.521783,0
              -107.826893,24.522104,0
              -107.823133,24.522419,0
              -107.810509,24.510085,0
              -107.811015,24.509609,0
              -107.811828,24.508757,0
              -107.812387,24.508028,0
              -107.812912,24.507119,0
              -107.812982,24.505846,0
              -107.812856,24.505093,0
              -107.812798,24.504453,0
              -107.812825,24.503919,0
              -107.812776,24.503266,0
              -107.812709,24.503094,0
              -107.812549,24.502457,0
              -107.812348,24.501878,0
              -107.812147,24.50117,0
              -107.811684,24.500225,0
              -107.811539,24.499963,0
              -107.811416,24.499844,0
              -107.810037,24.498219,0
              -107.809782,24.497456,0
              -107.809458,24.496669,0
              -107.809286,24.496325,0
              -107.808942,24.495852,0
              -107.808557,24.49539,0
              -107.808335,24.495214,0
              -107.808011,24.494894,0
              -107.807512,24.494253,0
              -107.807298,24.494034,0
              -107.806121,24.492692,0
              -107.805111,24.491808,0
              -107.804563,24.491371,0
              -107.804109,24.49106,0
              -107.803616,24.490606,0
              -107.802917,24.490098,0
              -107.802636,24.489831,0
              -107.802185,24.489577,0
              -106.76421,24.721347,0
            </coordinates>
          </LinearRing>
        </outerBoundaryIs>
      </Polygon>
    </Placemark>
  </Document>
</kml>
`;
}
})();