WME Mapraid SL-NT E3 Overlay

Adds a Mapraid SL-NT Equipo 3 area overlay.

// ==UserScript==
// @name         WME Mapraid SL-NT E3 Overlay
// @namespace    https://greasyfork.org/users/45389
// @version      1.1
// @description  Adds a Mapraid SL-NT Equipo 3 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 = "SL3";

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

    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[0];
                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 E3", _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 3 </name>
      <styleUrl>#poly-097138-1000-189-nodesc</styleUrl>
      <Polygon>
        <outerBoundaryIs>
          <LinearRing>
            <tessellate>1</tessellate>
            <coordinates>
              -106.039778,22.836048,0
              -106.039554,22.835753,0
              -106.037801,22.835276,0
              -106.037447,22.834039,0
              -106.035469,22.832155,0
              -106.033462,22.831474,0
              -106.034491,22.829713,0
              -106.027937,22.831645,0
              -106.024237,22.829358,0
              -106.011848,22.822028,0
              -106.002922,22.816194,0
              -106.001439,22.815382,0
              -105.997973,22.813099,0
              -105.99118,22.808841,0
              -105.98978,22.807834,0
              -105.982585,22.80327,0
              -105.979659,22.801334,0
              -105.974527,22.797535,0
              -105.970585,22.79498,0
              -105.966135,22.791885,0
              -105.964014,22.790603,0
              -105.958205,22.786103,0
              -105.946133,22.776609,0
              -105.9376,22.769545,0
              -105.934318,22.766745,0
              -105.927949,22.761085,0
              -105.917916,22.752429,0
              -105.910568,22.745582,0
              -105.907706,22.743163,0
              -105.904454,22.740247,0
              -105.897295,22.733375,0
              -105.889804,22.726055,0
              -105.878695,22.715657,0
              -105.875851,22.712956,0
              -105.870863,22.708447,0
              -105.859728,22.697464,0
              -105.853486,22.690894,0
              -105.843917,22.680577,0
              -105.835156,22.670363,0
              -105.827863,22.661651,0
              -105.821681,22.654023,0
              -105.814029,22.6439,0
              -105.808805,22.636568,0
              -105.802899,22.627831,0
              -105.799022,22.621899,0
              -105.796088,22.617282,0
              -105.78624,22.600952,0
              -105.778,22.5857,0
              -105.774029,22.57805,0
              -105.771605,22.572926,0
              -105.76932,22.567594,0
              -105.767142,22.561117,0
              -105.766397,22.558382,0
              -105.765501,22.556513,0
              -105.763983,22.554633,0
              -105.763224,22.551907,0
              -105.762611,22.550598,0
              -105.761198,22.549818,0
              -105.760221,22.550077,0
              -105.757586,22.541459,0
              -105.758537,22.539432,0
              -105.758295,22.537677,0
              -105.758913,22.534254,0
              -105.760306,22.531038,0
              -105.760273,22.530122,0
              -105.759167,22.52772,0
              -105.757533,22.526167,0
              -105.755044,22.52181,0
              -105.752402,22.517893,0
              -105.750266,22.514514,0
              -105.746105,22.507387,0
              -105.743053,22.501713,0
              -105.738958,22.49439,0
              -105.736218,22.489346,0
              -105.734345,22.486149,0
              -105.731136,22.480375,0
              -105.728552,22.475607,0
              -105.723802,22.466647,0
              -105.721202,22.461555,0
              -105.714398,22.447657,0
              -105.709817,22.43787,0
              -105.705425,22.427843,0
              -105.703124,22.422307,0
              -105.701667,22.418623,0
              -105.698629,22.411328,0
              -105.69575,22.404217,0
              -105.69366,22.398893,0
              -105.689659,22.388212,0
              -105.686334,22.379039,0
              -105.684324,22.372544,0
              -105.682296,22.366638,0
              -105.680743,22.361564,0
              -105.679556,22.357984,0
              -105.678901,22.355586,0
              -105.675967,22.346192,0
              -105.674008,22.338762,0
              -105.67052,22.326042,0
              -105.668488,22.317705,0
              -105.667914,22.315789,0
              -105.665535,22.305803,0
              -105.664782,22.30223,0
              -105.66349,22.296613,0
              -105.663575,22.296249,0
              -105.661868,22.288649,0
              -105.660169,22.28025,0
              -105.659279,22.275477,0
              -105.658748,22.273066,0
              -105.657355,22.265472,0
              -105.656799,22.261864,0
              -105.655737,22.256725,0
              -105.654001,22.245959,0
              -105.653649,22.244026,0
              -105.652691,22.237049,0
              -105.652214,22.234214,0
              -105.651595,22.229638,0
              -105.650523,22.222343,0
              -105.650203,22.219505,0
              -105.648988,22.212328,0
              -105.648039,22.20795,0
              -105.645702,22.200904,0
              -105.64397,22.195199,0
              -105.64313,22.191998,0
              -105.641238,22.189591,0
              -105.638244,22.188159,0
              -105.636647,22.181873,0
              -105.638365,22.182018,0
              -105.639123,22.181863,0
              -105.641477,22.180502,0
              -105.64317,22.178666,0
              -105.644856,22.17526,0
              -105.645972,22.172003,0
              -105.646379,22.169709,0
              -105.646665,22.166951,0
              -105.646978,22.161999,0
              -105.647187,22.153685,0
              -105.647085,22.150948,0
              -105.646998,22.144816,0
              -105.647049,22.141759,0
              -105.647393,22.136715,0
              -105.647693,22.126124,0
              -105.647945,22.124599,0
              -105.648277,22.119997,0
              -105.648778,22.109736,0
              -105.649815,22.098656,0
              -105.650998,22.086697,0
              -105.65182,22.080684,0
              -105.652133,22.077722,0
              -105.653406,22.062647,0
              -105.653813,22.058431,0
              -105.65404,22.048798,0
              -105.653997,22.042899,0
              -105.653373,22.033714,0
              -105.652723,22.028499,0
              -105.651899,22.02302,0
              -105.650464,22.015617,0
              -105.648549,22.00743,0
              -105.647745,22.004467,0
              -105.645478,21.997317,0
              -105.644382,21.993686,0
              -105.641832,21.986598,0
              -105.638828,21.979259,0
              -105.634818,21.970522,0
              -105.631468,21.963801,0
              -105.628342,21.957721,0
              -105.621083,21.944792,0
              -105.613993,21.933017,0
              -105.611816,21.929172,0
              -105.608289,21.923379,0
              -105.606689,21.920601,0
              -105.604281,21.916772,0
              -105.603401,21.915163,0
              -105.599746,21.909278,0
              -105.594249,21.900745,0
              -105.591863,21.897142,0
              -105.584736,21.886549,0
              -105.580898,21.880914,0
              -105.575427,21.873091,0
              -105.573059,21.869781,0
              -105.567978,21.862886,0
              -105.56179,21.854658,0
              -105.560552,21.852291,0
              -105.55819,21.848513,0
              -105.553193,21.841639,0
              -105.54929,21.835951,0
              -105.541579,21.823907,0
              -105.540311,21.822275,0
              -105.538481,21.819137,0
              -105.538084,21.818188,0
              -105.53754,21.815947,0
              -105.536238,21.814788,0
              -105.53485,21.813257,0
              -105.533271,21.811869,0
              -105.53074,21.807894,0
              -105.531275,21.806968,0
              -105.530219,21.804052,0
              -105.527111,21.798356,0
              -105.524599,21.794275,0
              -105.522944,21.79103,0
              -105.518457,21.782809,0
              -105.5167,21.779346,0
              -105.515094,21.776395,0
              -105.512888,21.771903,0
              -105.507025,21.760479,0
              -105.50359,21.753645,0
              -105.5001,21.747405,0
              -105.499136,21.745027,0
              -105.497746,21.740058,0
              -105.497286,21.738875,0
              -105.496418,21.737492,0
              -105.495645,21.735772,0
              -105.493879,21.733746,0
              -105.492644,21.733342,0
              -105.49091,21.732421,0
              -105.489391,21.730902,0
              -105.488523,21.729676,0
              -105.488623,21.72659,0
              -105.48955,21.726231,0
              -105.489797,21.724891,0
              -105.489613,21.723899,0
              -105.488681,21.721709,0
              -105.4874,21.719994,0
              -105.486237,21.716929,0
              -105.486195,21.71608,0
              -105.484199,21.711606,0
              -105.481158,21.705361,0
              -105.477513,21.698211,0
              -105.475502,21.693813,0
              -105.471864,21.686649,0
              -105.468749,21.680829,0
              -105.463843,21.670856,0
              -105.462885,21.669539,0
              -105.459911,21.663769,0
              -105.453796,21.652846,0
              -105.452077,21.649216,0
              -105.449839,21.643562,0
              -105.447771,21.639976,0
              -105.44716,21.638561,0
              -105.446908,21.636341,0
              -105.447436,21.634119,0
              -105.444675,21.629444,0
              -105.445625,21.627978,0
              -105.445427,21.626894,0
              -105.444636,21.624719,0
              -105.443794,21.623802,0
              -105.439152,21.620096,0
              -105.4358,21.61797,0
              -105.430165,21.614129,0
              -105.425551,21.610883,0
              -105.423673,21.609691,0
              -105.419616,21.606659,0
              -105.418573,21.605987,0
              -105.410563,21.599993,0
              -105.40604,21.597178,0
              -105.403461,21.596139,0
              -105.401694,21.594888,0
              -105.395469,21.591161,0
              -105.390397,21.588328,0
              -105.386655,21.586103,0
              -105.384487,21.58469,0
              -105.383727,21.584484,0
              -105.376361,21.580345,0
              -105.372975,21.578377,0
              -105.366847,21.575142,0
              -105.365046,21.574069,0
              -105.358555,21.570689,0
              -105.354488,21.56842,0
              -105.346251,21.563955,0
              -105.341268,21.56101,0
              -105.339387,21.560087,0
              -105.333393,21.556478,0
              -105.330685,21.554953,0
              -105.324805,21.551376,0
              -105.316206,21.545762,0
              -105.314875,21.544988,0
              -105.305779,21.538767,0
              -105.3008,21.53516,0
              -105.299424,21.533974,0
              -105.29639,21.532111,0
              -105.292509,21.529221,0
              -105.290824,21.527695,0
              -105.289925,21.526467,0
              -105.286772,21.529455,0
              -105.283424,21.528086,0
              -105.278659,21.524539,0
              -105.27819,21.52443,0
              -105.274789,21.521843,0
              -105.271079,21.518762,0
              -105.26779,21.515586,0
              -105.267367,21.513599,0
              -105.265501,21.512065,0
              -105.264988,21.512127,0
              -105.264681,21.513031,0
              -105.263074,21.512732,0
              -105.262174,21.513251,0
              -105.262135,21.513762,0
              -105.260541,21.514788,0
              -105.259892,21.514724,0
              -105.257341,21.515787,0
              -105.254729,21.515284,0
              -105.253861,21.514954,0
              -105.25224,21.513816,0
              -105.252313,21.51286,0
              -105.25182,21.513147,0
              -105.250599,21.512549,0
              -105.250312,21.511805,0
              -105.250255,21.513276,0
              -105.249464,21.513443,0
              -105.24813,21.512679,0
              -105.248643,21.513472,0
              -105.248288,21.514502,0
              -105.247142,21.515114,0
              -105.246965,21.515778,0
              -105.247754,21.515767,0
              -105.24815,21.517005,0
              -105.248833,21.517903,0
              -105.249304,21.519606,0
              -105.24802,21.522018,0
              -105.248636,21.522833,0
              -105.248518,21.523502,0
              -105.247633,21.524604,0
              -105.246196,21.525679,0
              -105.244056,21.526495,0
              -105.241871,21.526878,0
              -105.237483,21.527102,0
              -105.234529,21.526642,0
              -105.232317,21.525945,0
              -105.227517,21.523378,0
              -105.224762,21.521337,0
              -105.220822,21.517667,0
              -105.218743,21.515625,0
              -105.211421,21.50808,0
              -105.205923,21.501874,0
              -105.202151,21.497492,0
              -105.198515,21.492782,0
              -105.197392,21.490128,0
              -105.197276,21.488812,0
              -105.197949,21.486795,0
              -105.199692,21.484239,0
              -105.200503,21.482425,0
              -105.201396,21.481147,0
              -105.198973,21.47805,0
              -105.194452,21.472078,0
              -105.192069,21.46877,0
              -105.189734,21.46513,0
              -105.188753,21.46296,0
              -105.188679,21.461341,0
              -105.188086,21.460123,0
              -105.187908,21.457798,0
              -105.188573,21.456552,0
              -105.188251,21.454514,0
              -105.188528,21.452879,0
              -105.189068,21.451281,0
              -105.18838,21.448204,0
              -105.188279,21.446086,0
              -105.188521,21.445162,0
              -105.189324,21.443667,0
              -105.19087,21.443214,0
              -105.191427,21.441021,0
              -105.192204,21.440389,0
              -105.193974,21.436982,0
              -105.195278,21.43619,0
              -105.196651,21.436288,0
              -105.199167,21.436864,0
              -105.200374,21.436873,0
              -105.202134,21.436032,0
              -105.203187,21.43468,0
              -105.203591,21.432203,0
              -105.204193,21.430358,0
              -105.205043,21.430282,0
              -105.20617,21.429345,0
              -105.206125,21.428698,0
              -105.205453,21.427391,0
              -105.205146,21.425738,0
              -105.205305,21.425118,0
              -105.206998,21.423586,0
              -105.207534,21.421516,0
              -105.20794,21.42106,0
              -105.208314,21.418798,0
              -105.208787,21.418228,0
              -105.210159,21.417415,0
              -105.212482,21.416491,0
              -105.213917,21.41542,0
              -105.214968,21.413795,0
              -105.215409,21.411969,0
              -105.216992,21.411044,0
              -105.21801,21.410732,0
              -105.218502,21.409702,0
              -105.218592,21.407761,0
              -105.218904,21.406693,0
              -105.219383,21.406486,0
              -105.220171,21.405376,0
              -105.220271,21.404633,0
              -105.219831,21.403403,0
              -105.219496,21.401582,0
              -105.218777,21.401217,0
              -105.21821,21.396981,0
              -105.218356,21.393597,0
              -105.219125,21.390165,0
              -105.220033,21.387882,0
              -105.221753,21.385394,0
              -105.222521,21.385053,0
              -105.223985,21.384964,0
              -105.225572,21.385215,0
              -105.227769,21.385933,0
              -105.229157,21.386865,0
              -105.230697,21.38641,0
              -105.230851,21.385921,0
              -105.22985,21.385145,0
              -105.229877,21.384555,0
              -105.228992,21.383445,0
              -105.229184,21.378729,0
              -105.229832,21.375784,0
              -105.230972,21.373425,0
              -105.231954,21.372129,0
              -105.232801,21.371912,0
              -105.235856,21.373072,0
              -105.237267,21.373297,0
              -105.238128,21.373065,0
              -105.23868,21.372451,0
              -105.238714,21.371341,0
              -105.237441,21.370736,0
              -105.236936,21.366139,0
              -105.237117,21.363943,0
              -105.238741,21.362811,0
              -105.239099,21.362041,0
              -105.238452,21.360976,0
              -105.23856,21.358439,0
              -105.239122,21.357631,0
              -105.238738,21.357173,0
              -105.238801,21.355747,0
              -105.23914,21.355249,0
              -105.239768,21.352796,0
              -105.240549,21.35198,0
              -105.242204,21.351499,0
              -105.243247,21.353046,0
              -105.243863,21.353038,0
              -105.244344,21.350946,0
              -105.247138,21.347896,0
              -105.248189,21.347291,0
              -105.24739,21.346893,0
              -105.246083,21.347163,0
              -105.244671,21.346991,0
              -105.244278,21.344364,0
              -105.242419,21.339569,0
              -105.239609,21.33289,0
              -105.237535,21.327753,0
              -105.235171,21.320695,0
              -105.232798,21.312982,0
              -105.230609,21.305245,0
              -105.22828,21.295775,0
              -105.226854,21.288586,0
              -105.225987,21.285025,0
              -105.22538,21.280662,0
              -105.224749,21.276963,0
              -105.223972,21.270439,0
              -105.221181,21.254651,0
              -105.220341,21.249575,0
              -105.219589,21.24449,0
              -105.219022,21.239502,0
              -105.218724,21.236229,0
              -105.218391,21.23109,0
              -105.217984,21.223604,0
              -105.216926,21.210909,0
              -105.216382,21.205007,0
              -105.216431,21.203756,0
              -105.21691,21.201825,0
              -105.217959,21.199525,0
              -105.219369,21.19906,0
              -105.220163,21.199322,0
              -105.221966,21.198058,0
              -105.223897,21.196316,0
              -105.223925,21.194557,0
              -105.224945,21.193812,0
              -105.22479,21.19245,0
              -105.227399,21.189837,0
              -105.228085,21.188956,0
              -105.22744,21.188315,0
              -105.228153,21.187288,0
              -105.230368,21.186982,0
              -105.231215,21.186489,0
              -105.231167,21.185215,0
              -105.231439,21.183958,0
              -105.232953,21.182485,0
              -105.233274,21.179976,0
              -105.233045,21.178254,0
              -105.23243,21.17695,0
              -105.23048,21.175558,0
              -105.230215,21.174843,0
              -105.229221,21.174268,0
              -105.228413,21.17238,0
              -105.22853,21.171588,0
              -105.229379,21.170294,0
              -105.229825,21.170076,0
              -105.231554,21.171536,0
              -105.232404,21.167749,0
              -105.231989,21.166949,0
              -105.232244,21.165023,0
              -105.231671,21.164304,0
              -105.22997,21.164584,0
              -105.229122,21.164348,0
              -105.228585,21.165096,0
              -105.227442,21.165735,0
              -105.22723,21.165014,0
              -105.225809,21.165182,0
              -105.224864,21.164082,0
              -105.223941,21.162027,0
              -105.223686,21.159047,0
              -105.223801,21.158167,0
              -105.225246,21.155714,0
              -105.225887,21.154236,0
              -105.227289,21.152775,0
              -105.227564,21.151497,0
              -105.22917,21.150939,0
              -105.229549,21.149853,0
              -105.230472,21.14946,0
              -105.231655,21.149818,0
              -105.231603,21.149121,0
              -105.232743,21.145807,0
              -105.235102,21.145783,0
              -105.235932,21.145166,0
              -105.234801,21.143785,0
              -105.236126,21.140104,0
              -105.234943,21.14085,0
              -105.234091,21.140103,0
              -105.231514,21.139497,0
              -105.231281,21.138754,0
              -105.231998,21.138554,0
              -105.234145,21.137336,0
              -105.233594,21.136264,0
              -105.236493,21.134275,0
              -105.238787,21.132996,0
              -105.23895,21.130681,0
              -105.238667,21.128794,0
              -105.238789,21.127568,0
              -105.237647,21.125482,0
              -105.237675,21.123756,0
              -105.238277,21.123645,0
              -105.23773,21.123138,0
              -105.23773,21.121629,0
              -105.236411,21.121767,0
              -105.235946,21.121458,0
              -105.234033,21.120981,0
              -105.233474,21.121153,0
              -105.23244,21.120456,0
              -105.231586,21.119239,0
              -105.230995,21.119062,0
              -105.230659,21.118323,0
              -105.229858,21.117763,0
              -105.228843,21.111564,0
              -105.228502,21.107974,0
              -105.228281,21.10357,0
              -105.228357,21.099719,0
              -105.228833,21.093346,0
              -105.229158,21.090798,0
              -105.2301,21.084706,0
              -105.231155,21.079383,0
              -105.232102,21.075371,0
              -105.233475,21.070821,0
              -105.234036,21.068592,0
              -105.23713,21.059892,0
              -105.238769,21.056364,0
              -105.241544,21.051258,0
              -105.243555,21.048194,0
              -105.244161,21.047794,0
              -105.245267,21.048052,0
              -105.245524,21.047227,0
              -105.247598,21.0452,0
              -105.248267,21.044317,0
              -105.249869,21.042835,0
              -105.255277,21.03852,0
              -105.255913,21.03818,0
              -105.256565,21.038512,0
              -105.25701,21.037622,0
              -105.258964,21.035709,0
              -105.260434,21.033982,0
              -105.265864,21.028268,0
              -105.267796,21.026334,0
              -105.271079,21.024054,0
              -105.273739,21.023083,0
              -105.275613,21.023109,0
              -105.27729,21.023771,0
              -105.278618,21.024867,0
              -105.278086,21.025595,0
              -105.277519,21.027253,0
              -105.280829,21.027196,0
              -105.280972,21.028054,0
              -105.282186,21.028369,0
              -105.284976,21.026625,0
              -105.287046,21.025816,0
              -105.292281,21.024949,0
              -105.293337,21.025761,0
              -105.295386,21.02585,0
              -105.295613,21.0266,0
              -105.296806,21.026821,0
              -105.297175,21.027256,0
              -105.297671,21.029482,0
              -105.298232,21.031265,0
              -105.298773,21.03191,0
              -105.300315,21.032819,0
              -105.302692,21.033178,0
              -105.303352,21.033802,0
              -105.303062,21.034297,0
              -105.30341,21.035343,0
              -105.30466,21.035148,0
              -105.305986,21.036336,0
              -105.308501,21.036649,0
              -105.310412,21.036328,0
              -105.313102,21.034942,0
              -105.313495,21.033478,0
              -105.313079,21.032675,0
              -105.313311,21.031011,0
              -105.312973,21.030147,0
              -105.313563,21.02709,0
              -105.314272,21.022552,0
              -105.3156,21.016282,0
              -105.317075,21.010329,0
              -105.318288,21.006479,0
              -105.318915,21.005002,0
              -105.320029,21.00349,0
              -105.320783,21.001559,0
              -105.321354,21.000676,0
              -105.322069,21.000759,0
              -105.323737,20.999601,0
              -105.324935,20.997558,0
              -105.326109,20.997327,0
              -105.326766,20.996534,0
              -105.326641,20.995417,0
              -105.327449,20.99399,0
              -105.327751,20.992311,0
              -105.329873,20.98844,0
              -105.331636,20.985747,0
              -105.33349,20.983947,0
              -105.334009,20.984348,0
              -105.334854,20.983826,0
              -105.334878,20.98338,0
              -105.335789,20.983001,0
              -105.336458,20.982101,0
              -105.337856,20.98078,0
              -105.338478,20.980516,0
              -105.339318,20.979509,0
              -105.340596,20.97866,0
              -105.341758,20.978602,0
              -105.34372,20.97956,0
              -105.345226,20.979083,0
              -105.346882,20.975561,0
              -105.348237,20.973664,0
              -105.348726,20.973412,0
              -105.34984,20.971343,0
              -105.350682,20.970674,0
              -105.350453,20.969852,0
              -105.351885,20.96715,0
              -105.35225,20.966085,0
              -105.354494,20.962065,0
              -105.356743,20.958271,0
              -105.358143,20.956297,0
              -105.359104,20.955258,0
              -105.36085,20.954173,0
              -105.362018,20.953941,0
              -105.363106,20.955096,0
              -105.363654,20.955133,0
              -105.366104,20.9543,0
              -105.36686,20.9546,0
              -105.367107,20.955539,0
              -105.367723,20.954468,0
              -105.368793,20.953206,0
              -105.36946,20.952833,0
              -105.37042,20.952997,0
              -105.371697,20.950567,0
              -105.372474,20.949982,0
              -105.373568,20.948388,0
              -105.374248,20.948037,0
              -105.37494,20.947063,0
              -105.376348,20.945651,0
              -105.378985,20.944761,0
              -105.380898,20.945126,0
              -105.381467,20.944619,0
              -105.382589,20.944697,0
              -105.383509,20.944226,0
              -105.383784,20.943507,0
              -105.384622,20.942813,0
              -105.385099,20.940871,0
              -105.386054,20.93906,0
              -105.387485,20.937244,0
              -105.388989,20.936447,0
              -105.390355,20.937346,0
              -105.391251,20.936851,0
              -105.391591,20.935436,0
              -105.39301,20.933961,0
              -105.394373,20.934025,0
              -105.395744,20.933633,0
              -105.397864,20.931965,0
              -105.398728,20.932188,0
              -105.401726,20.931377,0
              -105.401794,20.929847,0
              -105.402487,20.927739,0
              -105.402886,20.927439,0
              -105.403874,20.924791,0
              -105.405432,20.921664,0
              -105.406042,20.92163,0
              -105.405889,20.920933,0
              -105.407038,20.918915,0
              -105.407799,20.918714,0
              -105.408398,20.917556,0
              -105.409959,20.916882,0
              -105.410181,20.915351,0
              -105.41153,20.913117,0
              -105.411734,20.912031,0
              -105.411214,20.911725,0
              -105.413621,20.907004,0
              -105.415939,20.901764,0
              -105.416967,20.900556,0
              -105.417834,20.898758,0
              -105.418585,20.897627,0
              -105.419511,20.897002,0
              -105.420355,20.897687,0
              -105.421231,20.897949,0
              -105.421511,20.89729,0
              -105.420798,20.89659,0
              -105.421004,20.895899,0
              -105.422217,20.893951,0
              -105.423929,20.890443,0
              -105.425592,20.886803,0
              -105.428275,20.88241,0
              -105.429584,20.881664,0
              -105.430465,20.879945,0
              -105.432028,20.877703,0
              -105.434819,20.874398,0
              -105.437093,20.872633,0
              -105.439502,20.871908,0
              -105.440641,20.870932,0
              -105.441911,20.870226,0
              -105.444053,20.870136,0
              -105.445151,20.871527,0
              -105.445055,20.872544,0
              -105.445962,20.872893,0
              -105.446264,20.872384,0
              -105.447184,20.872136,0
              -105.448128,20.872295,0
              -105.44881,20.873044,0
              -105.449765,20.873508,0
              -105.449841,20.875302,0
              -105.451031,20.876343,0
              -105.452875,20.874195,0
              -105.452601,20.873779,0
              -105.453233,20.872565,0
              -105.453869,20.870665,0
              -105.453627,20.869344,0
              -105.454012,20.868069,0
              -105.454534,20.867967,0
              -105.455035,20.866479,0
              -105.454735,20.86621,0
              -105.455561,20.863426,0
              -105.455018,20.86269,0
              -105.456346,20.858575,0
              -105.45746,20.857804,0
              -105.457902,20.85631,0
              -105.458637,20.855501,0
              -105.459684,20.855536,0
              -105.461069,20.853939,0
              -105.461067,20.85326,0
              -105.461664,20.851797,0
              -105.462387,20.851595,0
              -105.462536,20.850731,0
              -105.461692,20.849587,0
              -105.462369,20.846885,0
              -105.463605,20.843725,0
              -105.463952,20.843487,0
              -105.464174,20.841611,0
              -105.465481,20.840592,0
              -105.464819,20.839288,0
              -105.465447,20.838061,0
              -105.46551,20.836349,0
              -105.466365,20.835395,0
              -105.466185,20.834887,0
              -105.467412,20.833416,0
              -105.467633,20.832662,0
              -105.468372,20.831825,0
              -105.469671,20.831209,0
              -105.468812,20.830224,0
              -105.471036,20.828104,0
              -105.471276,20.826682,0
              -105.472133,20.826375,0
              -105.472502,20.825164,0
              -105.473493,20.824738,0
              -105.472987,20.824066,0
              -105.47348,20.822349,0
              -105.474188,20.822354,0
              -105.474942,20.821763,0
              -105.4749,20.82078,0
              -105.476156,20.819917,0
              -105.476653,20.819955,0
              -105.477168,20.818712,0
              -105.476238,20.817927,0
              -105.476478,20.816684,0
              -105.477291,20.814518,0
              -105.478385,20.813583,0
              -105.478326,20.812886,0
              -105.47895,20.811978,0
              -105.479443,20.810168,0
              -105.481953,20.805873,0
              -105.484922,20.800232,0
              -105.486681,20.797321,0
              -105.488164,20.795504,0
              -105.491661,20.791657,0
              -105.493831,20.789565,0
              -105.496339,20.788119,0
              -105.496889,20.78834,0
              -105.498269,20.787549,0
              -105.499183,20.786357,0
              -105.500714,20.784996,0
              -105.502706,20.783905,0
              -105.507256,20.782314,0
              -105.508801,20.782336,0
              -105.510699,20.782724,0
              -105.512165,20.783463,0
              -105.512802,20.784379,0
              -105.513112,20.785794,0
              -105.51508,20.786226,0
              -105.516674,20.788078,0
              -105.518321,20.78882,0
              -105.519025,20.791861,0
              -105.52021,20.792085,0
              -105.521027,20.791154,0
              -105.522241,20.790514,0
              -105.523412,20.790698,0
              -105.526781,20.788985,0
              -105.527119,20.788162,0
              -105.52846,20.787869,0
              -105.52809,20.786784,0
              -105.528451,20.785627,0
              -105.529961,20.78488,0
              -105.530154,20.784295,0
              -105.52965,20.78394,0
              -105.530266,20.782316,0
              -105.531434,20.781485,0
              -105.530867,20.78046,0
              -105.531316,20.779318,0
              -105.532277,20.778421,0
              -105.533177,20.776929,0
              -105.534651,20.776547,0
              -105.53455,20.775509,0
              -105.535299,20.77451,0
              -105.536545,20.773668,0
              -105.537847,20.771913,0
              -105.538325,20.771902,0
              -105.539353,20.770779,0
              -105.538718,20.769678,0
              -105.538635,20.76845,0
              -105.53781,20.766831,0
              -105.537526,20.765021,0
              -105.537736,20.76364,0
              -105.538245,20.762315,0
              -105.537903,20.761668,0
              -105.536713,20.760983,0
              -105.53527,20.759143,0
              -105.53509,20.757806,0
              -105.534639,20.757414,0
              -105.532779,20.757557,0
              -105.532154,20.758085,0
              -105.531725,20.759264,0
              -105.531556,20.760629,0
              -105.530493,20.762504,0
              -105.528183,20.765006,0
              -105.527508,20.765224,0
              -105.524449,20.767354,0
              -105.523901,20.768197,0
              -105.521868,20.769482,0
              -105.519627,20.771226,0
              -105.515935,20.771348,0
              -105.514291,20.771786,0
              -105.512265,20.772081,0
              -105.511002,20.771966,0
              -105.507288,20.770666,0
              -105.504055,20.769339,0
              -105.501508,20.767549,0
              -105.500384,20.767744,0
              -105.498699,20.767149,0
              -105.497332,20.765941,0
              -105.494486,20.764057,0
              -105.492569,20.76345,0
              -105.492054,20.762936,0
              -105.490136,20.761847,0
              -105.488633,20.759769,0
              -105.486796,20.759379,0
              -105.486,20.758619,0
              -105.484716,20.758229,0
              -105.483156,20.757194,0
              -105.482144,20.75621,0
              -105.481871,20.754882,0
              -105.480728,20.754733,0
              -105.478894,20.754832,0
              -105.477602,20.754511,0
              -105.477484,20.753549,0
              -105.476781,20.753994,0
              -105.475824,20.752278,0
              -105.474758,20.753121,0
              -105.473765,20.753552,0
              -105.473546,20.754057,0
              -105.471377,20.755119,0
              -105.468876,20.754611,0
              -105.467983,20.755741,0
              -105.466604,20.755804,0
              -105.465432,20.755363,0
              -105.463927,20.755213,0
              -105.463268,20.753842,0
              -105.46253,20.753752,0
              -105.459611,20.751848,0
              -105.45891,20.752789,0
              -105.457051,20.752744,0
              -105.456091,20.752045,0
              -105.452925,20.751482,0
              -105.448988,20.749924,0
              -105.446949,20.749503,0
              -105.444614,20.747951,0
              -105.443574,20.748675,0
              -105.441677,20.748351,0
              -105.440338,20.749112,0
              -105.437648,20.748324,0
              -105.435448,20.74787,0
              -105.433125,20.747561,0
              -105.431764,20.746691,0
              -105.423004,20.742044,0
              -105.42008,20.740106,0
              -105.418542,20.738944,0
              -105.413671,20.736268,0
              -105.411829,20.735465,0
              -105.410905,20.736294,0
              -105.408854,20.736382,0
              -105.408337,20.736659,0
              -105.406655,20.736577,0
              -105.406248,20.737057,0
              -105.405487,20.737037,0
              -105.403524,20.736103,0
              -105.402354,20.736268,0
              -105.401652,20.735744,0
              -105.401937,20.734991,0
              -105.400395,20.735629,0
              -105.399162,20.734651,0
              -105.398642,20.735948,0
              -105.397584,20.73586,0
              -105.397579,20.73667,0
              -105.395773,20.73788,0
              -105.394683,20.737896,0
              -105.394251,20.738836,0
              -105.392456,20.739057,0
              -105.390579,20.740569,0
              -105.388732,20.74077,0
              -105.388316,20.740386,0
              -105.387398,20.742242,0
              -105.387467,20.743008,0
              -105.3867,20.744219,0
              -105.380516,20.746839,0
              -105.376864,20.747413,0
              -105.376378,20.749054,0
              -105.377086,20.747584,0
              -105.379106,20.747216,0
              -105.37947,20.747949,0
              -105.379863,20.747121,0
              -105.380867,20.747008,0
              -105.381236,20.748799,0
              -105.38051,20.749838,0
              -105.378976,20.750428,0
              -105.377239,20.750817,0
              -105.377267,20.751124,0
              -105.375598,20.75154,0
              -105.37306,20.751106,0
              -105.371616,20.75128,0
              -105.370756,20.752246,0
              -105.370992,20.753278,0
              -105.37061,20.754538,0
              -105.370139,20.755077,0
              -105.369828,20.756275,0
              -105.368656,20.75707,0
              -105.366163,20.758014,0
              -105.365798,20.75884,0
              -105.365576,20.760454,0
              -105.364183,20.761928,0
              -105.362776,20.762482,0
              -105.358787,20.762755,0
              -105.356553,20.761998,0
              -105.354131,20.761625,0
              -105.351911,20.761077,0
              -105.350749,20.760523,0
              -105.348121,20.759897,0
              -105.346797,20.759439,0
              -105.344693,20.758375,0
              -105.340955,20.755863,0
              -105.338715,20.753726,0
              -105.335709,20.751898,0
              -105.332743,20.749646,0
              -105.329102,20.746495,0
              -105.325215,20.742692,0
              -105.319173,20.736311,0
              -105.316202,20.732897,0
              -105.313479,20.729453,0
              -105.31235,20.727869,0
              -105.309899,20.724052,0
              -105.308635,20.721864,0
              -105.306552,20.717875,0
              -105.305122,20.714502,0
              -105.301271,20.705128,0
              -105.297421,20.694293,0
              -105.296141,20.691559,0
              -105.29521,20.689222,0
              -105.293691,20.687568,0
              -105.292475,20.685754,0
              -105.290021,20.681684,0
              -105.287108,20.676536,0
              -105.286376,20.675045,0
              -105.284677,20.672651,0
              -105.283783,20.671982,0
              -105.283025,20.672318,0
              -105.281,20.671966,0
              -105.281426,20.67306,0
              -105.280534,20.673253,0
              -105.279291,20.672369,0
              -105.278254,20.672415,0
              -105.276739,20.671909,0
              -105.275551,20.672404,0
              -105.274354,20.673712,0
              -105.274361,20.675622,0
              -105.276546,20.675534,0
              -105.278394,20.675876,0
              -105.279081,20.677882,0
              -105.27938,20.679897,0
              -105.278932,20.681335,0
              -105.278405,20.681982,0
              -105.27683,20.682517,0
              -105.27578,20.683146,0
              -105.27403,20.682736,0
              -105.272423,20.68384,0
              -105.271123,20.683072,0
              -105.266516,20.679867,0
              -105.265731,20.678858,0
              -105.264714,20.678745,0
              -105.261252,20.679816,0
              -105.260344,20.680784,0
              -105.260265,20.685628,0
              -105.260642,20.68667,0
              -105.262166,20.687818,0
              -105.262684,20.689192,0
              -105.261291,20.691729,0
              -105.259831,20.692965,0
              -105.257155,20.693914,0
              -105.256257,20.695337,0
              -105.256734,20.697585,0
              -105.256929,20.699487,0
              -105.256792,20.700596,0
              -105.255947,20.702766,0
              -105.253915,20.704435,0
              -105.252877,20.704908,0
              -105.250442,20.705013,0
              -105.248655,20.704757,0
              -105.244312,20.703448,0
              -105.24333,20.703525,0
              -105.242573,20.704242,0
              -105.242013,20.705658,0
              -105.242179,20.707776,0
              -105.243372,20.709818,0
              -105.245186,20.710936,0
              -105.245866,20.711886,0
              -105.246199,20.712941,0
              -105.246027,20.714322,0
              -105.24531,20.715055,0
              -105.244129,20.71743,0
              -105.243697,20.719741,0
              -105.245206,20.722254,0
              -105.245645,20.724116,0
              -105.245552,20.724749,0
              -105.244677,20.726593,0
              -105.243925,20.726826,0
              -105.242055,20.726504,0
              -105.24107,20.726127,0
              -105.238539,20.726048,0
              -105.237256,20.726888,0
              -105.236916,20.728235,0
              -105.237373,20.730132,0
              -105.238451,20.732264,0
              -105.238509,20.735226,0
              -105.237806,20.737519,0
              -105.237719,20.738727,0
              -105.238858,20.741559,0
              -105.239533,20.744116,0
              -105.239916,20.747351,0
              -105.238748,20.748141,0
              -105.237109,20.748026,0
              -105.235166,20.747418,0
              -105.234159,20.747551,0
              -105.232763,20.748718,0
              -105.231646,20.750294,0
              -105.230688,20.75132,0
              -105.229608,20.751835,0
              -105.228063,20.752073,0
              -105.226622,20.753218,0
              -105.22553,20.753611,0
              -105.223876,20.755361,0
              -105.222854,20.756165,0
              -105.221722,20.757851,0
              -105.221377,20.75946,0
              -105.220336,20.761195,0
              -105.217736,20.762604,0
              -105.216659,20.76273,0
              -105.214481,20.763397,0
              -105.212141,20.765488,0
              -105.210131,20.766536,0
              -105.208862,20.766081,0
              -105.207817,20.764563,0
              -105.206919,20.763897,0
              -105.205825,20.764145,0
              -105.204225,20.765508,0
              -105.202215,20.766785,0
              -105.201004,20.768904,0
              -105.200793,20.77307,0
              -105.198537,20.774731,0
              -105.196961,20.777171,0
              -105.196189,20.7768,0
              -105.187593,20.773334,0
              -105.178177,20.769633,0
              -105.17605,20.768638,0
              -105.173397,20.767711,0
              -105.170632,20.774013,0
              -105.167459,20.780838,0
              -105.162276,20.792519,0
              -105.170974,20.796109,0
              -105.167557,20.803744,0
              -105.172761,20.806038,0
              -105.171183,20.810234,0
              -105.171055,20.811212,0
              -105.17232,20.811193,0
              -105.173955,20.812739,0
              -105.173943,20.813943,0
              -105.172077,20.816033,0
              -105.171186,20.816802,0
              -105.171832,20.820161,0
              -105.171341,20.821084,0
              -105.169678,20.821525,0
              -105.167085,20.820349,0
              -105.165723,20.82055,0
              -105.165427,20.821177,0
              -105.165972,20.823824,0
              -105.165706,20.825425,0
              -105.165219,20.825989,0
              -105.165075,20.827469,0
              -105.165238,20.828413,0
              -105.164553,20.829669,0
              -105.162628,20.83012,0
              -105.161636,20.83114,0
              -105.162154,20.832617,0
              -105.163582,20.833631,0
              -105.16385,20.834315,0
              -105.163644,20.83591,0
              -105.162456,20.837124,0
              -105.161409,20.838721,0
              -105.161226,20.839988,0
              -105.161097,20.843624,0
              -105.161455,20.845127,0
              -105.162279,20.846509,0
              -105.16283,20.847896,0
              -105.162788,20.84869,0
              -105.161223,20.849867,0
              -105.159016,20.84989,0
              -105.15779,20.850108,0
              -105.156971,20.850668,0
              -105.155701,20.8523,0
              -105.155405,20.853065,0
              -105.155569,20.853888,0
              -105.157092,20.855482,0
              -105.157947,20.855442,0
              -105.160113,20.856212,0
              -105.160563,20.857415,0
              -105.159435,20.858726,0
              -105.155976,20.860905,0
              -105.154514,20.860844,0
              -105.152912,20.861667,0
              -105.152622,20.862624,0
              -105.153561,20.864736,0
              -105.153914,20.867001,0
              -105.153501,20.868395,0
              -105.152966,20.86894,0
              -105.151286,20.869198,0
              -105.150067,20.868388,0
              -105.149279,20.868307,0
              -105.148191,20.868669,0
              -105.146674,20.869938,0
              -105.145883,20.871598,0
              -105.144974,20.872559,0
              -105.143112,20.873533,0
              -105.141194,20.875606,0
              -105.139954,20.880255,0
              -105.139146,20.881939,0
              -105.139428,20.882265,0
              -105.141143,20.882942,0
              -105.142548,20.883772,0
              -105.14304,20.885241,0
              -105.142874,20.885956,0
              -105.141857,20.887167,0
              -105.133513,20.88826,0
              -105.133173,20.888818,0
              -105.132166,20.889252,0
              -105.13022,20.888632,0
              -105.12811,20.889242,0
              -105.125918,20.890569,0
              -105.123173,20.89312,0
              -105.120177,20.895386,0
              -105.117928,20.896433,0
              -105.117127,20.896972,0
              -105.116729,20.897903,0
              -105.117605,20.899009,0
              -105.117671,20.900312,0
              -105.117221,20.900813,0
              -105.115484,20.900884,0
              -105.114348,20.9002,0
              -105.113084,20.899881,0
              -105.111957,20.90043,0
              -105.11145,20.901892,0
              -105.112233,20.903954,0
              -105.112182,20.904783,0
              -105.111317,20.905556,0
              -105.110186,20.906089,0
              -105.107436,20.906899,0
              -105.105682,20.907917,0
              -105.104476,20.907846,0
              -105.103974,20.90842,0
              -105.10422,20.909332,0
              -105.104903,20.910104,0
              -105.104958,20.911557,0
              -105.104493,20.912322,0
              -105.103083,20.913066,0
              -105.100777,20.913606,0
              -105.098756,20.914599,0
              -105.097389,20.915859,0
              -105.09778,20.916536,0
              -105.098975,20.917131,0
              -105.099356,20.918765,0
              -105.098641,20.919434,0
              -105.09765,20.919716,0
              -105.096035,20.919467,0
              -105.094544,20.919517,0
              -105.093466,20.919894,0
              -105.092303,20.92075,0
              -105.089865,20.921914,0
              -105.08872,20.921844,0
              -105.088238,20.923062,0
              -105.086759,20.923137,0
              -105.085533,20.923881,0
              -105.083654,20.926832,0
              -105.081155,20.92985,0
              -105.08085,20.931085,0
              -105.080337,20.931471,0
              -105.078142,20.931109,0
              -105.076062,20.929984,0
              -105.075049,20.929659,0
              -105.073525,20.928074,0
              -105.072802,20.927995,0
              -105.071492,20.92898,0
              -105.070239,20.930685,0
              -105.069356,20.931411,0
              -105.066962,20.931828,0
              -105.065871,20.931215,0
              -105.065219,20.931321,0
              -105.063378,20.93288,0
              -105.061313,20.933379,0
              -105.059883,20.93345,0
              -105.059311,20.932002,0
              -105.058143,20.930931,0
              -105.057458,20.931049,0
              -105.056313,20.931979,0
              -105.05444,20.932849,0
              -105.053828,20.932819,0
              -105.051196,20.931778,0
              -105.050206,20.931704,0
              -105.04895,20.932449,0
              -105.048203,20.934256,0
              -105.046805,20.934284,0
              -105.04592,20.933426,0
              -105.044631,20.931441,0
              -105.043524,20.931293,0
              -105.042399,20.931628,0
              -105.041361,20.931367,0
              -105.03967,20.930245,0
              -105.039163,20.929432,0
              -105.038564,20.927512,0
              -105.037085,20.92605,0
              -105.036343,20.924887,0
              -105.036319,20.923813,0
              -105.037328,20.921179,0
              -105.038724,20.919146,0
              -105.039144,20.916746,0
              -105.039073,20.913115,0
              -105.036249,20.912029,0
              -105.035436,20.911105,0
              -105.031613,20.909171,0
              -105.03018,20.909045,0
              -105.028842,20.909753,0
              -105.028439,20.91117,0
              -105.027597,20.911424,0
              -105.026199,20.911411,0
              -105.023873,20.910785,0
              -105.022577,20.910873,0
              -105.021247,20.911457,0
              -105.020184,20.913454,0
              -105.020274,20.914674,0
              -105.020737,20.915663,0
              -105.020881,20.916854,0
              -105.019949,20.918232,0
              -105.018058,20.91846,0
              -105.015875,20.917712,0
              -105.014466,20.917934,0
              -105.012055,20.918615,0
              -105.009965,20.919911,0
              -105.006809,20.922393,0
              -105.005338,20.922154,0
              -105.003928,20.919606,0
              -105.002436,20.916182,0
              -105.002158,20.915919,0
              -105.002443,20.91416,0
              -105.002276,20.913076,0
              -105.004033,20.912177,0
              -105.003952,20.911263,0
              -105.002701,20.910628,0
              -105.001869,20.910588,0
              -105.00092,20.911018,0
              -105.00025,20.911706,0
              -104.9999,20.913623,0
              -104.998236,20.915811,0
              -104.99776,20.919135,0
              -104.996878,20.919949,0
              -104.995544,20.920332,0
              -104.992583,20.920628,0
              -104.991247,20.92151,0
              -104.988781,20.921429,0
              -104.9872,20.920378,0
              -104.986654,20.919268,0
              -104.984747,20.917819,0
              -104.981875,20.914736,0
              -104.977177,20.912687,0
              -104.973945,20.911661,0
              -104.971504,20.910277,0
              -104.96983,20.909107,0
              -104.968822,20.909026,0
              -104.967244,20.909508,0
              -104.966701,20.910296,0
              -104.966449,20.913234,0
              -104.96424,20.91727,0
              -104.963894,20.919126,0
              -104.961084,20.919579,0
              -104.96055,20.919877,0
              -104.959061,20.923686,0
              -104.958478,20.924726,0
              -104.957208,20.926041,0
              -104.953392,20.92926,0
              -104.953164,20.930134,0
              -104.951596,20.930223,0
              -104.949598,20.93073,0
              -104.947663,20.931022,0
              -104.945943,20.932309,0
              -104.944499,20.932778,0
              -104.943138,20.932699,0
              -104.941242,20.935107,0
              -104.939793,20.934961,0
              -104.935436,20.935036,0
              -104.934299,20.934489,0
              -104.933085,20.935735,0
              -104.932487,20.93722,0
              -104.93094,20.937738,0
              -104.929507,20.938536,0
              -104.92834,20.939516,0
              -104.927715,20.939719,0
              -104.926017,20.939577,0
              -104.923104,20.940111,0
              -104.916805,20.94237,0
              -104.915141,20.943191,0
              -104.91423,20.943394,0
              -104.913369,20.944177,0
              -104.912766,20.944293,0
              -104.912186,20.943758,0
              -104.910663,20.943075,0
              -104.906999,20.942118,0
              -104.906473,20.942179,0
              -104.904876,20.944854,0
              -104.904269,20.945572,0
              -104.902165,20.945394,0
              -104.901385,20.945657,0
              -104.899888,20.947103,0
              -104.899108,20.948514,0
              -104.898781,20.950327,0
              -104.898605,20.95244,0
              -104.898756,20.953622,0
              -104.89936,20.954564,0
              -104.900051,20.955029,0
              -104.901723,20.955536,0
              -104.902261,20.956068,0
              -104.902176,20.958508,0
              -104.901438,20.961054,0
              -104.900627,20.962747,0
              -104.899961,20.963509,0
              -104.897068,20.965235,0
              -104.895168,20.965926,0
              -104.893448,20.967057,0
              -104.891133,20.969936,0
              -104.890913,20.97105,0
              -104.891228,20.972422,0
              -104.889542,20.973759,0
              -104.888393,20.973705,0
              -104.886298,20.973222,0
              -104.883299,20.973278,0
              -104.882749,20.973658,0
              -104.88202,20.975424,0
              -104.88115,20.975572,0
              -104.88124,20.976742,0
              -104.882166,20.977933,0
              -104.882329,20.978908,0
              -104.880812,20.98091,0
              -104.878878,20.981346,0
              -104.8764,20.981682,0
              -104.874266,20.981807,0
              -104.873505,20.982358,0
              -104.870617,20.98751,0
              -104.869007,20.990707,0
              -104.867559,20.994589,0
              -104.866869,20.995201,0
              -104.864547,20.995838,0
              -104.863352,20.995949,0
              -104.861368,20.995293,0
              -104.859803,20.99387,0
              -104.857937,20.994357,0
              -104.855598,20.995962,0
              -104.854585,20.997025,0
              -104.853987,20.998041,0
              -104.852257,20.999199,0
              -104.851297,21.000161,0
              -104.851479,21.001518,0
              -104.85335,21.003453,0
              -104.853866,21.004518,0
              -104.853656,21.004958,0
              -104.851977,21.005473,0
              -104.850343,21.005116,0
              -104.847821,21.005565,0
              -104.845206,21.006425,0
              -104.843663,21.005839,0
              -104.842119,21.006061,0
              -104.84119,21.006723,0
              -104.839678,21.012179,0
              -104.839577,21.013002,0
              -104.838347,21.013989,0
              -104.837607,21.015037,0
              -104.837436,21.016105,0
              -104.83835,21.017837,0
              -104.838479,21.019651,0
              -104.837364,21.020059,0
              -104.835389,21.019393,0
              -104.834007,21.017695,0
              -104.832964,21.014713,0
              -104.831864,21.013947,0
              -104.830736,21.014331,0
              -104.829722,21.016676,0
              -104.828164,21.018072,0
              -104.827725,21.018068,0
              -104.825243,21.016638,0
              -104.824364,21.01594,0
              -104.822666,21.015217,0
              -104.821019,21.014824,0
              -104.818263,21.014463,0
              -104.816339,21.014751,0
              -104.815564,21.01545,0
              -104.814573,21.01513,0
              -104.812704,21.01316,0
              -104.810919,21.012041,0
              -104.809412,21.012071,0
              -104.80721,21.01403,0
              -104.804438,21.014866,0
              -104.803453,21.015741,0
              -104.803194,21.016513,0
              -104.802004,21.016515,0
              -104.800721,21.015864,0
              -104.799566,21.015729,0
              -104.796994,21.014429,0
              -104.795449,21.014129,0
              -104.793264,21.015106,0
              -104.79102,21.014849,0
              -104.789322,21.015417,0
              -104.788221,21.016268,0
              -104.787005,21.018061,0
              -104.785809,21.019227,0
              -104.783608,21.020242,0
              -104.783607,21.022771,0
              -104.782462,21.023359,0
              -104.780631,21.021937,0
              -104.779391,21.021182,0
              -104.778213,21.018922,0
              -104.777814,21.017519,0
              -104.775079,21.017531,0
              -104.774162,21.016,0
              -104.774354,21.013692,0
              -104.773312,21.010475,0
              -104.772904,21.009627,0
              -104.771712,21.008601,0
              -104.769209,21.009223,0
              -104.76693,21.010624,0
              -104.765768,21.00996,0
              -104.762575,21.008892,0
              -104.761752,21.009228,0
              -104.761015,21.011408,0
              -104.760288,21.011913,0
              -104.756753,21.012336,0
              -104.75535,21.012375,0
              -104.754025,21.012053,0
              -104.752499,21.01228,0
              -104.751412,21.011821,0
              -104.750893,21.011057,0
              -104.750527,21.009401,0
              -104.749902,21.00904,0
              -104.746245,21.008294,0
              -104.745319,21.008727,0
              -104.744842,21.007094,0
              -104.743608,21.006509,0
              -104.741395,21.006033,0
              -104.739241,21.006142,0
              -104.734964,21.007806,0
              -104.73419,21.007977,0
              -104.732023,21.010341,0
              -104.732072,21.01161,0
              -104.731371,21.012477,0
              -104.729989,21.012288,0
              -104.728473,21.011405,0
              -104.728553,21.009414,0
              -104.728228,21.007459,0
              -104.726129,21.006692,0
              -104.725616,21.006208,0
              -104.725149,21.004777,0
              -104.725761,21.003745,0
              -104.726874,21.003444,0
              -104.726955,21.001995,0
              -104.7257,21.001228,0
              -104.725205,21.000527,0
              -104.725148,20.9994,0
              -104.725506,20.997966,0
              -104.72674,20.99687,0
              -104.727982,20.99505,0
              -104.726705,20.993855,0
              -104.726224,20.992993,0
              -104.72617,20.99145,0
              -104.726974,20.990012,0
              -104.727738,20.987627,0
              -104.727834,20.986668,0
              -104.728465,20.985743,0
              -104.729381,20.985183,0
              -104.729686,20.984236,0
              -104.729363,20.983154,0
              -104.727426,20.982536,0
              -104.723209,20.982803,0
              -104.721606,20.982657,0
              -104.719877,20.981992,0
              -104.71781,20.981811,0
              -104.715076,20.979929,0
              -104.714438,20.979331,0
              -104.714142,20.978445,0
              -104.71451,20.977155,0
              -104.716158,20.974928,0
              -104.715001,20.973883,0
              -104.713432,20.97334,0
              -104.710531,20.974453,0
              -104.70889,20.974417,0
              -104.707465,20.973135,0
              -104.707017,20.971599,0
              -104.708591,20.970331,0
              -104.708298,20.969597,0
              -104.705711,20.966852,0
              -104.702543,20.967234,0
              -104.700781,20.966543,0
              -104.698479,20.965353,0
              -104.69765,20.965366,0
              -104.696941,20.964387,0
              -104.694886,20.962847,0
              -104.69262,20.961674,0
              -104.690278,20.961931,0
              -104.686158,20.961982,0
              -104.684123,20.961911,0
              -104.682768,20.961574,0
              -104.681058,20.960667,0
              -104.680168,20.959526,0
              -104.678947,20.957219,0
              -104.678667,20.954698,0
              -104.67892,20.95357,0
              -104.680207,20.952267,0
              -104.681531,20.952102,0
              -104.681735,20.951684,0
              -104.681545,20.949958,0
              -104.682658,20.949159,0
              -104.682462,20.947478,0
              -104.681841,20.945876,0
              -104.681778,20.944882,0
              -104.681,20.943841,0
              -104.677697,20.943066,0
              -104.67568,20.942797,0
              -104.672494,20.942949,0
              -104.670111,20.941651,0
              -104.669141,20.941308,0
              -104.667165,20.941439,0
              -104.665582,20.942319,0
              -104.664326,20.943264,0
              -104.662452,20.944027,0
              -104.661441,20.943977,0
              -104.661519,20.942159,0
              -104.662214,20.939386,0
              -104.661697,20.937763,0
              -104.660761,20.936555,0
              -104.659608,20.935487,0
              -104.658954,20.934018,0
              -104.658126,20.933226,0
              -104.656375,20.932391,0
              -104.65472,20.932019,0
              -104.652864,20.932169,0
              -104.651696,20.932719,0
              -104.649594,20.933078,0
              -104.648304,20.934215,0
              -104.647622,20.93449,0
              -104.647015,20.935411,0
              -104.645762,20.93527,0
              -104.644124,20.93458,0
              -104.6412,20.933983,0
              -104.639142,20.934224,0
              -104.638094,20.934125,0
              -104.636794,20.933398,0
              -104.634577,20.931852,0
              -104.633112,20.929029,0
              -104.633569,20.928551,0
              -104.632164,20.926687,0
              -104.630801,20.925597,0
              -104.629561,20.925041,0
              -104.629422,20.924335,0
              -104.628533,20.923866,0
              -104.627507,20.923931,0
              -104.624943,20.924958,0
              -104.622661,20.926335,0
              -104.620517,20.925451,0
              -104.619039,20.923794,0
              -104.617764,20.923617,0
              -104.616964,20.923142,0
              -104.61357,20.923037,0
              -104.611838,20.923212,0
              -104.610809,20.92439,0
              -104.610716,20.925568,0
              -104.610202,20.925884,0
              -104.607138,20.926232,0
              -104.603894,20.928891,0
              -104.601782,20.931067,0
              -104.600013,20.931518,0
              -104.59822,20.931189,0
              -104.597184,20.931344,0
              -104.595683,20.93202,0
              -104.594,20.931942,0
              -104.592225,20.931424,0
              -104.59151,20.931531,0
              -104.591151,20.93285,0
              -104.591215,20.934347,0
              -104.590736,20.934619,0
              -104.589011,20.933878,0
              -104.587124,20.933606,0
              -104.585388,20.934144,0
              -104.583482,20.934438,0
              -104.580712,20.933842,0
              -104.578854,20.933686,0
              -104.578166,20.933951,0
              -104.577417,20.933046,0
              -104.576292,20.930707,0
              -104.57419,20.929967,0
              -104.572976,20.929856,0
              -104.571663,20.930222,0
              -104.570896,20.930882,0
              -104.56983,20.93103,0
              -104.568589,20.93043,0
              -104.565737,20.927711,0
              -104.565344,20.926933,0
              -104.564526,20.926271,0
              -104.560208,20.92615,0
              -104.558251,20.924569,0
              -104.556922,20.924152,0
              -104.55691,20.923017,0
              -104.557556,20.9215,0
              -104.55697,20.9202,0
              -104.555943,20.920034,0
              -104.555676,20.919455,0
              -104.555711,20.918115,0
              -104.555032,20.917635,0
              -104.552688,20.91704,0
              -104.5521,20.91753,0
              -104.55114,20.917077,0
              -104.549968,20.915867,0
              -104.549735,20.915196,0
              -104.548723,20.914452,0
              -104.54687,20.91395,0
              -104.544989,20.912717,0
              -104.542852,20.91194,0
              -104.542584,20.911314,0
              -104.542737,20.90869,0
              -104.54398,20.905971,0
              -104.544967,20.903237,0
              -104.544572,20.900644,0
              -104.543756,20.899805,0
              -104.543733,20.898006,0
              -104.542647,20.897209,0
              -104.539616,20.897537,0
              -104.538066,20.897137,0
              -104.535719,20.895858,0
              -104.536026,20.893892,0
              -104.534585,20.891542,0
              -104.534123,20.890355,0
              -104.533289,20.889662,0
              -104.533621,20.888695,0
              -104.534594,20.888295,0
              -104.535083,20.886628,0
              -104.53408,20.885378,0
              -104.534625,20.884036,0
              -104.534072,20.88349,0
              -104.532289,20.883087,0
              -104.531765,20.882567,0
              -104.531065,20.882661,0
              -104.529318,20.884682,0
              -104.529028,20.885634,0
              -104.528199,20.885868,0
              -104.526496,20.885566,0
              -104.524442,20.885762,0
              -104.523459,20.884096,0
              -104.523195,20.882949,0
              -104.523441,20.882294,0
              -104.524642,20.880941,0
              -104.524763,20.880499,0
              -104.522564,20.879708,0
              -104.522226,20.878895,0
              -104.521896,20.876734,0
              -104.521618,20.876557,0
              -104.521898,20.875208,0
              -104.52123,20.873174,0
              -104.51956,20.870338,0
              -104.520011,20.870106,0
              -104.519492,20.869151,0
              -104.51824,20.867995,0
              -104.515378,20.867167,0
              -104.513727,20.866147,0
              -104.513289,20.863333,0
              -104.512588,20.861485,0
              -104.510606,20.859657,0
              -104.509007,20.859589,0
              -104.507251,20.861253,0
              -104.506394,20.860845,0
              -104.506029,20.8591,0
              -104.50476,20.855484,0
              -104.504222,20.851497,0
              -104.504155,20.850259,0
              -104.503749,20.848512,0
              -104.504259,20.846834,0
              -104.503638,20.846122,0
              -104.502345,20.8459,0
              -104.501582,20.845359,0
              -104.501749,20.844484,0
              -104.502837,20.843067,0
              -104.503217,20.841816,0
              -104.500321,20.839919,0
              -104.499806,20.838817,0
              -104.499938,20.838186,0
              -104.498181,20.838784,0
              -104.495907,20.838178,0
              -104.495239,20.838233,0
              -104.493899,20.838974,0
              -104.492095,20.837911,0
              -104.491646,20.836886,0
              -104.490138,20.835019,0
              -104.487067,20.834336,0
              -104.48484,20.832908,0
              -104.484226,20.831576,0
              -104.484526,20.82963,0
              -104.483363,20.826992,0
              -104.482434,20.826106,0
              -104.480874,20.825715,0
              -104.480083,20.824522,0
              -104.480319,20.823256,0
              -104.479076,20.822552,0
              -104.475852,20.823022,0
              -104.475591,20.821731,0
              -104.476365,20.82027,0
              -104.477055,20.819911,0
              -104.476425,20.819503,0
              -104.475189,20.819502,0
              -104.474247,20.819907,0
              -104.47138,20.818139,0
              -104.468973,20.817064,0
              -104.468426,20.816348,0
              -104.466816,20.815276,0
              -104.464306,20.813991,0
              -104.460025,20.813103,0
              -104.460167,20.811944,0
              -104.462956,20.811259,0
              -104.462805,20.8103,0
              -104.461978,20.809659,0
              -104.460141,20.809138,0
              -104.458404,20.808985,0
              -104.458049,20.80718,0
              -104.458409,20.806516,0
              -104.455479,20.806779,0
              -104.454247,20.80526,0
              -104.451483,20.804011,0
              -104.449866,20.803564,0
              -104.447902,20.803611,0
              -104.446596,20.804278,0
              -104.444374,20.80593,0
              -104.441677,20.807421,0
              -104.440954,20.807651,0
              -104.439596,20.806651,0
              -104.438613,20.805292,0
              -104.437099,20.80526,0
              -104.436635,20.805807,0
              -104.435736,20.805765,0
              -104.435395,20.805325,0
              -104.434961,20.80347,0
              -104.434987,20.802554,0
              -104.434481,20.801939,0
              -104.43434,20.800402,0
              -104.43208,20.798984,0
              -104.430711,20.797718,0
              -104.429315,20.796788,0
              -104.429099,20.796054,0
              -104.429305,20.793968,0
              -104.428845,20.791924,0
              -104.42726,20.791022,0
              -104.42551,20.790681,0
              -104.424538,20.790785,0
              -104.42337,20.791287,0
              -104.421504,20.792752,0
              -104.420132,20.794454,0
              -104.419442,20.795925,0
              -104.418583,20.79632,0
              -104.417673,20.796068,0
              -104.416979,20.795235,0
              -104.414125,20.79377,0
              -104.413813,20.793,0
              -104.412688,20.792226,0
              -104.412524,20.789952,0
              -104.412019,20.789631,0
              -104.409488,20.788967,0
              -104.407342,20.787718,0
              -104.404818,20.786462,0
              -104.403197,20.785801,0
              -104.402848,20.784024,0
              -104.400912,20.782561,0
              -104.39981,20.782133,0
              -104.398973,20.782235,0
              -104.397557,20.781673,0
              -104.396622,20.780837,0
              -104.395989,20.778907,0
              -104.395013,20.774425,0
              -104.392731,20.773362,0
              -104.391403,20.772561,0
              -104.391348,20.771653,0
              -104.390765,20.770161,0
              -104.388677,20.768004,0
              -104.387233,20.767841,0
              -104.384712,20.767009,0
              -104.384005,20.766111,0
              -104.384228,20.765595,0
              -104.385783,20.764273,0
              -104.385982,20.763212,0
              -104.384759,20.762156,0
              -104.383626,20.761691,0
              -104.382756,20.760751,0
              -104.381621,20.758109,0
              -104.379761,20.756395,0
              -104.378943,20.755192,0
              -104.378148,20.752664,0
              -104.377328,20.750915,0
              -104.376728,20.748694,0
              -104.37662,20.74691,0
              -104.378161,20.744086,0
              -104.378107,20.742933,0
              -104.376439,20.741675,0
              -104.375561,20.741348,0
              -104.373115,20.741275,0
              -104.371392,20.74146,0
              -104.368707,20.74327,0
              -104.367142,20.744737,0
              -104.364884,20.745035,0
              -104.36209,20.743436,0
              -104.361545,20.74283,0
              -104.360872,20.739348,0
              -104.360304,20.738421,0
              -104.359529,20.738035,0
              -104.358996,20.737145,0
              -104.358385,20.737184,0
              -104.356743,20.736516,0
              -104.356182,20.735847,0
              -104.35486,20.735588,0
              -104.354006,20.736043,0
              -104.353361,20.73595,0
              -104.353139,20.73441,0
              -104.353249,20.732625,0
              -104.353009,20.731724,0
              -104.351789,20.729073,0
              -104.350246,20.726925,0
              -104.350042,20.726029,0
              -104.350798,20.72534,0
              -104.349417,20.725243,0
              -104.348384,20.724478,0
              -104.346132,20.723908,0
              -104.344863,20.723398,0
              -104.343411,20.722514,0
              -104.341085,20.722263,0
              -104.340021,20.722437,0
              -104.339115,20.721387,0
              -104.337077,20.721769,0
              -104.335894,20.721455,0
              -104.334,20.720517,0
              -104.334158,20.719561,0
              -104.333406,20.718589,0
              -104.332738,20.718295,0
              -104.33246,20.71701,0
              -104.329337,20.716231,0
              -104.327561,20.716296,0
              -104.326585,20.717651,0
              -104.324967,20.717724,0
              -104.323764,20.717319,0
              -104.323115,20.716405,0
              -104.323284,20.714496,0
              -104.321853,20.713282,0
              -104.321183,20.713167,0
              -104.319567,20.713662,0
              -104.31851,20.713485,0
              -104.317807,20.712215,0
              -104.317543,20.711071,0
              -104.316651,20.710195,0
              -104.31593,20.708659,0
              -104.316389,20.706961,0
              -104.313531,20.705941,0
              -104.312741,20.705285,0
              -104.311169,20.704907,0
              -104.310294,20.704122,0
              -104.309039,20.703658,0
              -104.308968,20.702511,0
              -104.308407,20.701508,0
              -104.307319,20.700264,0
              -104.307349,20.699031,0
              -104.30783,20.698565,0
              -104.308102,20.697262,0
              -104.307795,20.696578,0
              -104.305886,20.695435,0
              -104.305646,20.69417,0
              -104.303574,20.692696,0
              -104.302552,20.693037,0
              -104.301447,20.692912,0
              -104.298873,20.692175,0
              -104.297918,20.691582,0
              -104.29604,20.692299,0
              -104.294928,20.692511,0
              -104.293244,20.691869,0
              -104.292185,20.691248,0
              -104.290223,20.690793,0
              -104.288258,20.688887,0
              -104.287073,20.687151,0
              -104.287661,20.684701,0
              -104.288921,20.683854,0
              -104.289137,20.681446,0
              -104.288016,20.679851,0
              -104.288499,20.678744,0
              -104.288476,20.677403,0
              -104.287898,20.676668,0
              -104.288429,20.6754,0
              -104.288167,20.674601,0
              -104.286627,20.672573,0
              -104.284918,20.671594,0
              -104.28456,20.670619,0
              -104.284863,20.66954,0
              -104.286426,20.668329,0
              -104.286004,20.667082,0
              -104.286399,20.665549,0
              -104.287091,20.664954,0
              -104.287694,20.66389,0
              -104.288026,20.662207,0
              -104.287956,20.660408,0
              -104.287269,20.65891,0
              -104.28624,20.658492,0
              -104.28514,20.658659,0
              -104.284252,20.658311,0
              -104.283105,20.657077,0
              -104.283088,20.655689,0
              -104.284873,20.653752,0
              -104.284769,20.652887,0
              -104.283828,20.651636,0
              -104.283285,20.650354,0
              -104.281421,20.648897,0
              -104.280577,20.646357,0
              -104.281265,20.644823,0
              -104.282325,20.644201,0
              -104.282399,20.642875,0
              -104.281743,20.642183,0
              -104.281582,20.640817,0
              -104.282475,20.639198,0
              -104.282464,20.636939,0
              -104.282799,20.636228,0
              -104.281064,20.635862,0
              -104.280893,20.634188,0
              -104.281366,20.632544,0
              -104.281816,20.632138,0
              -104.281338,20.631256,0
              -104.282011,20.628993,0
              -104.281041,20.628383,0
              -104.280104,20.628173,0
              -104.279829,20.627687,0
              -104.2798,20.62526,0
              -104.279164,20.624219,0
              -104.27785,20.62302,0
              -104.275766,20.622712,0
              -104.274994,20.622165,0
              -104.274988,20.621117,0
              -104.275493,20.619999,0
              -104.275147,20.619139,0
              -104.275097,20.617358,0
              -104.274458,20.616603,0
              -104.273047,20.615652,0
              -104.268483,20.614846,0
              -104.266998,20.614182,0
              -104.266423,20.613665,0
              -104.2651,20.611515,0
              -104.263691,20.609562,0
              -104.262786,20.608732,0
              -104.260438,20.607169,0
              -104.259517,20.60508,0
              -104.25871,20.604287,0
              -104.257236,20.603513,0
              -104.254146,20.603221,0
              -104.25364,20.603419,0
              -104.25357,20.604295,0
              -104.252657,20.606077,0
              -104.252908,20.607442,0
              -104.251754,20.607844,0
              -104.251505,20.608283,0
              -104.252172,20.608583,0
              -104.252119,20.60924,0
              -104.252701,20.609955,0
              -104.254056,20.610148,0
              -104.254377,20.610741,0
              -104.255441,20.610804,0
              -104.255314,20.612528,0
              -104.25308,20.612786,0
              -104.252757,20.613954,0
              -104.252498,20.613368,0
              -104.25193,20.614488,0
              -104.252424,20.614729,0
              -104.252372,20.616561,0
              -104.253047,20.618233,0
              -104.254064,20.617818,0
              -104.254748,20.61838,0
              -104.254346,20.621461,0
              -104.253943,20.625575,0
              -104.253908,20.628996,0
              -104.253767,20.630608,0
              -104.249865,20.629585,0
              -104.248023,20.629364,0
              -104.2476,20.629571,0
              -104.246924,20.631492,0
              -104.247179,20.63237,0
              -104.248229,20.632773,0
              -104.2496,20.634519,0
              -104.2505,20.635181,0
              -104.252876,20.635799,0
              -104.2546,20.636886,0
              -104.255822,20.63809,0
              -104.260242,20.641328,0
              -104.26039,20.642836,0
              -104.259333,20.644223,0
              -104.257932,20.644856,0
              -104.257129,20.645914,0
              -104.256768,20.649282,0
              -104.256237,20.651966,0
              -104.255307,20.653283,0
              -104.253627,20.654268,0
              -104.250322,20.65518,0
              -104.247013,20.656727,0
              -104.244384,20.658111,0
              -104.24085,20.65935,0
              -104.237994,20.66071,0
              -104.236662,20.662261,0
              -104.236383,20.663722,0
              -104.236982,20.665089,0
              -104.23788,20.665751,0
              -104.240904,20.667101,0
              -104.243431,20.668025,0
              -104.24458,20.66864,0
              -104.24578,20.669609,0
              -104.246902,20.670908,0
              -104.247221,20.671711,0
              -104.246154,20.671527,0
              -104.245789,20.673814,0
              -104.252292,20.680651,0
              -104.25316,20.682296,0
              -104.252381,20.683594,0
              -104.247896,20.686464,0
              -104.247891,20.687688,0
              -104.247078,20.688104,0
              -104.24799,20.689682,0
              -104.246041,20.690562,0
              -104.245593,20.691578,0
              -104.244493,20.692206,0
              -104.243298,20.691746,0
              -104.24278,20.694289,0
              -104.243702,20.69407,0
              -104.24418,20.695017,0
              -104.245238,20.696021,0
              -104.244765,20.69648,0
              -104.245748,20.696519,0
              -104.247518,20.697657,0
              -104.248149,20.699628,0
              -104.247497,20.700809,0
              -104.247749,20.701278,0
              -104.247207,20.701763,0
              -104.247552,20.70392,0
              -104.247378,20.705574,0
              -104.245272,20.707625,0
              -104.243955,20.707745,0
              -104.242507,20.708389,0
              -104.242111,20.709351,0
              -104.241429,20.709985,0
              -104.242234,20.710555,0
              -104.242404,20.711525,0
              -104.241843,20.712739,0
              -104.242223,20.715151,0
              -104.243804,20.715704,0
              -104.245479,20.716556,0
              -104.246576,20.718278,0
              -104.24697,20.720847,0
              -104.24684,20.722189,0
              -104.24704,20.723296,0
              -104.246835,20.724897,0
              -104.247633,20.726337,0
              -104.249954,20.728226,0
              -104.252481,20.729693,0
              -104.254181,20.730403,0
              -104.257503,20.733285,0
              -104.259155,20.734443,0
              -104.259861,20.735331,0
              -104.263315,20.743453,0
              -104.265549,20.749711,0
              -104.266402,20.751563,0
              -104.272781,20.767077,0
              -104.274475,20.769987,0
              -104.28002,20.768928,0
              -104.280848,20.772278,0
              -104.282856,20.783481,0
              -104.284507,20.782143,0
              -104.287859,20.781363,0
              -104.289911,20.781341,0
              -104.291974,20.77802,0
              -104.292282,20.776419,0
              -104.292173,20.774825,0
              -104.290199,20.773011,0
              -104.291547,20.770635,0
              -104.292847,20.771044,0
              -104.296112,20.771475,0
              -104.297617,20.770795,0
              -104.304416,20.776315,0
              -104.307347,20.779069,0
              -104.310583,20.781863,0
              -104.315224,20.786391,0
              -104.328322,20.798098,0
              -104.334123,20.791977,0
              -104.335646,20.789933,0
              -104.337796,20.789858,0
              -104.340656,20.790386,0
              -104.34429,20.790575,0
              -104.345397,20.790984,0
              -104.345016,20.792355,0
              -104.345828,20.793168,0
              -104.347752,20.79286,0
              -104.348824,20.792399,0
              -104.349498,20.791764,0
              -104.350887,20.791715,0
              -104.351192,20.791234,0
              -104.354844,20.79139,0
              -104.356648,20.791086,0
              -104.358249,20.790533,0
              -104.359397,20.788825,0
              -104.358923,20.788507,0
              -104.359617,20.788099,0
              -104.360882,20.786799,0
              -104.36144,20.785413,0
              -104.36317,20.784685,0
              -104.363897,20.784151,0
              -104.364981,20.783979,0
              -104.366976,20.782555,0
              -104.367025,20.781787,0
              -104.36754,20.781745,0
              -104.36773,20.781022,0
              -104.369292,20.779849,0
              -104.37198,20.778729,0
              -104.373211,20.777177,0
              -104.374069,20.776694,0
              -104.37522,20.775439,0
              -104.375892,20.784073,0
              -104.350402,20.811644,0
              -104.362495,20.814143,0
              -104.364059,20.813933,0
              -104.363003,20.815724,0
              -104.3608,20.818595,0
              -104.360269,20.819845,0
              -104.358525,20.819408,0
              -104.357105,20.819874,0
              -104.357157,20.821732,0
              -104.3578,20.822925,0
              -104.358827,20.823735,0
              -104.358713,20.825459,0
              -104.35895,20.826466,0
              -104.358965,20.829154,0
              -104.358609,20.830852,0
              -104.358907,20.831626,0
              -104.358356,20.834337,0
              -104.359405,20.835228,0
              -104.359564,20.836167,0
              -104.361739,20.838457,0
              -104.362218,20.840136,0
              -104.362008,20.840698,0
              -104.360964,20.841048,0
              -104.359552,20.840038,0
              -104.359121,20.840241,0
              -104.359937,20.84131,0
              -104.35999,20.841926,0
              -104.358745,20.841753,0
              -104.358521,20.842755,0
              -104.356971,20.84315,0
              -104.356011,20.843718,0
              -104.354214,20.842754,0
              -104.353568,20.842787,0
              -104.352356,20.843557,0
              -104.349994,20.845698,0
              -104.348971,20.84557,0
              -104.347159,20.844862,0
              -104.346215,20.846242,0
              -104.345241,20.846394,0
              -104.342482,20.845314,0
              -104.342438,20.844243,0
              -104.341027,20.844637,0
              -104.339949,20.844632,0
              -104.338777,20.84571,0
              -104.337124,20.845626,0
              -104.336355,20.84614,0
              -104.334728,20.846664,0
              -104.333382,20.846173,0
              -104.333254,20.844471,0
              -104.332204,20.843691,0
              -104.332067,20.84298,0
              -104.331168,20.842584,0
              -104.328111,20.842284,0
              -104.326821,20.841329,0
              -104.325903,20.841259,0
              -104.32463,20.84163,0
              -104.323691,20.841239,0
              -104.322521,20.841292,0
              -104.320974,20.839375,0
              -104.320316,20.839019,0
              -104.318417,20.838573,0
              -104.31709,20.839121,0
              -104.317028,20.839913,0
              -104.316247,20.840557,0
              -104.315037,20.840788,0
              -104.313878,20.839979,0
              -104.312617,20.840416,0
              -104.312695,20.841075,0
              -104.31218,20.841896,0
              -104.312673,20.842967,0
              -104.312343,20.84343,0
              -104.310414,20.844068,0
              -104.309271,20.845063,0
              -104.308846,20.845813,0
              -104.309028,20.846565,0
              -104.308105,20.846773,0
              -104.306771,20.84607,0
              -104.304782,20.847053,0
              -104.304041,20.845993,0
              -104.302089,20.845719,0
              -104.301036,20.846102,0
              -104.299787,20.847248,0
              -104.298231,20.847436,0
              -104.297036,20.846569,0
              -104.296987,20.846009,0
              -104.296051,20.845388,0
              -104.295416,20.845496,0
              -104.295028,20.84623,0
              -104.295431,20.847353,0
              -104.295119,20.847882,0
              -104.292426,20.847875,0
              -104.292339,20.848781,0
              -104.291106,20.848432,0
              -104.290209,20.849015,0
              -104.290374,20.849794,0
              -104.290737,20.855581,0
              -104.290693,20.862341,0
              -104.289753,20.862969,0
              -104.286719,20.864034,0
              -104.28126,20.864222,0
              -104.279979,20.864103,0
              -104.279111,20.864519,0
              -104.281853,20.868993,0
              -104.284169,20.873381,0
              -104.285553,20.875282,0
              -104.285845,20.877265,0
              -104.286253,20.878434,0
              -104.287005,20.878933,0
              -104.287366,20.88226,0
              -104.287853,20.882828,0
              -104.288408,20.885342,0
              -104.289498,20.886019,0
              -104.290904,20.887527,0
              -104.290741,20.887893,0
              -104.289541,20.888031,0
              -104.284038,20.887278,0
              -104.281833,20.887199,0
              -104.2775,20.88732,0
              -104.275894,20.88723,0
              -104.269833,20.887381,0
              -104.268451,20.887263,0
              -104.267036,20.88797,0
              -104.26425,20.890255,0
              -104.262446,20.891582,0
              -104.258447,20.894829,0
              -104.256208,20.896893,0
              -104.251161,20.902984,0
              -104.249885,20.904348,0
              -104.24823,20.906872,0
              -104.247086,20.909883,0
              -104.24667,20.914388,0
              -104.246798,20.915776,0
              -104.247216,20.916687,0
              -104.247433,20.918803,0
              -104.247251,20.919795,0
              -104.246452,20.921245,0
              -104.245166,20.922162,0
              -104.242327,20.923223,0
              -104.240618,20.924241,0
              -104.237731,20.925279,0
              -104.23652,20.926194,0
              -104.233906,20.929114,0
              -104.230085,20.931977,0
              -104.228753,20.935582,0
              -104.226649,20.936624,0
              -104.221072,20.941526,0
              -104.218756,20.940696,0
              -104.216903,20.94091,0
              -104.215406,20.940299,0
              -104.211697,20.938014,0
              -104.207201,20.935966,0
              -104.206588,20.936373,0
              -104.206072,20.938436,0
              -104.206567,20.939529,0
              -104.207761,20.940375,0
              -104.207486,20.941085,0
              -104.206751,20.941348,0
              -104.207478,20.942149,0
              -104.20662,20.946109,0
              -104.207035,20.946467,0
              -104.207684,20.95043,0
              -104.207974,20.951055,0
              -104.207426,20.951512,0
              -104.204616,20.951965,0
              -104.204526,20.954932,0
              -104.202731,20.955588,0
              -104.201059,20.95732,0
              -104.201306,20.959242,0
              -104.204842,20.959901,0
              -104.208865,20.959652,0
              -104.210669,20.960338,0
              -104.218559,20.96028,0
              -104.227142,20.964984,0
              -104.227887,20.967169,0
              -104.233129,20.968743,0
              -104.234083,20.971052,0
              -104.23431,20.974052,0
              -104.235919,20.975603,0
              -104.236538,20.97731,0
              -104.235964,20.980685,0
              -104.238101,20.984177,0
              -104.237535,20.985325,0
              -104.236939,20.989438,0
              -104.236664,20.990295,0
              -104.238525,20.991715,0
              -104.23762,20.993499,0
              -104.235529,20.994209,0
              -104.235536,20.994747,0
              -104.234807,20.996179,0
              -104.234159,20.996716,0
              -104.234261,20.997454,0
              -104.233871,20.998331,0
              -104.232736,20.998005,0
              -104.231963,20.998684,0
              -104.231186,20.998691,0
              -104.228039,20.996666,0
              -104.224975,20.996115,0
              -104.22529,20.997412,0
              -104.223196,21.001264,0
              -104.224317,21.004433,0
              -104.225268,21.005698,0
              -104.224589,21.006213,0
              -104.224272,21.007558,0
              -104.228894,21.013508,0
              -104.228642,21.013973,0
              -104.229593,21.01627,0
              -104.232681,21.017728,0
              -104.233337,21.017653,0
              -104.234983,21.020171,0
              -104.235869,21.02065,0
              -104.236131,21.020164,0
              -104.237076,21.021453,0
              -104.237647,21.021242,0
              -104.238974,21.02189,0
              -104.239546,21.021535,0
              -104.24073,21.02172,0
              -104.241641,21.023423,0
              -104.241355,21.025115,0
              -104.241998,21.025724,0
              -104.242713,21.027332,0
              -104.24184,21.028598,0
              -104.239697,21.027859,0
              -104.238314,21.028966,0
              -104.235955,21.031549,0
              -104.234941,21.033472,0
              -104.234645,21.035032,0
              -104.234803,21.036678,0
              -104.236151,21.038961,0
              -104.235798,21.04012,0
              -104.233945,21.041205,0
              -104.232861,21.0412,0
              -104.231209,21.041661,0
              -104.230153,21.042555,0
              -104.22807,21.042953,0
              -104.22655,21.044296,0
              -104.227365,21.045736,0
              -104.226969,21.047124,0
              -104.225335,21.048061,0
              -104.224868,21.049833,0
              -104.225164,21.050527,0
              -104.227442,21.050889,0
              -104.227995,21.050326,0
              -104.230776,21.051029,0
              -104.231053,21.04919,0
              -104.231619,21.050555,0
              -104.238395,21.052273,0
              -104.237814,21.056081,0
              -104.239236,21.057072,0
              -104.234793,21.067681,0
              -104.233124,21.067005,0
              -104.231603,21.067762,0
              -104.230863,21.066945,0
              -104.229128,21.066153,0
              -104.225407,21.067962,0
              -104.22181,21.070025,0
              -104.222605,21.07348,0
              -104.220571,21.075585,0
              -104.22043,21.076373,0
              -104.219853,21.076648,0
              -104.218717,21.078595,0
              -104.219852,21.080118,0
              -104.219238,21.080533,0
              -104.219132,21.08137,0
              -104.217533,21.08291,0
              -104.216719,21.085791,0
              -104.218299,21.087845,0
              -104.217879,21.088434,0
              -104.218461,21.089655,0
              -104.218096,21.089895,0
              -104.217895,21.091086,0
              -104.218407,21.09202,0
              -104.218062,21.092871,0
              -104.218836,21.093549,0
              -104.219718,21.095447,0
              -104.221423,21.097893,0
              -104.220843,21.101363,0
              -104.218774,21.102421,0
              -104.216933,21.104054,0
              -104.217617,21.104865,0
              -104.216472,21.10574,0
              -104.216163,21.106718,0
              -104.214749,21.107349,0
              -104.214498,21.108173,0
              -104.214857,21.108989,0
              -104.215718,21.109358,0
              -104.215577,21.110696,0
              -104.214393,21.111667,0
              -104.215368,21.113538,0
              -104.215305,21.114191,0
              -104.214539,21.11434,0
              -104.213359,21.113842,0
              -104.212144,21.114529,0
              -104.212689,21.115396,0
              -104.214741,21.116603,0
              -104.2133,21.117997,0
              -104.21147,21.118023,0
              -104.21086,21.118601,0
              -104.21127,21.119383,0
              -104.212484,21.119496,0
              -104.212709,21.120434,0
              -104.212299,21.120986,0
              -104.211429,21.120561,0
              -104.211332,21.121766,0
              -104.212277,21.122517,0
              -104.212334,21.12455,0
              -104.211716,21.125281,0
              -104.21129,21.127715,0
              -104.211737,21.128889,0
              -104.211586,21.129683,0
              -104.21057,21.130576,0
              -104.210841,21.131386,0
              -104.211783,21.131658,0
              -104.212718,21.132963,0
              -104.212688,21.133975,0
              -104.214674,21.133616,0
              -104.214932,21.135019,0
              -104.214316,21.136039,0
              -104.214883,21.136295,0
              -104.215138,21.139108,0
              -104.215765,21.139005,0
              -104.21634,21.137693,0
              -104.217506,21.138142,0
              -104.219003,21.137639,0
              -104.219633,21.138701,0
              -104.218735,21.139397,0
              -104.219123,21.140897,0
              -104.221487,21.140723,0
              -104.222002,21.141833,0
              -104.221856,21.142998,0
              -104.221182,21.14326,0
              -104.221178,21.144444,0
              -104.222878,21.145438,0
              -104.222106,21.146677,0
              -104.222873,21.14714,0
              -104.224287,21.149891,0
              -104.225059,21.15085,0
              -104.224978,21.151609,0
              -104.224024,21.151648,0
              -104.223565,21.152724,0
              -104.222049,21.153293,0
              -104.222275,21.154123,0
              -104.223868,21.154532,0
              -104.22419,21.156264,0
              -104.22478,21.157293,0
              -104.224805,21.158017,0
              -104.223593,21.158085,0
              -104.222943,21.159069,0
              -104.221876,21.158197,0
              -104.221767,21.159549,0
              -104.223334,21.159737,0
              -104.224234,21.160472,0
              -104.223657,21.161101,0
              -104.223506,21.161935,0
              -104.221975,21.163071,0
              -104.221669,21.163682,0
              -104.222255,21.164881,0
              -104.221475,21.165762,0
              -104.221615,21.167418,0
              -104.222119,21.168146,0
              -104.223583,21.168903,0
              -104.222718,21.169504,0
              -104.220826,21.169513,0
              -104.220213,21.172254,0
              -104.220514,21.173258,0
              -104.218404,21.172342,0
              -104.217878,21.172652,0
              -104.21868,21.174427,0
              -104.21763,21.174527,0
              -104.21753,21.175069,0
              -104.218722,21.175363,0
              -104.219412,21.176165,0
              -104.21918,21.176717,0
              -104.217954,21.176435,0
              -104.216855,21.177218,0
              -104.214187,21.179562,0
              -104.213404,21.180571,0
              -104.211779,21.185631,0
              -104.210966,21.186999,0
              -104.208702,21.189282,0
              -104.205858,21.190339,0
              -104.20401,21.192319,0
              -104.202794,21.192832,0
              -104.198823,21.193464,0
              -104.196367,21.193553,0
              -104.193533,21.192548,0
              -104.191023,21.192495,0
              -104.189072,21.191841,0
              -104.185974,21.190518,0
              -104.185028,21.189881,0
              -104.18315,21.189245,0
              -104.1817,21.189207,0
              -104.177153,21.188162,0
              -104.175185,21.188127,0
              -104.171272,21.189102,0
              -104.168892,21.18909,0
              -104.165814,21.188881,0
              -104.164929,21.188438,0
              -104.161835,21.185424,0
              -104.16056,21.18463,0
              -104.159514,21.18456,0
              -104.158051,21.18494,0
              -104.154484,21.187271,0
              -104.153204,21.188313,0
              -104.152046,21.188799,0
              -104.150171,21.189254,0
              -104.149143,21.190454,0
              -104.147272,21.19162,0
              -104.146061,21.19151,0
              -104.144648,21.190988,0
              -104.142719,21.189865,0
              -104.14029,21.188893,0
              -104.138674,21.188666,0
              -104.136909,21.188783,0
              -104.135922,21.189309,0
              -104.133166,21.189663,0
              -104.128556,21.190968,0
              -104.127422,21.191524,0
              -104.126546,21.192431,0
              -104.125209,21.195386,0
              -104.124743,21.196094,0
              -104.124046,21.196267,0
              -104.121028,21.19513,0
              -104.117579,21.192691,0
              -104.116801,21.191383,0
              -104.114412,21.189936,0
              -104.110845,21.188596,0
              -104.10949,21.188961,0
              -104.109052,21.190123,0
              -104.1089,21.19247,0
              -104.108957,21.194392,0
              -104.108763,21.195567,0
              -104.107367,21.196962,0
              -104.105608,21.197878,0
              -104.102532,21.198746,0
              -104.100037,21.200867,0
              -104.098941,21.201028,0
              -104.098177,21.200545,0
              -104.097472,21.198313,0
              -104.096149,21.196786,0
              -104.09418,21.195827,0
              -104.091565,21.195394,0
              -104.090132,21.195546,0
              -104.0888,21.196129,0
              -104.087822,21.197627,0
              -104.087682,21.199309,0
              -104.088086,21.200882,0
              -104.088456,21.203614,0
              -104.088114,21.204245,0
              -104.085659,21.205361,0
              -104.084005,21.205062,0
              -104.082358,21.204306,0
              -104.08091,21.201764,0
              -104.080754,21.199775,0
              -104.080875,21.198039,0
              -104.081709,21.193779,0
              -104.081619,21.192649,0
              -104.080997,21.191427,0
              -104.081069,21.189936,0
              -104.080578,21.189462,0
              -104.0776,21.188936,0
              -104.076136,21.190267,0
              -104.074803,21.190546,0
              -104.07238,21.190055,0
              -104.071575,21.188152,0
              -104.07082,21.187642,0
              -104.068887,21.186841,0
              -104.068287,21.186786,0
              -104.066095,21.189723,0
              -104.066552,21.191323,0
              -104.067394,21.192382,0
              -104.069167,21.193868,0
              -104.069438,21.194674,0
              -104.068547,21.19739,0
              -104.067386,21.198665,0
              -104.065623,21.199654,0
              -104.064541,21.199867,0
              -104.063618,21.200419,0
              -104.061894,21.200082,0
              -104.061247,21.19921,0
              -104.060707,21.197574,0
              -104.059828,21.196588,0
              -104.059745,21.194952,0
              -104.059081,21.193652,0
              -104.057785,21.193634,0
              -104.056275,21.19414,0
              -104.055329,21.195052,0
              -104.054793,21.196514,0
              -104.055072,21.197898,0
              -104.054909,21.199121,0
              -104.054222,21.201438,0
              -104.054941,21.203246,0
              -104.05491,21.204944,0
              -104.052839,21.205413,0
              -104.051954,21.205353,0
              -104.050163,21.204361,0
              -104.049992,21.203886,0
              -104.047074,21.201077,0
              -104.046098,21.200658,0
              -104.045857,21.199736,0
              -104.045179,21.199199,0
              -104.043376,21.200899,0
              -104.040911,21.202439,0
              -104.039825,21.202969,0
              -104.039291,21.204244,0
              -104.038424,21.204442,0
              -104.037519,21.203759,0
              -104.035728,21.201205,0
              -104.03587,21.198125,0
              -104.035297,21.195953,0
              -104.0338,21.195214,0
              -104.030397,21.1945,0
              -104.027969,21.194672,0
              -104.027054,21.195683,0
              -104.026465,21.198876,0
              -104.026399,21.200476,0
              -104.026931,21.200881,0
              -104.029423,21.201917,0
              -104.029761,21.202419,0
              -104.032078,21.201811,0
              -104.032871,21.202687,0
              -104.031613,21.205193,0
              -104.02941,21.208664,0
              -104.028033,21.209724,0
              -104.025752,21.211779,0
              -104.024981,21.212938,0
              -104.02376,21.212513,0
              -104.02266,21.211461,0
              -104.022332,21.210788,0
              -104.022565,21.209692,0
              -104.022383,21.208516,0
              -104.02232,21.205107,0
              -104.021405,21.204678,0
              -104.019958,21.204777,0
              -104.018639,21.205122,0
              -104.016479,21.206574,0
              -104.015755,21.208484,0
              -104.015925,21.209584,0
              -104.016833,21.210709,0
              -104.017187,21.211912,0
              -104.015139,21.213826,0
              -104.015754,21.214801,0
              -104.016408,21.21666,0
              -104.016824,21.218582,0
              -104.016099,21.219412,0
              -104.0147,21.219524,0
              -104.014641,21.220681,0
              -104.016122,21.223666,0
              -104.017531,21.226041,0
              -104.017489,21.227202,0
              -104.016118,21.22756,0
              -104.012643,21.226844,0
              -104.008551,21.227156,0
              -104.006088,21.228044,0
              -104.005236,21.228769,0
              -104.004665,21.230871,0
              -104.004631,21.233383,0
              -104.004967,21.234367,0
              -104.004254,21.2357,0
              -104.003568,21.236463,0
              -104.000784,21.238469,0
              -103.997695,21.238794,0
              -103.996361,21.239297,0
              -103.991895,21.24159,0
              -103.990357,21.242783,0
              -103.987857,21.244306,0
              -103.986414,21.246429,0
              -103.985956,21.248077,0
              -103.98531,21.249208,0
              -103.984778,21.249471,0
              -103.982264,21.249683,0
              -103.978828,21.250325,0
              -103.975405,21.251253,0
              -103.97397,21.252227,0
              -103.973852,21.252973,0
              -103.974198,21.255581,0
              -103.973454,21.256328,0
              -103.971276,21.256329,0
              -103.969254,21.256875,0
              -103.969274,21.25569,0
              -103.965667,21.254354,0
              -103.964597,21.25371,0
              -103.96386,21.254125,0
              -103.961842,21.252903,0
              -103.960567,21.251183,0
              -103.959854,21.251115,0
              -103.958885,21.251948,0
              -103.958388,21.252755,0
              -103.955379,21.250227,0
              -103.954908,21.249334,0
              -103.953694,21.248086,0
              -103.952265,21.247778,0
              -103.952355,21.24673,0
              -103.951705,21.244593,0
              -103.949846,21.243079,0
              -103.94853,21.241607,0
              -103.9475,21.238936,0
              -103.945867,21.238018,0
              -103.942538,21.238028,0
              -103.941382,21.238403,0
              -103.940162,21.238173,0
              -103.936558,21.238532,0
              -103.9325,21.236312,0
              -103.9304,21.235343,0
              -103.928535,21.234919,0
              -103.925514,21.234836,0
              -103.92402,21.234572,0
              -103.925915,21.23916,0
              -103.926578,21.240317,0
              -103.925509,21.241043,0
              -103.925612,21.242458,0
              -103.927112,21.243673,0
              -103.927042,21.245663,0
              -103.928377,21.246928,0
              -103.928635,21.24976,0
              -103.931797,21.251969,0
              -103.935145,21.253285,0
              -103.935462,21.254176,0
              -103.935219,21.255441,0
              -103.934541,21.25661,0
              -103.934275,21.25926,0
              -103.933845,21.259571,0
              -103.933518,21.261183,0
              -103.931057,21.262547,0
              -103.928382,21.260433,0
              -103.927647,21.25914,0
              -103.926834,21.257033,0
              -103.926872,21.256413,0
              -103.926373,21.254943,0
              -103.925398,21.253427,0
              -103.924418,21.252405,0
              -103.922434,21.251756,0
              -103.921434,21.250484,0
              -103.920942,21.249445,0
              -103.921103,21.247843,0
              -103.919527,21.247151,0
              -103.918578,21.245627,0
              -103.91812,21.244166,0
              -103.918461,21.24296,0
              -103.917583,21.241674,0
              -103.918199,21.240041,0
              -103.91932,21.238613,0
              -103.919259,21.236481,0
              -103.919696,21.234191,0
              -103.918675,21.233184,0
              -103.917899,21.231028,0
              -103.914275,21.230766,0
              -103.912331,21.231518,0
              -103.910894,21.232585,0
              -103.909996,21.232962,0
              -103.907561,21.23335,0
              -103.903063,21.233419,0
              -103.902417,21.232941,0
              -103.901054,21.230304,0
              -103.899731,21.227054,0
              -103.898363,21.22649,0
              -103.896887,21.226847,0
              -103.896405,21.227821,0
              -103.896003,21.230185,0
              -103.894876,21.234021,0
              -103.893503,21.236874,0
              -103.892306,21.238427,0
              -103.890324,21.238793,0
              -103.889456,21.239735,0
              -103.887985,21.239043,0
              -103.886857,21.239206,0
              -103.885041,21.241155,0
              -103.882609,21.24191,0
              -103.880201,21.241684,0
              -103.879026,21.23986,0
              -103.87786,21.24006,0
              -103.87691,21.239054,0
              -103.876201,21.239439,0
              -103.875439,21.238585,0
              -103.875106,21.239022,0
              -103.874974,21.241168,0
              -103.87372,21.242534,0
              -103.870097,21.243589,0
              -103.867244,21.245266,0
              -103.865022,21.245919,0
              -103.863227,21.246682,0
              -103.86189,21.248868,0
              -103.859128,21.247789,0
              -103.855693,21.246636,0
              -103.85299,21.246136,0
              -103.851136,21.24518,0
              -103.847512,21.242512,0
              -103.845004,21.240297,0
              -103.843239,21.24003,0
              -103.841898,21.240207,0
              -103.840019,21.23982,0
              -103.837718,21.240357,0
              -103.835747,21.240981,0
              -103.832259,21.242456,0
              -103.830475,21.243667,0
              -103.828203,21.245662,0
              -103.827132,21.246059,0
              -103.825277,21.24635,0
              -103.823278,21.246881,0
              -103.820535,21.247872,0
              -103.818547,21.249039,0
              -103.817249,21.25109,0
              -103.816966,21.254111,0
              -103.817122,21.256582,0
              -103.818346,21.258512,0
              -103.820984,21.261711,0
              -103.821365,21.263022,0
              -103.821091,21.265337,0
              -103.821143,21.266467,0
              -103.821533,21.267095,0
              -103.82399,21.269071,0
              -103.824666,21.270024,0
              -103.824985,21.271878,0
              -103.824427,21.272737,0
              -103.823462,21.27344,0
              -103.822681,21.274422,0
              -103.820528,21.275902,0
              -103.820091,21.276523,0
              -103.82078,21.278634,0
              -103.820346,21.281041,0
              -103.819028,21.282276,0
              -103.818252,21.283358,0
              -103.816439,21.284877,0
              -103.814672,21.287118,0
              -103.813578,21.287495,0
              -103.81189,21.287503,0
              -103.812719,21.286874,0
              -103.812125,21.286637,0
              -103.811216,21.287055,0
              -103.809189,21.288408,0
              -103.807847,21.28892,0
              -103.806156,21.291458,0
              -103.806151,21.292017,0
              -103.806881,21.293178,0
              -103.806754,21.293697,0
              -103.805884,21.294308,0
              -103.806432,21.295333,0
              -103.805559,21.296051,0
              -103.805201,21.297013,0
              -103.803682,21.299275,0
              -103.803573,21.300312,0
              -103.801884,21.300768,0
              -103.800774,21.30228,0
              -103.799051,21.303261,0
              -103.797788,21.303267,0
              -103.796678,21.303594,0
              -103.795551,21.303474,0
              -103.793077,21.304623,0
              -103.791962,21.305579,0
              -103.79087,21.305761,0
              -103.788971,21.30547,0
              -103.7864,21.306081,0
              -103.785483,21.305739,0
              -103.784831,21.307295,0
              -103.784021,21.307392,0
              -103.780636,21.308513,0
              -103.778059,21.310785,0
              -103.777501,21.312321,0
              -103.777648,21.313242,0
              -103.77725,21.314232,0
              -103.777557,21.314745,0
              -103.777548,21.315941,0
              -103.776822,21.316807,0
              -103.776656,21.318017,0
              -103.776145,21.319284,0
              -103.77631,21.320073,0
              -103.776123,21.32167,0
              -103.775583,21.321097,0
              -103.774009,21.320896,0
              -103.772534,21.32033,0
              -103.770225,21.322079,0
              -103.769406,21.322528,0
              -103.768286,21.322419,0
              -103.767838,21.323539,0
              -103.76718,21.324133,0
              -103.766829,21.326504,0
              -103.764479,21.327727,0
              -103.764162,21.328469,0
              -103.763056,21.328169,0
              -103.759837,21.328658,0
              -103.759109,21.3298,0
              -103.757399,21.329791,0
              -103.756981,21.330424,0
              -103.756648,21.331844,0
              -103.756825,21.334433,0
              -103.75743,21.335485,0
              -103.755674,21.336607,0
              -103.755611,21.337695,0
              -103.754322,21.337286,0
              -103.753097,21.335837,0
              -103.753111,21.336324,0
              -103.752116,21.335988,0
              -103.751263,21.336486,0
              -103.749352,21.336708,0
              -103.749585,21.336944,0
              -103.749668,21.339207,0
              -103.749431,21.340858,0
              -103.749638,21.341453,0
              -103.750432,21.341489,0
              -103.751918,21.340876,0
              -103.752389,21.341099,0
              -103.752272,21.343274,0
              -103.751529,21.344485,0
              -103.750093,21.345175,0
              -103.748317,21.345148,0
              -103.746414,21.348137,0
              -103.746421,21.349621,0
              -103.745851,21.351045,0
              -103.744756,21.351561,0
              -103.74432,21.352277,0
              -103.744825,21.353539,0
              -103.745779,21.354581,0
              -103.746461,21.355862,0
              -103.747133,21.357829,0
              -103.747077,21.359832,0
              -103.74569,21.363039,0
              -103.745197,21.364651,0
              -103.744468,21.368057,0
              -103.742881,21.371292,0
              -103.741784,21.372868,0
              -103.741333,21.374055,0
              -103.742911,21.376073,0
              -103.745735,21.378656,0
              -103.747397,21.379802,0
              -103.748638,21.381332,0
              -103.749762,21.382088,0
              -103.751995,21.382939,0
              -103.756392,21.383913,0
              -103.758436,21.384203,0
              -103.760307,21.384661,0
              -103.762259,21.385352,0
              -103.765419,21.386021,0
              -103.767333,21.388433,0
              -103.767769,21.390263,0
              -103.767601,21.391142,0
              -103.766544,21.39219,0
              -103.766126,21.393355,0
              -103.765208,21.394077,0
              -103.76336,21.396176,0
              -103.762312,21.39642,0
              -103.761527,21.396992,0
              -103.761171,21.397744,0
              -103.760064,21.398264,0
              -103.75957,21.399442,0
              -103.758302,21.399936,0
              -103.757203,21.399601,0
              -103.756903,21.399865,0
              -103.759164,21.402115,0
              -103.760877,21.404461,0
              -103.76268,21.406357,0
              -103.764402,21.407949,0
              -103.764403,21.410304,0
              -103.761832,21.410049,0
              -103.759381,21.409602,0
              -103.757046,21.40986,0
              -103.756103,21.410326,0
              -103.755765,21.411016,0
              -103.755283,21.414159,0
              -103.754787,21.415676,0
              -103.753551,21.416643,0
              -103.751307,21.417511,0
              -103.74661,21.417815,0
              -103.74245,21.417496,0
              -103.738638,21.41691,0
              -103.737552,21.416626,0
              -103.734953,21.416369,0
              -103.732553,21.415851,0
              -103.731272,21.4159,0
              -103.730163,21.416911,0
              -103.729396,21.418692,0
              -103.728277,21.420433,0
              -103.727288,21.42116,0
              -103.7234,21.421215,0
              -103.723075,21.423021,0
              -103.721289,21.423842,0
              -103.720896,21.425431,0
              -103.721234,21.426355,0
              -103.721831,21.426827,0
              -103.722081,21.42796,0
              -103.723005,21.429056,0
              -103.724447,21.43005,0
              -103.725746,21.431936,0
              -103.727671,21.433724,0
              -103.728244,21.43453,0
              -103.728648,21.435865,0
              -103.732269,21.437317,0
              -103.733239,21.436706,0
              -103.733741,21.436931,0
              -103.734543,21.438352,0
              -103.735638,21.438142,0
              -103.73702,21.439225,0
              -103.737078,21.439913,0
              -103.738458,21.440371,0
              -103.739452,21.441714,0
              -103.742031,21.441558,0
              -103.742383,21.4431,0
              -103.742431,21.444367,0
              -103.743034,21.44644,0
              -103.744375,21.447405,0
              -103.74448,21.450252,0
              -103.745253,21.451315,0
              -103.744548,21.452504,0
              -103.744533,21.45413,0
              -103.745571,21.45489,0
              -103.74573,21.456558,0
              -103.747217,21.457971,0
              -103.747427,21.45901,0
              -103.748182,21.459605,0
              -103.748162,21.462055,0
              -103.74868,21.462506,0
              -103.750071,21.4627,0
              -103.751423,21.46464,0
              -103.752937,21.466088,0
              -103.752108,21.466305,0
              -103.751144,21.467415,0
              -103.750985,21.468085,0
              -103.749785,21.468625,0
              -103.748753,21.469838,0
              -103.748131,21.471185,0
              -103.748773,21.472593,0
              -103.749365,21.474488,0
              -103.750138,21.475632,0
              -103.750915,21.476308,0
              -103.757586,21.479848,0
              -103.761343,21.481742,0
              -103.763373,21.482243,0
              -103.768721,21.482798,0
              -103.769335,21.483234,0
              -103.769612,21.48436,0
              -103.769628,21.486126,0
              -103.769969,21.487956,0
              -103.770666,21.488743,0
              -103.772088,21.489187,0
              -103.774003,21.489384,0
              -103.776363,21.490163,0
              -103.777001,21.490621,0
              -103.778192,21.492082,0
              -103.778427,21.493561,0
              -103.777703,21.494919,0
              -103.776357,21.495557,0
              -103.774551,21.495805,0
              -103.773879,21.496195,0
              -103.774247,21.497931,0
              -103.774913,21.49846,0
              -103.776764,21.498,0
              -103.778597,21.498331,0
              -103.777674,21.498402,0
              -103.777508,21.498992,0
              -103.780071,21.499982,0
              -103.781111,21.498876,0
              -103.781725,21.49886,0
              -103.782849,21.498103,0
              -103.783399,21.497338,0
              -103.7842,21.497567,0
              -103.784823,21.498493,0
              -103.785612,21.498272,0
              -103.786633,21.497341,0
              -103.787479,21.498,0
              -103.788177,21.497881,0
              -103.788269,21.497165,0
              -103.789916,21.496803,0
              -103.791134,21.497606,0
              -103.791123,21.496587,0
              -103.791559,21.495849,0
              -103.791491,21.49478,0
              -103.792078,21.49314,0
              -103.792657,21.492412,0
              -103.791457,21.492175,0
              -103.791272,21.49154,0
              -103.792157,21.491644,0
              -103.792162,21.48984,0
              -103.792628,21.489662,0
              -103.792989,21.488691,0
              -103.794092,21.489575,0
              -103.795924,21.489427,0
              -103.797585,21.489761,0
              -103.798281,21.488845,0
              -103.799339,21.488566,0
              -103.800639,21.48881,0
              -103.801576,21.489817,0
              -103.800928,21.488344,0
              -103.800148,21.487804,0
              -103.800421,21.487188,0
              -103.803333,21.489763,0
              -103.80465,21.490511,0
              -103.806895,21.491421,0
              -103.809217,21.492812,0
              -103.812393,21.494045,0
              -103.814013,21.494484,0
              -103.817037,21.494706,0
              -103.818363,21.49435,0
              -103.821478,21.492489,0
              -103.822907,21.492613,0
              -103.825777,21.494499,0
              -103.828159,21.498174,0
              -103.828647,21.500015,0
              -103.828868,21.501653,0
              -103.82771,21.502942,0
              -103.827921,21.505263,0
              -103.829543,21.507449,0
              -103.832009,21.509512,0
              -103.832363,21.511863,0
              -103.832127,21.513397,0
              -103.833539,21.513478,0
              -103.834601,21.512755,0
              -103.836608,21.512663,0
              -103.836988,21.512942,0
              -103.839644,21.513915,0
              -103.840856,21.513363,0
              -103.842295,21.513318,0
              -103.843078,21.513828,0
              -103.845712,21.514559,0
              -103.847755,21.514774,0
              -103.849295,21.514531,0
              -103.849812,21.514962,0
              -103.851483,21.515461,0
              -103.852159,21.516073,0
              -103.852425,21.517074,0
              -103.854795,21.519234,0
              -103.855518,21.520505,0
              -103.857176,21.521908,0
              -103.859384,21.524072,0
              -103.86011,21.525163,0
              -103.859926,21.52644,0
              -103.858713,21.528996,0
              -103.858496,21.530324,0
              -103.858013,21.531306,0
              -103.855398,21.532324,0
              -103.854009,21.533228,0
              -103.854187,21.534528,0
              -103.855041,21.535153,0
              -103.855165,21.535672,0
              -103.854487,21.536222,0
              -103.854561,21.536896,0
              -103.855228,21.536892,0
              -103.855886,21.53869,0
              -103.855238,21.540396,0
              -103.854305,21.541529,0
              -103.853612,21.541379,0
              -103.853378,21.541969,0
              -103.854591,21.542381,0
              -103.855093,21.543106,0
              -103.854027,21.54353,0
              -103.854731,21.544305,0
              -103.854722,21.54553,0
              -103.855787,21.545993,0
              -103.854895,21.546308,0
              -103.854524,21.546999,0
              -103.855202,21.547248,0
              -103.855535,21.548094,0
              -103.855058,21.548407,0
              -103.856212,21.550476,0
              -103.8557,21.550861,0
              -103.856001,21.552046,0
              -103.856415,21.55244,0
              -103.857553,21.552314,0
              -103.857765,21.551465,0
              -103.859383,21.550291,0
              -103.8614,21.549904,0
              -103.863153,21.550015,0
              -103.865209,21.550392,0
              -103.867498,21.550381,0
              -103.869307,21.550116,0
              -103.870751,21.548737,0
              -103.872561,21.549089,0
              -103.873642,21.549054,0
              -103.874975,21.54966,0
              -103.875433,21.550785,0
              -103.876635,21.551515,0
              -103.877528,21.551306,0
              -103.879176,21.551378,0
              -103.879882,21.552409,0
              -103.880706,21.552072,0
              -103.881646,21.552142,0
              -103.881028,21.55306,0
              -103.883119,21.55356,0
              -103.884412,21.55419,0
              -103.885292,21.554231,0
              -103.885712,21.554888,0
              -103.88709,21.555436,0
              -103.885997,21.55627,0
              -103.887055,21.556443,0
              -103.887144,21.557089,0
              -103.888208,21.557927,0
              -103.88814,21.558507,0
              -103.888896,21.55864,0
              -103.889481,21.560939,0
              -103.890452,21.56154,0
              -103.890984,21.562591,0
              -103.891838,21.56248,0
              -103.891798,21.563178,0
              -103.891072,21.56377,0
              -103.892736,21.566024,0
              -103.892034,21.566723,0
              -103.892427,21.567192,0
              -103.891217,21.567735,0
              -103.891273,21.568436,0
              -103.890587,21.568872,0
              -103.890464,21.569626,0
              -103.891326,21.569563,0
              -103.890241,21.571817,0
              -103.891548,21.572291,0
              -103.892253,21.573303,0
              -103.892702,21.57329,0
              -103.892578,21.574143,0
              -103.893376,21.574132,0
              -103.894251,21.574789,0
              -103.894882,21.574654,0
              -103.895938,21.575344,0
              -103.898065,21.575001,0
              -103.898446,21.575298,0
              -103.900688,21.574987,0
              -103.901338,21.574542,0
              -103.902981,21.574413,0
              -103.903739,21.575597,0
              -103.903813,21.577431,0
              -103.906709,21.577402,0
              -103.908427,21.57776,0
              -103.911183,21.578676,0
              -103.91305,21.578939,0
              -103.914748,21.579699,0
              -103.917369,21.579814,0
              -103.919235,21.581986,0
              -103.919914,21.584052,0
              -103.919467,21.584646,0
              -103.919733,21.585822,0
              -103.920273,21.586712,0
              -103.922618,21.589068,0
              -103.923183,21.590028,0
              -103.9228,21.591322,0
              -103.922003,21.592183,0
              -103.921065,21.594138,0
              -103.920195,21.594738,0
              -103.918143,21.597575,0
              -103.917153,21.597928,0
              -103.916318,21.600473,0
              -103.916541,21.602517,0
              -103.914138,21.605708,0
              -103.913991,21.606545,0
              -103.913371,21.606877,0
              -103.912365,21.608049,0
              -103.912597,21.608847,0
              -103.91352,21.610157,0
              -103.914795,21.611417,0
              -103.918798,21.613426,0
              -103.919262,21.614292,0
              -103.919229,21.615731,0
              -103.918776,21.61712,0
              -103.91784,21.618007,0
              -103.916903,21.618301,0
              -103.915976,21.618181,0
              -103.915854,21.617629,0
              -103.914999,21.617249,0
              -103.914842,21.616141,0
              -103.913191,21.6159,0
              -103.911346,21.614642,0
              -103.909821,21.614837,0
              -103.908923,21.615671,0
              -103.907638,21.617828,0
              -103.907699,21.618676,0
              -103.908423,21.620318,0
              -103.909522,21.621604,0
              -103.910141,21.622845,0
              -103.910259,21.626521,0
              -103.910886,21.62847,0
              -103.911835,21.629826,0
              -103.916866,21.633215,0
              -103.920388,21.634759,0
              -103.921132,21.636094,0
              -103.923226,21.63824,0
              -103.924269,21.639031,0
              -103.925988,21.639624,0
              -103.927943,21.64083,0
              -103.929893,21.641307,0
              -103.930249,21.641914,0
              -103.929251,21.64487,0
              -103.928245,21.649193,0
              -103.926235,21.653855,0
              -103.925126,21.656081,0
              -103.92439,21.657951,0
              -103.923039,21.660886,0
              -103.92253,21.662471,0
              -103.921606,21.667618,0
              -103.92079,21.668946,0
              -103.918759,21.669862,0
              -103.915268,21.670817,0
              -103.914733,21.670445,0
              -103.91406,21.668896,0
              -103.912401,21.668971,0
              -103.910462,21.671471,0
              -103.90884,21.673786,0
              -103.908802,21.675027,0
              -103.906962,21.68052,0
              -103.906162,21.682367,0
              -103.904626,21.682602,0
              -103.903148,21.682424,0
              -103.90265,21.682922,0
              -103.903605,21.684899,0
              -103.903302,21.685828,0
              -103.902591,21.686262,0
              -103.900955,21.686468,0
              -103.898621,21.687412,0
              -103.89807,21.687841,0
              -103.897134,21.689641,0
              -103.894605,21.693249,0
              -103.893433,21.694344,0
              -103.890318,21.695389,0
              -103.888391,21.696705,0
              -103.887746,21.697418,0
              -103.888134,21.698451,0
              -103.889222,21.698629,0
              -103.89044,21.69944,0
              -103.890623,21.69998,0
              -103.890366,21.701728,0
              -103.891396,21.705723,0
              -103.892038,21.706682,0
              -103.893621,21.708386,0
              -103.894636,21.70906,0
              -103.895405,21.710018,0
              -103.896571,21.71274,0
              -103.896239,21.716773,0
              -103.89576,21.718804,0
              -103.895161,21.723828,0
              -103.895263,21.72609,0
              -103.895581,21.727265,0
              -103.896371,21.728034,0
              -103.897481,21.728211,0
              -103.898539,21.727942,0
              -103.89896,21.727325,0
              -103.899492,21.725434,0
              -103.899909,21.722108,0
              -103.900731,21.719083,0
              -103.901366,21.717333,0
              -103.90241,21.716144,0
              -103.90335,21.716677,0
              -103.903973,21.718248,0
              -103.905012,21.718591,0
              -103.907126,21.718311,0
              -103.907736,21.718705,0
              -103.907907,21.720283,0
              -103.909189,21.722155,0
              -103.910773,21.725403,0
              -103.913014,21.726198,0
              -103.915622,21.727758,0
              -103.917861,21.729591,0
              -103.91842,21.731507,0
              -103.918883,21.732114,0
              -103.920508,21.732638,0
              -103.921319,21.7346,0
              -103.922459,21.734749,0
              -103.923737,21.736434,0
              -103.92502,21.736169,0
              -103.926516,21.736298,0
              -103.927413,21.736718,0
              -103.927992,21.737433,0
              -103.928044,21.739151,0
              -103.929062,21.740547,0
              -103.930121,21.741211,0
              -103.93117,21.74288,0
              -103.931728,21.743206,0
              -103.932245,21.745485,0
              -103.931988,21.74588,0
              -103.93222,21.746976,0
              -103.933648,21.748426,0
              -103.933534,21.749146,0
              -103.932582,21.750511,0
              -103.931202,21.751667,0
              -103.92816,21.751631,0
              -103.927171,21.751757,0
              -103.925301,21.751613,0
              -103.923296,21.750875,0
              -103.921456,21.751324,0
              -103.920119,21.750855,0
              -103.919056,21.751473,0
              -103.916885,21.754028,0
              -103.916557,21.755409,0
              -103.916129,21.755769,0
              -103.916369,21.75689,0
              -103.918232,21.757857,0
              -103.91766,21.758644,0
              -103.919457,21.758902,0
              -103.919379,21.759922,0
              -103.918777,21.760281,0
              -103.919053,21.7633,0
              -103.918644,21.766174,0
              -103.91917,21.766941,0
              -103.920085,21.767127,0
              -103.921041,21.768078,0
              -103.921317,21.769563,0
              -103.921746,21.77033,0
              -103.923939,21.772136,0
              -103.92567,21.77261,0
              -103.926618,21.773773,0
              -103.927464,21.774339,0
              -103.928629,21.774611,0
              -103.929515,21.774485,0
              -103.931433,21.773639,0
              -103.932599,21.774042,0
              -103.933514,21.774743,0
              -103.933827,21.775537,0
              -103.934496,21.775905,0
              -103.935611,21.775376,0
              -103.937748,21.775631,0
              -103.937843,21.776351,0
              -103.939036,21.775639,0
              -103.940798,21.775428,0
              -103.941787,21.775749,0
              -103.943602,21.776758,0
              -103.944511,21.776819,0
              -103.945249,21.77638,0
              -103.946319,21.776295,0
              -103.948305,21.775513,0
              -103.950121,21.775306,0
              -103.950588,21.774111,0
              -103.95136,21.773956,0
              -103.951784,21.774491,0
              -103.952117,21.775986,0
              -103.952858,21.776043,0
              -103.953268,21.774342,0
              -103.953645,21.773703,0
              -103.954672,21.77395,0
              -103.955417,21.77329,0
              -103.957442,21.773488,0
              -103.957279,21.772315,0
              -103.958766,21.772005,0
              -103.960643,21.772923,0
              -103.961475,21.772635,0
              -103.967442,21.772325,0
              -103.967686,21.771301,0
              -103.970609,21.770821,0
              -103.9725,21.771316,0
              -103.97396,21.770823,0
              -103.974576,21.770957,0
              -103.974728,21.772186,0
              -103.975782,21.772453,0
              -103.976502,21.771195,0
              -103.978333,21.771671,0
              -103.978846,21.772623,0
              -103.97986,21.77276,0
              -103.98045,21.773991,0
              -103.980926,21.774329,0
              -103.983946,21.772878,0
              -103.984645,21.772696,0
              -103.984935,21.775218,0
              -103.986505,21.775899,0
              -103.986796,21.77698,0
              -103.988519,21.778683,0
              -103.989149,21.779859,0
              -103.989849,21.779547,0
              -103.991541,21.779911,0
              -103.994416,21.779631,0
              -103.99655,21.779215,0
              -103.997487,21.779483,0
              -103.999115,21.781783,0
              -104.00033,21.782108,0
              -104.001621,21.782786,0
              -104.003071,21.782914,0
              -104.003957,21.782558,0
              -104.007506,21.782467,0
              -104.008428,21.781915,0
              -104.009384,21.781828,0
              -104.011257,21.782118,0
              -104.011607,21.782781,0
              -104.013181,21.783236,0
              -104.013886,21.783928,0
              -104.015958,21.785046,0
              -104.01818,21.785104,0
              -104.01977,21.785855,0
              -104.020923,21.787109,0
              -104.022702,21.786912,0
              -104.024092,21.788001,0
              -104.024905,21.788276,0
              -104.02554,21.787862,0
              -104.027017,21.787527,0
              -104.027964,21.787631,0
              -104.029432,21.788622,0
              -104.031955,21.789202,0
              -104.033236,21.79061,0
              -104.034472,21.790764,0
              -104.035867,21.789622,0
              -104.036664,21.789262,0
              -104.03751,21.789434,0
              -104.038153,21.789019,0
              -104.039213,21.789125,0
              -104.040158,21.789622,0
              -104.040679,21.790608,0
              -104.042094,21.791206,0
              -104.043307,21.791066,0
              -104.045816,21.79267,0
              -104.047957,21.792738,0
              -104.049716,21.793984,0
              -104.051439,21.79416,0
              -104.051826,21.794707,0
              -104.052615,21.794646,0
              -104.053157,21.793359,0
              -104.053657,21.79319,0
              -104.054061,21.793885,0
              -104.054866,21.793995,0
              -104.055927,21.792416,0
              -104.056611,21.792323,0
              -104.059424,21.7931,0
              -104.060926,21.792937,0
              -104.062189,21.793215,0
              -104.064603,21.794112,0
              -104.065784,21.794024,0
              -104.066387,21.793011,0
              -104.065823,21.790625,0
              -104.066434,21.789792,0
              -104.067456,21.790609,0
              -104.067982,21.790588,0
              -104.068452,21.789728,0
              -104.071346,21.790238,0
              -104.071907,21.790168,0
              -104.072818,21.789379,0
              -104.075184,21.789785,0
              -104.076238,21.789717,0
              -104.076857,21.787658,0
              -104.077731,21.78668,0
              -104.079763,21.785979,0
              -104.080089,21.784409,0
              -104.079477,21.782804,0
              -104.079856,21.782405,0
              -104.080809,21.782923,0
              -104.080967,21.783632,0
              -104.08369,21.785109,0
              -104.084488,21.785809,0
              -104.085441,21.785577,0
              -104.090454,21.785591,0
              -104.091483,21.784895,0
              -104.093319,21.784563,0
              -104.093723,21.784842,0
              -104.093966,21.785918,0
              -104.093156,21.789251,0
              -104.093251,21.791245,0
              -104.094041,21.791592,0
              -104.096359,21.791999,0
              -104.097542,21.792656,0
              -104.098437,21.792817,0
              -104.099969,21.792607,0
              -104.100613,21.790866,0
              -104.100983,21.790476,0
              -104.102398,21.790114,0
              -104.103776,21.790196,0
              -104.104823,21.791159,0
              -104.105955,21.791165,0
              -104.107094,21.790311,0
              -104.108846,21.787717,0
              -104.109455,21.787328,0
              -104.110979,21.787754,0
              -104.112158,21.787775,0
              -104.11633,21.789548,0
              -104.118069,21.789847,0
              -104.119044,21.789422,0
              -104.120998,21.790326,0
              -104.122102,21.790528,0
              -104.123104,21.790263,0
              -104.124447,21.790369,0
              -104.125816,21.790156,0
              -104.127131,21.790654,0
              -104.128306,21.790233,0
              -104.128921,21.79049,0
              -104.130382,21.790451,0
              -104.131088,21.791146,0
              -104.131893,21.791342,0
              -104.132496,21.792144,0
              -104.133517,21.792521,0
              -104.134773,21.793985,0
              -104.134741,21.794698,0
              -104.135265,21.795436,0
              -104.135702,21.79711,0
              -104.137441,21.798115,0
              -104.138366,21.799863,0
              -104.139349,21.800838,0
              -104.140229,21.80089,0
              -104.140796,21.801571,0
              -104.142043,21.801432,0
              -104.143804,21.802265,0
              -104.144267,21.802945,0
              -104.145156,21.805259,0
              -104.146531,21.80643,0
              -104.148751,21.807384,0
              -104.149963,21.807359,0
              -104.151795,21.807946,0
              -104.153281,21.80818,0
              -104.153533,21.807695,0
              -104.154298,21.807815,0
              -104.154943,21.809177,0
              -104.156179,21.810787,0
              -104.157092,21.810447,0
              -104.158994,21.810485,0
              -104.159549,21.810935,0
              -104.160697,21.809865,0
              -104.161748,21.809841,0
              -104.162216,21.810593,0
              -104.162001,21.812516,0
              -104.163777,21.812333,0
              -104.163768,21.813898,0
              -104.16462,21.815965,0
              -104.165245,21.816552,0
              -104.167154,21.819068,0
              -104.168326,21.820036,0
              -104.16991,21.820303,0
              -104.171264,21.822949,0
              -104.172015,21.823572,0
              -104.172282,21.825499,0
              -104.17375,21.826675,0
              -104.175033,21.828361,0
              -104.176613,21.832237,0
              -104.177539,21.833109,0
              -104.178459,21.833166,0
              -104.179725,21.834049,0
              -104.180721,21.834157,0
              -104.181867,21.836913,0
              -104.18424,21.837682,0
              -104.187194,21.837881,0
              -104.187511,21.840204,0
              -104.188358,21.842736,0
              -104.188032,21.844106,0
              -104.188644,21.846887,0
              -104.189083,21.847746,0
              -104.18917,21.849047,0
              -104.190494,21.850324,0
              -104.190713,21.851064,0
              -104.191756,21.851217,0
              -104.193503,21.850576,0
              -104.195532,21.850379,0
              -104.19664,21.850532,0
              -104.195571,21.850727,0
              -104.19461,21.852177,0
              -104.192981,21.853499,0
              -104.190819,21.854668,0
              -104.188375,21.855225,0
              -104.187315,21.855625,0
              -104.184425,21.857451,0
              -104.184135,21.857439,0
              -104.180728,21.859201,0
              -104.180099,21.859969,0
              -104.179281,21.860386,0
              -104.178695,21.86337,0
              -104.177766,21.865139,0
              -104.174918,21.867619,0
              -104.17351,21.868647,0
              -104.172616,21.869919,0
              -104.172233,21.871319,0
              -104.172952,21.871747,0
              -104.175556,21.871912,0
              -104.176274,21.871492,0
              -104.177191,21.870171,0
              -104.178265,21.868163,0
              -104.178803,21.86763,0
              -104.18151,21.867062,0
              -104.184441,21.867193,0
              -104.186385,21.868012,0
              -104.186775,21.868378,0
              -104.187269,21.870741,0
              -104.188208,21.87211,0
              -104.189082,21.872786,0
              -104.189184,21.874404,0
              -104.189887,21.87581,0
              -104.190892,21.877201,0
              -104.19235,21.878448,0
              -104.193833,21.879022,0
              -104.195716,21.879221,0
              -104.196705,21.880989,0
              -104.196875,21.883205,0
              -104.197388,21.884322,0
              -104.197859,21.884576,0
              -104.198069,21.887329,0
              -104.198649,21.888172,0
              -104.198687,21.888998,0
              -104.199901,21.889887,0
              -104.201041,21.891478,0
              -104.200534,21.893367,0
              -104.199968,21.894267,0
              -104.200923,21.896751,0
              -104.201417,21.8974,0
              -104.2015,21.898681,0
              -104.200932,21.899372,0
              -104.201013,21.901052,0
              -104.200153,21.901868,0
              -104.199694,21.903504,0
              -104.199429,21.906185,0
              -104.199649,21.907299,0
              -104.199439,21.908413,0
              -104.200244,21.909466,0
              -104.19929,21.911036,0
              -104.198163,21.911409,0
              -104.197506,21.911953,0
              -104.196452,21.913435,0
              -104.194221,21.913928,0
              -104.192838,21.915203,0
              -104.191211,21.915972,0
              -104.190303,21.917082,0
              -104.189868,21.918046,0
              -104.188802,21.918998,0
              -104.187909,21.92122,0
              -104.187792,21.92227,0
              -104.188308,21.922671,0
              -104.188476,21.924625,0
              -104.189281,21.925848,0
              -104.188666,21.927042,0
              -104.188432,21.928212,0
              -104.187574,21.928564,0
              -104.187118,21.929234,0
              -104.186452,21.931374,0
              -104.184818,21.933319,0
              -104.183522,21.934081,0
              -104.183542,21.93467,0
              -104.182403,21.935997,0
              -104.180707,21.937099,0
              -104.179717,21.937508,0
              -104.179332,21.938517,0
              -104.178718,21.939015,0
              -104.178612,21.940728,0
              -104.179095,21.942168,0
              -104.178955,21.943314,0
              -104.179496,21.945064,0
              -104.179325,21.945925,0
              -104.177695,21.947339,0
              -104.176916,21.948863,0
              -104.17709,21.949288,0
              -104.17708,21.951619,0
              -104.17665,21.952383,0
              -104.176655,21.955903,0
              -104.176443,21.957053,0
              -104.175694,21.95789,0
              -104.175415,21.959674,0
              -104.174914,21.960196,0
              -104.17502,21.961833,0
              -104.174771,21.962534,0
              -104.173699,21.963393,0
              -104.173926,21.964559,0
              -104.17441,21.965372,0
              -104.174077,21.966314,0
              -104.174309,21.967063,0
              -104.173961,21.967636,0
              -104.174568,21.96885,0
              -104.174577,21.969532,0
              -104.173655,21.970883,0
              -104.175544,21.972562,0
              -104.179734,21.977052,0
              -104.184598,21.979613,0
              -104.185562,21.98052,0
              -104.187228,21.981181,0
              -104.188922,21.982075,0
              -104.188689,21.982683,0
              -104.189423,21.983207,0
              -104.190229,21.982959,0
              -104.191535,21.983875,0
              -104.193319,21.98542,0
              -104.195702,21.986038,0
              -104.196635,21.98558,0
              -104.197254,21.985914,0
              -104.198229,21.985506,0
              -104.19883,21.984761,0
              -104.20109,21.983381,0
              -104.202657,21.982772,0
              -104.203633,21.982975,0
              -104.20445,21.983565,0
              -104.206383,21.983271,0
              -104.212021,21.98311,0
              -104.212743,21.982881,0
              -104.21549,21.980803,0
              -104.21737,21.98022,0
              -104.218569,21.979518,0
              -104.218829,21.979001,0
              -104.221107,21.97794,0
              -104.224885,21.975269,0
              -104.22595,21.974183,0
              -104.226473,21.973205,0
              -104.228391,21.972047,0
              -104.232176,21.970293,0
              -104.233902,21.969194,0
              -104.234848,21.969052,0
              -104.238539,21.969719,0
              -104.239679,21.969605,0
              -104.240687,21.970099,0
              -104.242156,21.969808,0
              -104.242768,21.969382,0
              -104.244367,21.967544,0
              -104.245257,21.966912,0
              -104.247289,21.967343,0
              -104.249146,21.968457,0
              -104.250509,21.968817,0
              -104.252473,21.969897,0
              -104.253465,21.970776,0
              -104.258504,21.97224,0
              -104.258906,21.972641,0
              -104.260748,21.976042,0
              -104.262021,21.976859,0
              -104.263288,21.977039,0
              -104.265982,21.97691,0
              -104.269014,21.97778,0
              -104.269891,21.978267,0
              -104.274772,21.980159,0
              -104.275447,21.980623,0
              -104.277151,21.982389,0
              -104.277753,21.983988,0
              -104.276892,21.984867,0
              -104.276206,21.986754,0
              -104.27618,21.987657,0
              -104.277726,21.990408,0
              -104.278296,21.993689,0
              -104.279701,21.997336,0
              -104.281382,21.999659,0
              -104.285615,22.000011,0
              -104.287669,21.998785,0
              -104.289377,21.998411,0
              -104.289948,21.998836,0
              -104.290863,22.00071,0
              -104.291735,22.002017,0
              -104.293108,22.002736,0
              -104.294845,22.002681,0
              -104.295792,22.00239,0
              -104.298532,22.00096,0
              -104.300902,21.999408,0
              -104.302295,21.998182,0
              -104.302815,21.997449,0
              -104.304207,21.994598,0
              -104.304897,21.99266,0
              -104.305511,21.991571,0
              -104.307211,21.989308,0
              -104.308138,21.988619,0
              -104.309604,21.988751,0
              -104.311717,21.990231,0
              -104.312999,21.990783,0
              -104.315056,21.990804,0
              -104.31637,21.989907,0
              -104.317254,21.988692,0
              -104.319403,21.984531,0
              -104.320419,21.983885,0
              -104.322224,21.983723,0
              -104.324229,21.984279,0
              -104.325403,21.983653,0
              -104.32566,21.982016,0
              -104.325041,21.979311,0
              -104.325092,21.977631,0
              -104.325457,21.976666,0
              -104.326863,21.975369,0
              -104.328236,21.975691,0
              -104.330877,21.977704,0
              -104.335121,21.979774,0
              -104.33667,21.979612,0
              -104.338842,21.978261,0
              -104.340328,21.978081,0
              -104.340871,21.977758,0
              -104.341479,21.976568,0
              -104.342743,21.975645,0
              -104.343577,21.974657,0
              -104.347031,21.973783,0
              -104.349695,21.973915,0
              -104.353673,21.972869,0
              -104.357149,21.972106,0
              -104.359046,21.972339,0
              -104.361736,21.973085,0
              -104.363105,21.973997,0
              -104.365126,21.974368,0
              -104.365849,21.97417,0
              -104.366242,21.973074,0
              -104.367091,21.972764,0
              -104.367294,21.973935,0
              -104.36842,21.974087,0
              -104.369057,21.974698,0
              -104.369863,21.974784,0
              -104.370693,21.976173,0
              -104.369943,21.976802,0
              -104.369801,21.977717,0
              -104.370988,21.97936,0
              -104.370601,21.98105,0
              -104.369512,21.98177,0
              -104.369393,21.98243,0
              -104.370086,21.9838,0
              -104.369359,21.984634,0
              -104.368383,21.985092,0
              -104.368036,21.986178,0
              -104.366981,21.986988,0
              -104.367205,21.987619,0
              -104.367851,21.987584,0
              -104.368207,21.989112,0
              -104.367824,21.990038,0
              -104.368194,21.990715,0
              -104.367524,21.99178,0
              -104.368708,21.992795,0
              -104.367629,21.993978,0
              -104.367644,21.99528,0
              -104.366985,21.996285,0
              -104.36759,21.997423,0
              -104.366345,21.998427,0
              -104.366385,22.001326,0
              -104.365426,22.001515,0
              -104.36509,22.002632,0
              -104.363962,22.003425,0
              -104.363721,22.00457,0
              -104.362477,22.006169,0
              -104.361967,22.008463,0
              -104.362165,22.009666,0
              -104.361911,22.010071,0
              -104.36051,22.009987,0
              -104.360029,22.010424,0
              -104.360374,22.012547,0
              -104.360273,22.013597,0
              -104.36064,22.0141,0
              -104.360039,22.015057,0
              -104.36123,22.017222,0
              -104.361618,22.018781,0
              -104.361313,22.019432,0
              -104.363296,22.01966,0
              -104.364164,22.020246,0
              -104.366079,22.019841,0
              -104.366809,22.020736,0
              -104.367977,22.021386,0
              -104.367805,22.022995,0
              -104.367253,22.023986,0
              -104.36901,22.024463,0
              -104.367862,22.025585,0
              -104.369026,22.026075,0
              -104.368714,22.027091,0
              -104.368906,22.028644,0
              -104.366589,22.029011,0
              -104.365916,22.030056,0
              -104.366365,22.031729,0
              -104.366265,22.033541,0
              -104.366626,22.034419,0
              -104.366105,22.035381,0
              -104.365233,22.035913,0
              -104.365086,22.036787,0
              -104.365741,22.038455,0
              -104.36539,22.039582,0
              -104.365444,22.040764,0
              -104.366591,22.0423,0
              -104.367136,22.042463,0
              -104.367045,22.04351,0
              -104.367706,22.044497,0
              -104.367671,22.045464,0
              -104.36544,22.047873,0
              -104.364484,22.04846,0
              -104.36154,22.052853,0
              -104.362778,22.055695,0
              -104.363214,22.057102,0
              -104.363488,22.060016,0
              -104.363455,22.063194,0
              -104.363749,22.064302,0
              -104.363652,22.067008,0
              -104.363846,22.067982,0
              -104.363523,22.069026,0
              -104.363299,22.070894,0
              -104.363477,22.074137,0
              -104.365539,22.077128,0
              -104.365566,22.07796,0
              -104.366687,22.079268,0
              -104.36746,22.080695,0
              -104.36854,22.084327,0
              -104.368273,22.085139,0
              -104.366824,22.086853,0
              -104.366648,22.087534,0
              -104.367476,22.089551,0
              -104.367554,22.091218,0
              -104.368297,22.09329,0
              -104.369445,22.09484,0
              -104.368952,22.095511,0
              -104.369235,22.096479,0
              -104.371245,22.099092,0
              -104.371154,22.099924,0
              -104.372538,22.100198,0
              -104.373224,22.101356,0
              -104.373192,22.102564,0
              -104.371854,22.104752,0
              -104.371416,22.105986,0
              -104.369818,22.108075,0
              -104.369141,22.108718,0
              -104.366046,22.110459,0
              -104.365513,22.112,0
              -104.364707,22.11244,0
              -104.364775,22.114332,0
              -104.364367,22.11551,0
              -104.364639,22.116399,0
              -104.364131,22.117705,0
              -104.364278,22.118197,0
              -104.36359,22.120623,0
              -104.363861,22.122143,0
              -104.362511,22.125193,0
              -104.361325,22.127338,0
              -104.361093,22.128552,0
              -104.361701,22.132373,0
              -104.361416,22.134428,0
              -104.361645,22.134907,0
              -104.361558,22.136699,0
              -104.360474,22.137653,0
              -104.359792,22.138772,0
              -104.359377,22.140656,0
              -104.359217,22.143178,0
              -104.35818,22.1446,0
              -104.35621,22.146614,0
              -104.354839,22.149856,0
              -104.354559,22.15121,0
              -104.354418,22.154001,0
              -104.35414,22.154678,0
              -104.35408,22.156687,0
              -104.354574,22.158582,0
              -104.355589,22.160907,0
              -104.355734,22.162193,0
              -104.355453,22.163663,0
              -104.356272,22.165435,0
              -104.355464,22.166319,0
              -104.354331,22.166899,0
              -104.351342,22.167494,0
              -104.350835,22.168614,0
              -104.350156,22.168659,0
              -104.34909,22.170511,0
              -104.349807,22.172383,0
              -104.350569,22.175893,0
              -104.349377,22.175784,0
              -104.348333,22.176336,0
              -104.348385,22.176795,0
              -104.347602,22.17713,0
              -104.347088,22.1789,0
              -104.346209,22.179319,0
              -104.346264,22.180135,0
              -104.34495,22.180687,0
              -104.344322,22.181688,0
              -104.340404,22.183451,0
              -104.339261,22.185661,0
              -104.337763,22.185139,0
              -104.336551,22.186722,0
              -104.336572,22.187563,0
              -104.335891,22.188332,0
              -104.335551,22.190065,0
              -104.336517,22.192591,0
              -104.336082,22.194213,0
              -104.334641,22.19645,0
              -104.333225,22.198091,0
              -104.332318,22.198788,0
              -104.331858,22.200491,0
              -104.332808,22.201547,0
              -104.333834,22.202136,0
              -104.336119,22.202331,0
              -104.337071,22.202802,0
              -104.338935,22.20477,0
              -104.340742,22.206413,0
              -104.341359,22.209563,0
              -104.341141,22.210819,0
              -104.340497,22.212494,0
              -104.339458,22.213477,0
              -104.336669,22.214921,0
              -104.333907,22.215822,0
              -104.334486,22.216081,0
              -104.333805,22.217055,0
              -104.333789,22.218383,0
              -104.332751,22.219245,0
              -104.333416,22.220749,0
              -104.332151,22.222272,0
              -104.332303,22.223433,0
              -104.331749,22.225516,0
              -104.331978,22.226333,0
              -104.332014,22.228353,0
              -104.331121,22.229189,0
              -104.3293,22.230047,0
              -104.328363,22.229734,0
              -104.328087,22.230513,0
              -104.326466,22.231105,0
              -104.325898,22.231792,0
              -104.326417,22.233064,0
              -104.327059,22.233902,0
              -104.327203,22.235999,0
              -104.327452,22.23687,0
              -104.327116,22.237759,0
              -104.328283,22.238307,0
              -104.328515,22.23898,0
              -104.328199,22.239741,0
              -104.328695,22.241882,0
              -104.328027,22.243198,0
              -104.328667,22.24418,0
              -104.328602,22.245486,0
              -104.326861,22.246621,0
              -104.327379,22.247792,0
              -104.326695,22.247917,0
              -104.325765,22.248999,0
              -104.324268,22.249722,0
              -104.323329,22.251173,0
              -104.323229,22.252025,0
              -104.322235,22.253942,0
              -104.319935,22.25547,0
              -104.319436,22.256382,0
              -104.318165,22.256908,0
              -104.316185,22.256275,0
              -104.313797,22.258043,0
              -104.312897,22.259165,0
              -104.311204,22.262769,0
              -104.310798,22.263306,0
              -104.309388,22.263224,0
              -104.307407,22.264875,0
              -104.306726,22.264954,0
              -104.306574,22.265751,0
              -104.304483,22.268511,0
              -104.303351,22.269498,0
              -104.302839,22.271727,0
              -104.301224,22.272935,0
              -104.300289,22.272917,0
              -104.300379,22.274137,0
              -104.300116,22.275871,0
              -104.298835,22.276412,0
              -104.29748,22.275756,0
              -104.296475,22.276167,0
              -104.29564,22.276908,0
              -104.295198,22.280495,0
              -104.294127,22.281043,0
              -104.29392,22.28236,0
              -104.293037,22.283559,0
              -104.292448,22.285032,0
              -104.291678,22.285277,0
              -104.290576,22.28493,0
              -104.289888,22.285515,0
              -104.288758,22.28564,0
              -104.290205,22.286718,0
              -104.289235,22.287446,0
              -104.289941,22.287931,0
              -104.290066,22.288959,0
              -104.289068,22.290457,0
              -104.289792,22.291809,0
              -104.289571,22.29263,0
              -104.289782,22.293561,0
              -104.288767,22.295218,0
              -104.28694,22.296198,0
              -104.285193,22.296693,0
              -104.284866,22.297094,0
              -104.284496,22.298801,0
              -104.284927,22.300002,0
              -104.284836,22.302652,0
              -104.285922,22.302933,0
              -104.2872,22.304573,0
              -104.287377,22.305285,0
              -104.288156,22.305578,0
              -104.288436,22.306315,0
              -104.289498,22.307125,0
              -104.290993,22.307224,0
              -104.292342,22.306957,0
              -104.292646,22.30739,0
              -104.292742,22.309268,0
              -104.293639,22.311938,0
              -104.294435,22.313187,0
              -104.294642,22.314134,0
              -104.293353,22.316028,0
              -104.292649,22.318139,0
              -104.293122,22.318791,0
              -104.292633,22.319702,0
              -104.293012,22.320377,0
              -104.294586,22.321639,0
              -104.296461,22.322463,0
              -104.297005,22.323278,0
              -104.297651,22.323269,0
              -104.29831,22.32467,0
              -104.299256,22.325775,0
              -104.299518,22.327464,0
              -104.299212,22.327925,0
              -104.298041,22.328124,0
              -104.297173,22.328768,0
              -104.296265,22.328795,0
              -104.295517,22.328211,0
              -104.294553,22.328325,0
              -104.293322,22.329162,0
              -104.293023,22.330733,0
              -104.293832,22.335943,0
              -104.295164,22.337262,0
              -104.295165,22.339557,0
              -104.296551,22.341279,0
              -104.297232,22.343444,0
              -104.298148,22.3454,0
              -104.298379,22.347811,0
              -104.29717,22.348159,0
              -104.295258,22.347546,0
              -104.294316,22.346828,0
              -104.293593,22.345248,0
              -104.292513,22.344417,0
              -104.292694,22.345338,0
              -104.291749,22.346545,0
              -104.288847,22.349132,0
              -104.288691,22.350409,0
              -104.289259,22.35178,0
              -104.288474,22.352637,0
              -104.288087,22.353831,0
              -104.286886,22.35476,0
              -104.28574,22.356366,0
              -104.286869,22.357362,0
              -104.289152,22.35763,0
              -104.291807,22.360468,0
              -104.292055,22.361575,0
              -104.293076,22.362999,0
              -104.292806,22.363989,0
              -104.293128,22.365131,0
              -104.325316,22.380749,0
              -104.328041,22.381162,0
              -104.350041,22.386405,0
              -104.351661,22.389193,0
              -104.353533,22.401315,0
              -104.351771,22.407758,0
              -104.348843,22.409717,0
              -104.371512,22.421659,0
              -104.39741,22.411917,0
              -104.422975,22.401798,0
              -104.431926,22.398048,0
              -104.445215,22.393086,0
              -104.459245,22.386843,0
              -104.494135,22.376255,0
              -104.49539,22.376324,0
              -104.495933,22.374511,0
              -104.495417,22.372611,0
              -104.494801,22.371954,0
              -104.493566,22.371692,0
              -104.493149,22.371289,0
              -104.491123,22.372335,0
              -104.489293,22.371321,0
              -104.488594,22.370645,0
              -104.48786,22.368905,0
              -104.488001,22.367037,0
              -104.488919,22.36538,0
              -104.491035,22.363822,0
              -104.492782,22.363805,0
              -104.493823,22.363479,0
              -104.494801,22.362711,0
              -104.49499,22.360532,0
              -104.49401,22.359895,0
              -104.493198,22.360845,0
              -104.492502,22.360807,0
              -104.491258,22.358912,0
              -104.490986,22.357504,0
              -104.489554,22.356111,0
              -104.488174,22.354078,0
              -104.487333,22.353189,0
              -104.485227,22.352436,0
              -104.483666,22.352839,0
              -104.481206,22.352728,0
              -104.48121,22.351617,0
              -104.482565,22.351102,0
              -104.48369,22.349433,0
              -104.484606,22.34926,0
              -104.485495,22.350592,0
              -104.486976,22.351312,0
              -104.488181,22.351493,0
              -104.489119,22.351278,0
              -104.491105,22.351233,0
              -104.491796,22.350988,0
              -104.493856,22.35117,0
              -104.49603,22.350236,0
              -104.497442,22.349029,0
              -104.499063,22.347223,0
              -104.499627,22.346184,0
              -104.502958,22.345822,0
              -104.503605,22.345981,0
              -104.505182,22.345745,0
              -104.506114,22.345096,0
              -104.507398,22.346032,0
              -104.507633,22.346731,0
              -104.508685,22.347686,0
              -104.51113,22.351144,0
              -104.512419,22.35245,0
              -104.513305,22.354048,0
              -104.514285,22.354354,0
              -104.51577,22.356482,0
              -104.517042,22.357169,0
              -104.517222,22.358455,0
              -104.518267,22.359376,0
              -104.518659,22.360604,0
              -104.522632,22.360378,0
              -104.526292,22.361346,0
              -104.527184,22.361443,0
              -104.528505,22.362245,0
              -104.530012,22.363648,0
              -104.530811,22.363916,0
              -104.531955,22.363488,0
              -104.533167,22.363998,0
              -104.53518,22.364226,0
              -104.53617,22.365067,0
              -104.537777,22.367026,0
              -104.538692,22.369983,0
              -104.539894,22.371733,0
              -104.541844,22.37276,0
              -104.543241,22.374231,0
              -104.544642,22.375089,0
              -104.546728,22.375705,0
              -104.547669,22.376293,0
              -104.549113,22.379175,0
              -104.549411,22.381732,0
              -104.550235,22.383109,0
              -104.550955,22.385621,0
              -104.550419,22.386445,0
              -104.550518,22.388082,0
              -104.551253,22.388867,0
              -104.552823,22.388345,0
              -104.554697,22.387053,0
              -104.555695,22.386804,0
              -104.556312,22.385881,0
              -104.556928,22.385657,0
              -104.557736,22.386066,0
              -104.557689,22.38767,0
              -104.557993,22.388548,0
              -104.557987,22.390839,0
              -104.558406,22.391602,0
              -104.558715,22.393439,0
              -104.560879,22.394779,0
              -104.564948,22.39504,0
              -104.565634,22.395277,0
              -104.567147,22.394747,0
              -104.570098,22.394088,0
              -104.571869,22.393938,0
              -104.572656,22.39412,0
              -104.573838,22.394885,0
              -104.574589,22.39476,0
              -104.576092,22.395803,0
              -104.577099,22.396786,0
              -104.579319,22.398063,0
              -104.580954,22.39932,0
              -104.582074,22.400448,0
              -104.582321,22.401499,0
              -104.583569,22.403763,0
              -104.583325,22.405024,0
              -104.583777,22.406073,0
              -104.585158,22.4064,0
              -104.586611,22.406271,0
              -104.58691,22.406761,0
              -104.586519,22.407761,0
              -104.5868,22.41017,0
              -104.58847,22.412654,0
              -104.590529,22.411957,0
              -104.591594,22.412216,0
              -104.592724,22.411829,0
              -104.593457,22.414116,0
              -104.594079,22.4152,0
              -104.593353,22.416725,0
              -104.592964,22.418562,0
              -104.59331,22.420779,0
              -104.594556,22.42281,0
              -104.594365,22.423944,0
              -104.593534,22.424765,0
              -104.59347,22.425606,0
              -104.59394,22.42612,0
              -104.595641,22.426714,0
              -104.595523,22.428591,0
              -104.597132,22.431084,0
              -104.59823,22.431268,0
              -104.598767,22.432018,0
              -104.597886,22.432673,0
              -104.597076,22.433872,0
              -104.596975,22.435211,0
              -104.597176,22.436755,0
              -104.597911,22.437715,0
              -104.599099,22.438688,0
              -104.599889,22.43839,0
              -104.601509,22.439168,0
              -104.602393,22.440554,0
              -104.602519,22.442541,0
              -104.603062,22.443321,0
              -104.604009,22.443884,0
              -104.604445,22.44486,0
              -104.605309,22.445191,0
              -104.605437,22.445738,0
              -104.605073,22.447114,0
              -104.603655,22.449405,0
              -104.603725,22.450126,0
              -104.604358,22.450649,0
              -104.603821,22.452411,0
              -104.602766,22.453691,0
              -104.60285,22.454318,0
              -104.602127,22.455437,0
              -104.602951,22.458765,0
              -104.602592,22.460515,0
              -104.63836,22.463419,0
              -104.655292,22.462155,0
              -104.653629,22.498119,0
              -104.654167,22.5,0
              -104.654584,22.523406,0
              -104.65368,22.524242,0
              -104.654051,22.525324,0
              -104.655402,22.526041,0
              -104.655653,22.526501,0
              -104.655345,22.527964,0
              -104.655759,22.528149,0
              -104.655297,22.529258,0
              -104.656291,22.529936,0
              -104.656463,22.530704,0
              -104.655999,22.531625,0
              -104.65627,22.532715,0
              -104.656791,22.533218,0
              -104.655696,22.533658,0
              -104.65561,22.534189,0
              -104.65647,22.535252,0
              -104.657078,22.535493,0
              -104.65689,22.536091,0
              -104.655939,22.536785,0
              -104.656512,22.537256,0
              -104.656346,22.538093,0
              -104.656692,22.539021,0
              -104.655893,22.539862,0
              -104.656495,22.541315,0
              -104.659002,22.542271,0
              -104.659174,22.542798,0
              -104.658714,22.544013,0
              -104.659232,22.546039,0
              -104.660015,22.54675,0
              -104.661578,22.546917,0
              -104.662745,22.547362,0
              -104.663725,22.549269,0
              -104.66235,22.550675,0
              -104.663311,22.551445,0
              -104.664614,22.553092,0
              -104.66618,22.555376,0
              -104.666675,22.55667,0
              -104.666668,22.558757,0
              -104.66687,22.559323,0
              -104.667854,22.560223,0
              -104.667622,22.562545,0
              -104.669217,22.564009,0
              -104.669998,22.565262,0
              -104.671685,22.564055,0
              -104.672539,22.564125,0
              -104.675944,22.561423,0
              -104.678571,22.560565,0
              -104.680958,22.559096,0
              -104.683464,22.558531,0
              -104.6858,22.557788,0
              -104.687493,22.558608,0
              -104.689794,22.558389,0
              -104.690683,22.557767,0
              -104.69285,22.557452,0
              -104.694998,22.556626,0
              -104.696718,22.556552,0
              -104.700036,22.555824,0
              -104.7013,22.555002,0
              -104.704299,22.554995,0
              -104.705036,22.55593,0
              -104.706571,22.555786,0
              -104.707205,22.554985,0
              -104.708737,22.554624,0
              -104.709876,22.555828,0
              -104.711052,22.556586,0
              -104.715164,22.555949,0
              -104.716552,22.558889,0
              -104.716853,22.560962,0
              -104.71735,22.561738,0
              -104.718591,22.562757,0
              -104.718624,22.563406,0
              -104.717802,22.564818,0
              -104.718513,22.565651,0
              -104.719359,22.568686,0
              -104.719797,22.569045,0
              -104.720734,22.568,0
              -104.721854,22.567208,0
              -104.72323,22.566973,0
              -104.723609,22.564685,0
              -104.725146,22.562987,0
              -104.72523,22.561521,0
              -104.727117,22.5604,0
              -104.727733,22.559343,0
              -104.728776,22.558743,0
              -104.730826,22.558471,0
              -104.731754,22.558552,0
              -104.733373,22.558235,0
              -104.734816,22.558528,0
              -104.736067,22.55795,0
              -104.737053,22.558096,0
              -104.740317,22.559947,0
              -104.740814,22.561036,0
              -104.742989,22.562198,0
              -104.745731,22.56348,0
              -104.74712,22.563504,0
              -104.750134,22.565221,0
              -104.751768,22.565026,0
              -104.755119,22.566103,0
              -104.757192,22.567088,0
              -104.758315,22.568059,0
              -104.759812,22.568718,0
              -104.76152,22.570083,0
              -104.763048,22.573399,0
              -104.76374,22.576238,0
              -104.764364,22.576989,0
              -104.765935,22.578011,0
              -104.767087,22.580853,0
              -104.768158,22.581691,0
              -104.769005,22.581549,0
              -104.770247,22.582501,0
              -104.77186,22.582234,0
              -104.774822,22.584187,0
              -104.775089,22.583975,0
              -104.775934,22.585123,0
              -104.775843,22.585759,0
              -104.774545,22.586966,0
              -104.774049,22.588756,0
              -104.772679,22.589869,0
              -104.772876,22.590711,0
              -104.772573,22.591898,0
              -104.77323,22.591927,0
              -104.773666,22.592716,0
              -104.775071,22.59305,0
              -104.775804,22.594226,0
              -104.775958,22.597622,0
              -104.776702,22.598496,0
              -104.778368,22.599357,0
              -104.777894,22.600572,0
              -104.777844,22.601768,0
              -104.779679,22.603024,0
              -104.779714,22.603742,0
              -104.77892,22.604134,0
              -104.778147,22.605267,0
              -104.778712,22.606459,0
              -104.777858,22.607734,0
              -104.777386,22.607619,0
              -104.776227,22.610064,0
              -104.776417,22.611655,0
              -104.775882,22.61344,0
              -104.776371,22.615475,0
              -104.775688,22.616494,0
              -104.775581,22.617222,0
              -104.776532,22.618231,0
              -104.776998,22.619832,0
              -104.776492,22.620867,0
              -104.776023,22.622568,0
              -104.777111,22.624996,0
              -104.775829,22.627337,0
              -104.775854,22.629341,0
              -104.776144,22.630475,0
              -104.774508,22.631738,0
              -104.774212,22.632821,0
              -104.775754,22.633786,0
              -104.776629,22.634723,0
              -104.77676,22.63622,0
              -104.777331,22.636628,0
              -104.778792,22.636862,0
              -104.778985,22.638241,0
              -104.778576,22.639406,0
              -104.777833,22.639681,0
              -104.778011,22.640924,0
              -104.778768,22.641277,0
              -104.779187,22.642931,0
              -104.779824,22.64334,0
              -104.781192,22.643522,0
              -104.783528,22.64465,0
              -104.784412,22.645804,0
              -104.787418,22.647071,0
              -104.78863,22.647882,0
              -104.789217,22.647944,0
              -104.791778,22.647414,0
              -104.793116,22.648456,0
              -104.793992,22.648711,0
              -104.796546,22.648171,0
              -104.798359,22.648575,0
              -104.800493,22.648408,0
              -104.802018,22.648876,0
              -104.804256,22.648744,0
              -104.80529,22.647394,0
              -104.805131,22.645844,0
              -104.80461,22.644914,0
              -104.803293,22.644109,0
              -104.802773,22.642405,0
              -104.8044,22.63983,0
              -104.80685,22.64007,0
              -104.807784,22.639827,0
              -104.808094,22.639241,0
              -104.809435,22.638754,0
              -104.811072,22.637853,0
              -104.811343,22.63662,0
              -104.811049,22.635043,0
              -104.811309,22.634765,0
              -104.814678,22.634249,0
              -104.815315,22.634424,0
              -104.815412,22.635221,0
              -104.816472,22.636091,0
              -104.815229,22.637209,0
              -104.815383,22.638319,0
              -104.816692,22.639683,0
              -104.818673,22.640465,0
              -104.82104,22.640386,0
              -104.822044,22.639671,0
              -104.823826,22.640016,0
              -104.824475,22.639813,0
              -104.825709,22.640126,0
              -104.827177,22.640857,0
              -104.82795,22.640223,0
              -104.829433,22.640226,0
              -104.832099,22.641399,0
              -104.833715,22.643146,0
              -104.835348,22.644318,0
              -104.837175,22.646031,0
              -104.838914,22.645677,0
              -104.840026,22.645861,0
              -104.840793,22.646588,0
              -104.840601,22.647936,0
              -104.841127,22.649395,0
              -104.840953,22.65013,0
              -104.840116,22.651139,0
              -104.858397,22.648327,0
              -104.862493,22.60707,0
              -104.960525,22.505311,0
              -104.987913,22.498727,0
              -105.007553,22.585672,0
              -105.072369,22.656499,0
              -105.068423,22.678414,0
              -105.057303,22.688094,0
              -104.89272,22.737409,0
              -104.912959,22.745569,0
              -104.913079,22.746095,0
              -104.914204,22.747471,0
              -104.91485,22.747549,0
              -104.915637,22.748538,0
              -104.915307,22.751459,0
              -104.914425,22.75262,0
              -104.91403,22.754985,0
              -104.914081,22.756117,0
              -104.914672,22.7573,0
              -104.914315,22.760265,0
              -104.913605,22.761712,0
              -104.912638,22.76273,0
              -104.912119,22.764379,0
              -104.912391,22.765484,0
              -104.911538,22.768986,0
              -104.911507,22.769738,0
              -104.912147,22.771643,0
              -104.9133,22.773159,0
              -104.913417,22.775294,0
              -104.912614,22.777554,0
              -104.911354,22.779488,0
              -104.910946,22.781155,0
              -104.910309,22.782028,0
              -104.910255,22.783098,0
              -104.90972,22.784895,0
              -104.910351,22.786407,0
              -104.911684,22.787739,0
              -104.91259,22.787782,0
              -104.913354,22.788938,0
              -104.913375,22.790486,0
              -104.913017,22.791704,0
              -104.911913,22.792911,0
              -104.911314,22.794002,0
              -104.909907,22.795378,0
              -104.908762,22.795129,0
              -104.90771,22.795327,0
              -104.906598,22.796237,0
              -104.905715,22.797592,0
              -104.905825,22.799084,0
              -104.905601,22.799817,0
              -104.907113,22.800491,0
              -104.910133,22.800657,0
              -104.911021,22.801332,0
              -104.911329,22.803192,0
              -104.91107,22.803576,0
              -104.909852,22.803917,0
              -104.908391,22.805354,0
              -104.908257,22.807601,0
              -104.909035,22.80831,0
              -104.910493,22.808622,0
              -104.911466,22.809334,0
              -104.911693,22.810061,0
              -104.911747,22.8119,0
              -104.9131,22.813782,0
              -104.914155,22.814376,0
              -104.917178,22.817194,0
              -104.917472,22.818428,0
              -104.918389,22.819781,0
              -104.919491,22.820626,0
              -104.921288,22.821368,0
              -104.924105,22.822751,0
              -104.925327,22.823058,0
              -104.927134,22.824247,0
              -104.928103,22.825432,0
              -104.929754,22.826429,0
              -104.932798,22.827309,0
              -104.934226,22.827311,0
              -104.936024,22.826504,0
              -104.938059,22.822388,0
              -104.938898,22.820404,0
              -104.94006,22.816977,0
              -104.940505,22.816163,0
              -104.941341,22.816137,0
              -104.942122,22.816607,0
              -104.945405,22.819247,0
              -104.948448,22.82113,0
              -104.950013,22.821775,0
              -104.951721,22.82183,0
              -104.952522,22.821405,0
              -104.953248,22.820494,0
              -104.953809,22.818511,0
              -104.954988,22.81625,0
              -104.957066,22.814232,0
              -104.958016,22.813646,0
              -104.958967,22.813605,0
              -104.960866,22.814171,0
              -104.962134,22.815102,0
              -104.964395,22.815177,0
              -104.965033,22.8156,0
              -104.965972,22.817089,0
              -104.966453,22.818507,0
              -104.967406,22.819308,0
              -104.968494,22.819677,0
              -104.969948,22.81963,0
              -104.971148,22.820586,0
              -104.971596,22.82321,0
              -104.971692,22.824662,0
              -104.973922,22.825722,0
              -104.977209,22.825776,0
              -104.978276,22.826201,0
              -104.9794,22.827898,0
              -104.980196,22.829589,0
              -104.980245,22.830578,0
              -104.981513,22.832446,0
              -104.983467,22.833612,0
              -104.984662,22.833971,0
              -104.986088,22.83401,0
              -104.988405,22.836049,0
              -104.988803,22.837587,0
              -104.989653,22.83886,0
              -104.989095,22.841683,0
              -104.987808,22.844119,0
              -104.987464,22.846184,0
              -104.987749,22.847086,0
              -104.989066,22.849232,0
              -104.990124,22.849857,0
              -104.99026,22.851543,0
              -104.990614,22.852145,0
              -104.989365,22.853907,0
              -104.988359,22.854609,0
              -104.98787,22.855515,0
              -104.988006,22.857652,0
              -104.98857,22.859395,0
              -104.988188,22.862124,0
              -104.988242,22.866469,0
              -104.988127,22.870289,0
              -104.988563,22.873912,0
              -104.988499,22.87504,0
              -104.989586,22.875697,0
              -104.9897,22.876552,0
              -104.989167,22.877476,0
              -104.988604,22.877495,0
              -104.987436,22.878568,0
              -104.987008,22.880807,0
              -104.987041,22.881506,0
              -104.988056,22.882751,0
              -104.987867,22.884062,0
              -104.987796,22.888252,0
              -104.988945,22.890883,0
              -104.98957,22.89143,0
              -104.990488,22.891613,0
              -104.993212,22.891491,0
              -104.995052,22.89298,0
              -104.997021,22.895229,0
              -104.997634,22.896539,0
              -104.99955,22.898601,0
              -105.000711,22.900663,0
              -105.002944,22.901878,0
              -105.005069,22.903552,0
              -105.005501,22.90492,0
              -105.005676,22.906742,0
              -105.005176,22.907256,0
              -105.004289,22.907257,0
              -105.002943,22.906709,0
              -105.002287,22.90598,0
              -105.001434,22.90598,0
              -104.999857,22.907196,0
              -105.000054,22.908897,0
              -105.001956,22.911949,0
              -105.004146,22.913776,0
              -105.004814,22.914562,0
              -105.005606,22.916954,0
              -105.0083,22.91981,0
              -105.00971,22.921482,0
              -105.010039,22.922363,0
              -105.009443,22.92527,0
              -105.009943,22.925765,0
              -105.009941,22.926542,0
              -105.008526,22.927982,0
              -105.007704,22.929095,0
              -105.005439,22.930493,0
              -105.004192,22.932013,0
              -105.004094,22.934079,0
              -105.004881,22.937555,0
              -105.00475,22.938619,0
              -105.003963,22.940654,0
              -105.003306,22.941536,0
              -105.000837,22.943868,0
              -105.000639,22.944355,0
              -105.000312,22.94721,0
              -104.999753,22.94797,0
              -104.997816,22.949883,0
              -104.996893,22.952002,0
              -104.997551,22.953791,0
              -104.998438,22.954551,0
              -104.998021,22.957173,0
              -104.998633,22.957795,0
              -105.000534,22.958509,0
              -105.00155,22.95934,0
              -105.003206,22.960102,0
              -105.004999,22.962923,0
              -105.005067,22.964131,0
              -105.005963,22.96558,0
              -105.007454,22.966887,0
              -105.008341,22.968459,0
              -105.008606,22.970186,0
              -105.008222,22.971496,0
              -105.006717,22.973458,0
              -105.003864,22.976165,0
              -105.003139,22.976983,0
              -105.013825,22.977673,0
              -105.076016,22.959639,0
              -105.163574,22.953872,0
              -105.254086,22.956272,0
              -105.297699,22.954162,0
              -105.32357,22.94133,0
              -105.328342,22.942988,0
              -105.328329,22.946157,0
              -105.328719,22.947418,0
              -105.329899,22.9475,0
              -105.33049,22.947983,0
              -105.330129,22.948846,0
              -105.328277,22.952019,0
              -105.328211,22.95264,0
              -105.329612,22.952872,0
              -105.332025,22.951706,0
              -105.333112,22.952252,0
              -105.334142,22.953409,0
              -105.334244,22.95445,0
              -105.33385,22.956114,0
              -105.332648,22.958769,0
              -105.331306,22.961178,0
              -105.330685,22.962692,0
              -105.330849,22.963173,0
              -105.331995,22.963392,0
              -105.333333,22.962081,0
              -105.334028,22.962039,0
              -105.33568,22.9626,0
              -105.336947,22.96345,0
              -105.337304,22.964137,0
              -105.336913,22.96614,0
              -105.337119,22.967689,0
              -105.337888,22.967506,0
              -105.338437,22.966478,0
              -105.341311,22.966713,0
              -105.342741,22.967478,0
              -105.343054,22.968998,0
              -105.342506,22.970416,0
              -105.340591,22.969861,0
              -105.338379,22.969699,0
              -105.337244,22.970419,0
              -105.336876,22.971685,0
              -105.338303,22.973447,0
              -105.339449,22.976397,0
              -105.337306,22.977382,0
              -105.336237,22.980028,0
              -105.336268,22.980474,0
              -105.337322,22.981251,0
              -105.338557,22.981415,0
              -105.340053,22.982004,0
              -105.339596,22.983503,0
              -105.337952,22.983957,0
              -105.336719,22.98474,0
              -105.336495,22.985694,0
              -105.335073,22.988426,0
              -105.335815,22.989434,0
              -105.338378,22.99115,0
              -105.338967,22.992052,0
              -105.338776,22.993498,0
              -105.337899,22.994221,0
              -105.336337,22.994226,0
              -105.33458,22.993415,0
              -105.333898,22.993779,0
              -105.333804,22.995225,0
              -105.334975,22.995944,0
              -105.336147,22.996033,0
              -105.337226,22.998289,0
              -105.338594,22.999641,0
              -105.339403,23.001592,0
              -105.340426,23.00352,0
              -105.340029,23.005674,0
              -105.341026,23.00837,0
              -105.34239,23.007798,0
              -105.342736,23.007229,0
              -105.344101,23.007794,0
              -105.344965,23.009946,0
              -105.344805,23.010391,0
              -105.343342,23.011275,0
              -105.34315,23.012342,0
              -105.343821,23.012886,0
              -105.347053,23.014504,0
              -105.349741,23.015124,0
              -105.349234,23.016438,0
              -105.349506,23.01718,0
              -105.350532,23.018109,0
              -105.352758,23.019614,0
              -105.35375,23.019438,0
              -105.353805,23.020256,0
              -105.353032,23.02142,0
              -105.352953,23.023075,0
              -105.352479,23.024764,0
              -105.35291,23.025505,0
              -105.353369,23.027156,0
              -105.35332,23.028542,0
              -105.352304,23.029782,0
              -105.351645,23.031006,0
              -105.351616,23.032482,0
              -105.351317,23.033959,0
              -105.350728,23.035083,0
              -105.350796,23.035634,0
              -105.351847,23.037422,0
              -105.352814,23.037748,0
              -105.354213,23.037564,0
              -105.355175,23.038451,0
              -105.355407,23.03917,0
              -105.354789,23.040383,0
              -105.355228,23.040934,0
              -106.039778,22.836048,0
            </coordinates>
          </LinearRing>
        </outerBoundaryIs>
      </Polygon>
    </Placemark>
  </Document>
</kml>

`;
}
})();