您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds a Mapraid Edo Mex area overlay.
// ==UserScript== // @name WME Mapraid Edo Mex Overlay // @namespace https://gf.qytechs.cn/users/45389 // @version 0.8 // @description Adds a Mapraid Edo Mex area overlay. // @author MapOMatic (edits by Carlos Laso) // @include https://beta.waze.com/*editor/* // @include https://www.waze.com/*editor/* // @exclude https://www.waze.com/*user/editor/* // @require https://gf.qytechs.cn/scripts/24851-wazewrap/code/WazeWrap.js // @license GNU GPLv3 // @grant none // ==/UserScript== (function() { 'use strict'; // Enter the state abbreviation: var _stateAbbr = "EM"; // Enter the MapRaid area names and the desired fill colors, in order they appear in the original map legend: var _areas = { 'Equipo 1':{fillColor:'#7cb342'}, 'Equipo 4':{fillColor:'#f57c00'}, 'Equipo 2':{fillColor:'#ffea00'}, '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 Norte EdoMex: ' + 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(/WV-(\d+)/); if (match.length > 1) { var group = parseInt(match[1]); var f = _layer.features[group-1]; var hide = f.attributes.fillOpacity !== 0; f.attributes.fillOpacity = hide ? 0 : defaultFillOpacity; var idx = _settings.hiddenAreas.indexOf(group); if (hide) { if (idx === -1) _settings.hiddenAreas.push(group); } else { if (idx > -1) { _settings.hiddenAreas.splice(idx,1); } } saveSettingsToStorage(); _layer.redraw(); } } } function init() { InstallKML(); loadSettingsFromStorage(); var layerid = 'wme_' + _stateAbbr + '_mapraid'; var _features = GetFeaturesFromKMLString(_kml); var i = 0; for(var areaName in _areas) { _features[i].attributes.name = areaName; _features[i].attributes.fillColor = _areas[areaName].fillColor; _features[i].attributes.fillOpacity = _settings.hiddenAreas.indexOf(i+1) > -1 ? 0 : defaultFillOpacity; i++; } var layerStyle = new OpenLayers.StyleMap({ strokeDashstyle: 'solid', strokeColor: '#ff0000', strokeOpacity: 0.4, strokeWidth: 2, fillOpacity: '${fillOpacity}', fillColor: '${fillColor}' }); _layer = new OL.Layer.Vector(_stateAbbr + " MapRaid", { rendererOptions: { zIndexing: true }, uniqueName: layerid, shortcutKey: "S+" + 0, layerGroup: _stateAbbr + '_mapraid', zIndex: -9999, displayInLayerSwitcher: true, visibility: _settings.layerVisible, styleMap: layerStyle }); I18n.translations[I18n.locale].layers.name[layerid] = _stateAbbr + " MapRaid"; _layer.addFeatures(_features); W.map.addLayer(_layer); W.map.events.register("moveend", null, updateDistrictNameDisplay); window.addEventListener('beforeunload', function saveOnClose() { saveSettingsToStorage(); }, false); updateDistrictNameDisplay(); // Add the layer checkbox to the Layers menu. WazeWrap.Interface.AddLayerCheckbox("display", "MapRaid Edo Mex", _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>Groups</name> <Style id="poly-0288D1-1000-145-normal"> <LineStyle> <color>ff9b5701</color> <width>1</width> </LineStyle> <PolyStyle> <color>4c9b5701</color> <fill>1</fill> <outline>1</outline> </PolyStyle> <BalloonStyle> <text><![CDATA[<h3>$[name]</h3>]]></text> </BalloonStyle> </Style> <Style id="poly-01579B-1-76-nodesc-highlight"> <LineStyle> <color>ff9b5701</color> <width>2</width> </LineStyle> <PolyStyle> <color>4c9b5701</color> <fill>1</fill> <outline>1</outline> </PolyStyle> <BalloonStyle> <text><![CDATA[<h3>$[name]</h3>]]></text> </BalloonStyle> </Style> <StyleMap id="poly-01579B-1-76-nodesc"> <Pair> <key>normal</key> <styleUrl>#poly-01579B-1-76-nodesc-normal</styleUrl> </Pair> <Pair> <key>highlight</key> <styleUrl>#poly-01579B-1-76-nodesc-highlight</styleUrl> </Pair> </StyleMap> <Style id="poly-7CB342-1-76-nodesc-normal"> <LineStyle> <color>ff42b37c</color> <width>1</width> </LineStyle> <PolyStyle> <color>4c42b37c</color> <fill>1</fill> <outline>1</outline> </PolyStyle> <BalloonStyle> <text><![CDATA[<h3>$[name]</h3>]]></text> </BalloonStyle> </Style> <Style id="poly-0288D1-1000-145-highlight"> <LineStyle> <color>ff42b37c</color> <width>2</width> </LineStyle> <PolyStyle> <color>4c42b37c</color> <fill>1</fill> <outline>1</outline> </PolyStyle> <BalloonStyle> <text><![CDATA[<h3>$[name]</h3>]]></text> </BalloonStyle> </Style> <StyleMap id="poly-0288D1-1000-145"> <Pair> <key>normal</key> <styleUrl>#poly-0288D1-1000-145-normal</styleUrl> </Pair> <Pair> <key>highlight</key> <styleUrl>#poly-0288D1-1000-145-highlight</styleUrl> </Pair> </StyleMap> <Style id="poly-0F9D58-1000-156-normal"> <LineStyle> <color>ff5b18c2</color> <width>1</width> </LineStyle> <PolyStyle> <color>4c5b18c2</color> <fill>1</fill> <outline>1</outline> </PolyStyle> <BalloonStyle> <text><![CDATA[<h3>$[name]</h3>]]></text> </BalloonStyle> </Style> <Style id="poly-0F9D58-1000-156-highlight"> <LineStyle> <color>ff5b18c2</color> <width>2</width> </LineStyle> <PolyStyle> <color>4c5b18c2</color> <fill>1</fill> <outline>1</outline> </PolyStyle> <BalloonStyle> <text><![CDATA[<h3>$[name]</h3>]]></text> </BalloonStyle> </Style> <StyleMap id="poly-0F9D58-1000-156"> <Pair> <key>normal</key> <styleUrl>#poly-0F9D58-1000-156-normal</styleUrl> </Pair> <Pair> <key>highlight</key> <styleUrl>#poly-0F9D58-1000-156-highlight</styleUrl> </Pair> </StyleMap> <Style id="poly-A52714-1000-153-nodesc-normal"> <LineStyle> <color>ff007cf5</color> <width>1</width> </LineStyle> <PolyStyle> <color>4c007cf5</color> <fill>1</fill> <outline>1</outline> </PolyStyle> <BalloonStyle> <text><![CDATA[<h3>$[name]</h3>]]></text> </BalloonStyle> </Style> <Style id="poly-A52714-1000-153-nodesc-highlight"> <LineStyle> <color>ff007cf5</color> <width>2</width> </LineStyle> <PolyStyle> <color>4c007cf5</color> <fill>1</fill> <outline>1</outline> </PolyStyle> <BalloonStyle> <text><![CDATA[<h3>$[name]</h3>]]></text> </BalloonStyle> </Style> <StyleMap id="poly-A52714-1000-153-nodesc"> <Pair> <key>normal</key> <styleUrl>#poly-A52714-1000-153-nodesc-normal</styleUrl> </Pair> <Pair> <key>highlight</key> <styleUrl>#poly-A52714-1000-153-nodesc-highlight</styleUrl> </Pair> </StyleMap> <Style id="poly-FFD600-1000-150-nodesc-normal"> <LineStyle> <color>ff00eaff</color> <width>1</width> </LineStyle> <PolyStyle> <color>4c00eaff</color> <fill>1</fill> <outline>1</outline> </PolyStyle> <BalloonStyle> <text><![CDATA[<h3>$[name]</h3>]]></text> </BalloonStyle> </Style> <Style id="poly-FFD600-1000-150-nodesc-highlight"> <LineStyle> <color>ff00eaff</color> <width>2</width> </LineStyle> <PolyStyle> <color>4c00eaff</color> <fill>1</fill> <outline>1</outline> </PolyStyle> <BalloonStyle> <text><![CDATA[<h3>$[name]</h3>]]></text> </BalloonStyle> </Style> <StyleMap id="poly-FFD600-1000-150-nodesc"> <Pair> <key>normal</key> <styleUrl>#poly-FFD600-1000-150-nodesc-normal</styleUrl> </Pair> <Pair> <key>highlight</key> <styleUrl>#poly-FFD600-1000-150-nodesc-highlight</styleUrl> </Pair> </StyleMap> <Placemark> <name>Equipo 1</name> <styleUrl>#poly-0288D1-1000-145</styleUrl> <Polygon> <outerBoundaryIs> <LinearRing> <tessellate>1</tessellate> <coordinates> -99.980093,20.063116,0 -99.980072,20.063474,0 -99.980001,20.063796,0 -99.97994,20.064082,0 -99.979651,20.066024,0 -99.97958,20.066366,0 -99.979533,20.066666,0 -99.979515,20.067218,0 -99.979374,20.06773,0 -99.979205,20.068344,0 -99.979205,20.068491,0 -99.979272,20.068581,0 -99.979244,20.068674,0 -99.979226,20.068731,0 -99.979036,20.069352,0 -99.97909,20.069613,0 -99.978948,20.070073,0 -99.978976,20.070409,0 -99.978976,20.070484,0 -99.978864,20.071661,0 -99.978721,20.072488,0 -99.978609,20.073277,0 -99.978468,20.074045,0 -99.979967,20.074334,0 -99.980818,20.074458,0 -99.981309,20.07453,0 -99.982602,20.074718,0 -99.983165,20.074801,0 -99.983579,20.074858,0 -99.984065,20.074925,0 -99.985021,20.075039,0 -99.985789,20.075161,0 -99.986555,20.075283,0 -99.98695,20.075346,0 -99.987451,20.075426,0 -99.987856,20.07549,0 -99.987922,20.075501,0 -99.988382,20.075574,0 -99.989308,20.075722,0 -99.990261,20.075873,0 -99.992295,20.076197,0 -99.992852,20.076286,0 -99.993328,20.076362,0 -99.993959,20.076462,0 -99.99484,20.076603,0 -99.994883,20.07661,0 -99.995184,20.076657,0 -99.995561,20.076717,0 -99.995697,20.076739,0 -99.995815,20.076758,0 -99.996143,20.07681,0 -99.997176,20.076975,0 -99.997687,20.077056,0 -99.99818,20.077135,0 -99.999272,20.077308,0 -99.999787,20.07739,0 -99.999938,20.077414,0 -100.000053,20.077433,0 -100.000352,20.07748,0 -100.00049,20.077231,0 -100.000518,20.077179,0 -100.000638,20.076962,0 -100.000811,20.076648,0 -100.000984,20.076334,0 -100.001649,20.075129,0 -100.001875,20.074719,0 -100.001934,20.074612,0 -100.002431,20.073711,0 -100.002668,20.07328,0 -100.002794,20.073052,0 -100.002878,20.0729,0 -100.002912,20.072837,0 -100.002991,20.072694,0 -100.003042,20.072602,0 -100.003397,20.071958,0 -100.00373,20.070727,0 -100.003963,20.069865,0 -100.004081,20.069428,0 -100.004117,20.069295,0 -100.004254,20.068863,0 -100.004396,20.068412,0 -100.004537,20.067967,0 -100.005038,20.06638,0 -100.005058,20.066319,0 -100.005126,20.066103,0 -100.005358,20.065367,0 -100.00542,20.065171,0 -100.005464,20.065033,0 -100.005597,20.064612,0 -100.005669,20.064383,0 -100.00564,20.064201,0 -100.005933,20.064101,0 -100.006815,20.063883,0 -100.007018,20.063639,0 -100.007287,20.063554,0 -100.007895,20.063691,0 -100.008682,20.062879,0 -100.008708,20.062752,0 -100.009643,20.062476,0 -100.010232,20.061993,0 -100.010332,20.061918,0 -100.01054,20.061788,0 -100.010856,20.061408,0 -100.011153,20.06109,0 -100.012061,20.060401,0 -100.013206,20.060135,0 -100.013777,20.059566,0 -100.013965,20.059564,0 -100.014069,20.05934,0 -100.014359,20.059322,0 -100.015021,20.059423,0 -100.017083,20.059552,0 -100.018331,20.05964,0 -100.019832,20.05977,0 -100.020123,20.059773,0 -100.020311,20.059741,0 -100.021656,20.059284,0 -100.023927,20.058271,0 -100.025347,20.057777,0 -100.026494,20.057189,0 -100.027616,20.056577,0 -100.028708,20.055717,0 -100.029754,20.054966,0 -100.030932,20.053847,0 -100.031601,20.053148,0 -100.032179,20.05234,0 -100.032802,20.051163,0 -100.033789,20.049625,0 -100.033846,20.049505,0 -100.034299,20.048549,0 -100.034698,20.04789,0 -100.035346,20.047255,0 -100.036255,20.046878,0 -100.036667,20.046205,0 -100.037356,20.045512,0 -100.038698,20.043471,0 -100.039683,20.042258,0 -100.041132,20.040375,0 -100.041529,20.039179,0 -100.042078,20.038544,0 -100.042975,20.037437,0 -100.043798,20.036566,0 -100.044197,20.036307,0 -100.045069,20.036025,0 -100.04634,20.036096,0 -100.046518,20.0362,0 -100.046891,20.036545,0 -100.047695,20.03694,0 -100.048694,20.037205,0 -100.050304,20.037804,0 -100.051811,20.038106,0 -100.052601,20.03812,0 -100.052915,20.038156,0 -100.053473,20.038265,0 -100.053477,20.038351,0 -100.053538,20.038434,0 -100.053944,20.038643,0 -100.054694,20.038804,0 -100.05498,20.038898,0 -100.055297,20.039023,0 -100.055943,20.039162,0 -100.056387,20.039339,0 -100.056851,20.039512,0 -100.057432,20.039822,0 -100.057502,20.039862,0 -100.057787,20.03993,0 -100.058074,20.039894,0 -100.05895,20.039429,0 -100.059057,20.039369,0 -100.059781,20.039289,0 -100.060684,20.039119,0 -100.061293,20.038899,0 -100.061726,20.038791,0 -100.062506,20.037394,0 -100.062767,20.037083,0 -100.062886,20.036882,0 -100.063495,20.036754,0 -100.063724,20.036661,0 -100.064494,20.036538,0 -100.06531,20.036367,0 -100.066197,20.036235,0 -100.065643,20.034594,0 -100.065423,20.03409,0 -100.065329,20.033689,0 -100.065122,20.032714,0 -100.065626,20.031359,0 -100.065863,20.031357,0 -100.072177,20.031208,0 -100.072215,20.03092,0 -100.072296,20.030308,0 -100.072422,20.029238,0 -100.074208,20.029316,0 -100.075467,20.029396,0 -100.076884,20.02948,0 -100.076977,20.028692,0 -100.077009,20.028506,0 -100.076886,20.027971,0 -100.07607,20.026498,0 -100.075544,20.025525,0 -100.075344,20.025045,0 -100.075028,20.024698,0 -100.074707,20.024106,0 -100.074503,20.023634,0 -100.074338,20.022734,0 -100.074197,20.021522,0 -100.074083,20.020587,0 -100.073969,20.019652,0 -100.073717,20.019209,0 -100.073254,20.018418,0 -100.072683,20.018909,0 -100.072478,20.019007,0 -100.072395,20.018893,0 -100.071762,20.018381,0 -100.071482,20.018537,0 -100.070917,20.017976,0 -100.070916,20.017897,0 -100.070927,20.017832,0 -100.070985,20.017719,0 -100.070908,20.017517,0 -100.070852,20.017404,0 -100.070818,20.01733,0 -100.070274,20.016909,0 -100.070866,20.016205,0 -100.07031,20.015712,0 -100.070108,20.015655,0 -100.069543,20.014823,0 -100.068871,20.014404,0 -100.068615,20.014671,0 -100.067588,20.013979,0 -100.067278,20.01424,0 -100.066938,20.014517,0 -100.066216,20.014269,0 -100.065616,20.013891,0 -100.065506,20.013808,0 -100.06526,20.013657,0 -100.06538,20.013446,0 -100.065559,20.013078,0 -100.065804,20.012804,0 -100.066049,20.012284,0 -100.065744,20.011759,0 -100.064674,20.009903,0 -100.06412,20.009259,0 -100.062584,20.00833,0 -100.062519,20.00829,0 -100.059907,20.006712,0 -100.057621,20.005828,0 -100.057447,20.004704,0 -100.057139,20.004501,0 -100.055673,20.00438,0 -100.053695,20.004217,0 -100.052941,20.003849,0 -100.051431,20.003113,0 -100.050468,20.002757,0 -100.049435,20.002375,0 -100.047543,20.001822,0 -100.045723,20.001094,0 -100.043943,20.000165,0 -100.041679,19.999093,0 -100.041107,19.998638,0 -100.040365,19.998329,0 -100.039714,19.998066,0 -100.039591,19.998016,0 -100.039587,19.99805,0 -100.037868,19.997575,0 -100.036292,19.996526,0 -100.035914,19.996384,0 -100.035564,19.996216,0 -100.035052,19.996213,0 -100.034849,19.996118,0 -100.034442,19.995925,0 -100.033557,19.995491,0 -100.033615,19.99533,0 -100.033213,19.995204,0 -100.033145,19.995228,0 -100.032823,19.99501,0 -100.032371,19.994965,0 -100.031995,19.995047,0 -100.032,19.994988,0 -100.031244,19.994886,0 -100.031254,19.995024,0 -100.031239,19.995081,0 -100.030693,19.995389,0 -100.030741,19.995475,0 -100.030349,19.995625,0 -100.030026,19.99587,0 -100.029512,19.996131,0 -100.029523,19.996163,0 -100.028437,19.996915,0 -100.028302,19.997079,0 -100.027688,19.997125,0 -100.027498,19.997465,0 -100.027037,19.997268,0 -100.026943,19.99729,0 -100.026862,19.997309,0 -100.026616,19.99722,0 -100.026471,19.997033,0 -100.026392,19.99699,0 -100.026394,19.996962,0 -100.025974,19.996758,0 -100.025951,19.996864,0 -100.02549,19.996713,0 -100.025344,19.996559,0 -100.025304,19.996567,0 -100.025228,19.996477,0 -100.024618,19.996458,0 -100.02456,19.996371,0 -100.024284,19.996231,0 -100.024132,19.9961,0 -100.022617,19.995735,0 -100.022241,19.995473,0 -100.021839,19.995174,0 -100.02174,19.995138,0 -100.021659,19.995013,0 -100.021286,19.994791,0 -100.021094,19.994739,0 -100.020566,19.994597,0 -100.020566,19.994516,0 -100.019682,19.994141,0 -100.018265,19.993685,0 -100.018135,19.993527,0 -100.014615,19.992038,0 -100.010835,19.990474,0 -100.012579,19.988845,0 -100.009887,19.98761,0 -100.009443,19.987406,0 -100.008295,19.986879,0 -100.006252,19.985942,0 -100.002462,19.984203,0 -100.000829,19.983453,0 -99.999292,19.982748,0 -99.997472,19.981912,0 -99.996581,19.981504,0 -99.995691,19.981095,0 -99.9948,19.980686,0 -99.993909,19.980277,0 -99.993018,19.979868,0 -99.992127,19.979459,0 -99.991237,19.979051,0 -99.990346,19.978642,0 -99.989455,19.978233,0 -99.988564,19.977824,0 -99.987674,19.977415,0 -99.986783,19.977006,0 -99.985892,19.976597,0 -99.985001,19.976188,0 -99.984111,19.97578,0 -99.98322,19.975371,0 -99.982329,19.974962,0 -99.981439,19.974553,0 -99.980548,19.974144,0 -99.979657,19.973735,0 -99.978766,19.973326,0 -99.977876,19.972917,0 -99.976985,19.972508,0 -99.976094,19.972099,0 -99.975204,19.97169,0 -99.974313,19.971281,0 -99.974792,19.970367,0 -99.97527,19.969452,0 -99.975748,19.968537,0 -99.976227,19.967623,0 -99.977429,19.967255,0 -99.97734,19.96706,0 -99.977233,19.966734,0 -99.977016,19.965849,0 -99.976916,19.965603,0 -99.97681,19.96515,0 -99.976655,19.964742,0 -99.976515,19.96433,0 -99.976153,19.963222,0 -99.97591,19.962457,0 -99.975745,19.962033,0 -99.97562,19.961646,0 -99.975189,19.960193,0 -99.974981,19.959333,0 -99.974896,19.959117,0 -99.974641,19.958468,0 -99.974302,19.957602,0 -99.973962,19.956737,0 -99.973623,19.955872,0 -99.973283,19.955007,0 -99.972944,19.954141,0 -99.972487,19.953258,0 -99.971817,19.952577,0 -99.971147,19.951895,0 -99.970478,19.951213,0 -99.96997,19.950349,0 -99.969462,19.949486,0 -99.968955,19.948622,0 -99.968447,19.947758,0 -99.96794,19.946895,0 -99.967432,19.946031,0 -99.967599,19.945052,0 -99.967766,19.944073,0 -99.967653,19.943094,0 -99.967539,19.942114,0 -99.967425,19.941135,0 -99.967312,19.940156,0 -99.967353,19.939117,0 -99.967394,19.938077,0 -99.967436,19.937037,0 -99.967555,19.936004,0 -99.967674,19.93497,0 -99.968165,19.93366,0 -99.96808,19.932576,0 -99.967996,19.931492,0 -99.967912,19.930408,0 -99.966475,19.930093,0 -99.965058,19.930863,0 -99.964088,19.930859,0 -99.963119,19.930855,0 -99.962149,19.93085,0 -99.961026,19.931699,0 -99.96015,19.931326,0 -99.959275,19.930953,0 -99.9584,19.93058,0 -99.957525,19.930207,0 -99.956649,19.929833,0 -99.955774,19.92946,0 -99.954899,19.929087,0 -99.953827,19.929098,0 -99.952754,19.929109,0 -99.951682,19.92912,0 -99.950609,19.929131,0 -99.949957,19.929881,0 -99.949306,19.930632,0 -99.948654,19.931383,0 -99.948002,19.932134,0 -99.94735,19.932884,0 -99.946698,19.933635,0 -99.946047,19.934386,0 -99.945395,19.935136,0 -99.944743,19.935887,0 -99.943805,19.936154,0 -99.942867,19.93642,0 -99.941929,19.936687,0 -99.940991,19.936953,0 -99.940711,19.937199,0 -99.939941,19.937646,0 -99.939048,19.93801,0 -99.938144,19.938304,0 -99.936939,19.938594,0 -99.93604,19.938823,0 -99.935464,19.93893,0 -99.93465,19.939068,0 -99.933708,19.939189,0 -99.933304,19.939263,0 -99.93285,19.939267,0 -99.932245,19.939439,0 -99.931657,19.938717,0 -99.931068,19.937995,0 -99.93048,19.937274,0 -99.929891,19.936552,0 -99.929303,19.93583,0 -99.928715,19.935109,0 -99.928126,19.934387,0 -99.927538,19.933666,0 -99.92695,19.932944,0 -99.926361,19.932222,0 -99.925691,19.931523,0 -99.925021,19.930825,0 -99.924351,19.930126,0 -99.923681,19.929427,0 -99.923011,19.928728,0 -99.922341,19.928029,0 -99.921539,19.927518,0 -99.920737,19.927008,0 -99.919935,19.926497,0 -99.919133,19.925986,0 -99.918331,19.925476,0 -99.917528,19.924965,0 -99.916726,19.924455,0 -99.915924,19.923944,0 -99.915324,19.923532,0 -99.914716,19.923109,0 -99.913426,19.922203,0 -99.913359,19.922164,0 -99.913146,19.921918,0 -99.912779,19.921527,0 -99.912501,19.92128,0 -99.911213,19.920531,0 -99.910892,19.920347,0 -99.910272,19.919748,0 -99.909566,19.918879,0 -99.908831,19.918096,0 -99.908392,19.917451,0 -99.908002,19.916908,0 -99.907525,19.916521,0 -99.907095,19.916459,0 -99.906981,19.916411,0 -99.907023,19.916324,0 -99.9068,19.915985,0 -99.906541,19.915759,0 -99.906088,19.915465,0 -99.90555,19.915155,0 -99.905313,19.914967,0 -99.904193,19.914601,0 -99.903597,19.914185,0 -99.903276,19.913778,0 -99.902693,19.913151,0 -99.901623,19.912135,0 -99.901221,19.911969,0 -99.900243,19.911579,0 -99.899017,19.911042,0 -99.89779,19.910504,0 -99.897647,19.910364,0 -99.897433,19.910035,0 -99.897337,19.909934,0 -99.896528,19.909423,0 -99.89572,19.908912,0 -99.894909,19.908382,0 -99.894097,19.907852,0 -99.893285,19.907322,0 -99.892474,19.906792,0 -99.891662,19.906262,0 -99.890851,19.905732,0 -99.892038,19.904728,0 -99.892886,19.904228,0 -99.893734,19.903727,0 -99.894471,19.902989,0 -99.895208,19.902251,0 -99.895944,19.901512,0 -99.896681,19.900774,0 -99.897417,19.900036,0 -99.898154,19.899297,0 -99.898636,19.898803,0 -99.898832,19.898763,0 -99.899084,19.898832,0 -99.899356,19.898945,0 -99.899866,19.899106,0 -99.900479,19.899423,0 -99.900911,19.899629,0 -99.90131,19.899767,0 -99.901835,19.900223,0 -99.902132,19.900499,0 -99.902575,19.900818,0 -99.90306,19.901,0 -99.903547,19.901251,0 -99.903775,19.901412,0 -99.904208,19.901731,0 -99.904456,19.901892,0 -99.904792,19.902189,0 -99.904824,19.902269,0 -99.904855,19.902349,0 -99.904919,19.902511,0 -99.90507,19.902626,0 -99.90522,19.902693,0 -99.905424,19.902762,0 -99.905818,19.902945,0 -99.906192,19.903173,0 -99.906358,19.90324,0 -99.906576,19.903239,0 -99.906823,19.90301,0 -99.9069,19.902987,0 -99.906978,19.903009,0 -99.907037,19.903101,0 -99.907061,19.903194,0 -99.907178,19.903284,0 -99.907255,19.903283,0 -99.907401,19.903192,0 -99.907469,19.903147,0 -99.907517,19.903124,0 -99.907585,19.903123,0 -99.907634,19.903191,0 -99.907663,19.903283,0 -99.907741,19.903306,0 -99.90795,19.903305,0 -99.908231,19.903305,0 -99.908557,19.903557,0 -99.908703,19.903716,0 -99.908888,19.903808,0 -99.909029,19.903853,0 -99.909106,19.9039,0 -99.909223,19.903989,0 -99.909388,19.903991,0 -99.90952,19.904128,0 -99.909782,19.904264,0 -99.910015,19.904195,0 -99.910136,19.904217,0 -99.910326,19.904286,0 -99.910646,19.904307,0 -99.910831,19.904444,0 -99.911045,19.904674,0 -99.911351,19.90481,0 -99.911788,19.90497,0 -99.911969,19.9052,0 -99.912226,19.905291,0 -99.912353,19.905381,0 -99.912412,19.905633,0 -99.912708,19.905747,0 -99.912898,19.905886,0 -99.913199,19.906,0 -99.91351,19.905976,0 -99.913655,19.90593,0 -99.914014,19.905813,0 -99.914557,19.905857,0 -99.914878,19.905971,0 -99.91533,19.906061,0 -99.916058,19.906037,0 -99.91648,19.90599,0 -99.916606,19.905896,0 -99.916775,19.90569,0 -99.916963,19.905438,0 -99.91721,19.905184,0 -99.9175,19.904862,0 -99.917916,19.904333,0 -99.919824,19.901841,0 -99.921398,19.899779,0 -99.923185,19.895973,0 -99.92523,19.895289,0 -99.924762,19.894232,0 -99.92595,19.892721,0 -99.925865,19.892078,0 -99.926203,19.890646,0 -99.92563,19.890507,0 -99.924652,19.890269,0 -99.923674,19.890031,0 -99.922696,19.889793,0 -99.921719,19.889555,0 -99.920741,19.889317,0 -99.919763,19.889079,0 -99.918785,19.888841,0 -99.917807,19.888603,0 -99.916829,19.888365,0 -99.915851,19.888127,0 -99.914873,19.887889,0 -99.913895,19.887651,0 -99.912938,19.887418,0 -99.91198,19.887185,0 -99.911023,19.886952,0 -99.910065,19.886719,0 -99.909072,19.886477,0 -99.908079,19.886235,0 -99.907086,19.885993,0 -99.906094,19.885752,0 -99.905101,19.88551,0 -99.904108,19.885268,0 -99.903115,19.885027,0 -99.902122,19.884785,0 -99.901129,19.884543,0 -99.900136,19.884301,0 -99.899144,19.88406,0 -99.898151,19.883818,0 -99.897158,19.883576,0 -99.896655,19.883621,0 -99.894097,19.884844,0 -99.893801,19.884708,0 -99.893504,19.884662,0 -99.893107,19.884847,0 -99.892938,19.884986,0 -99.892807,19.885101,0 -99.892478,19.885354,0 -99.891931,19.8857,0 -99.891664,19.885814,0 -99.891446,19.885863,0 -99.891223,19.885909,0 -99.891111,19.886,0 -99.891005,19.886138,0 -99.890845,19.886254,0 -99.890371,19.8866,0 -99.890153,19.886784,0 -99.889901,19.886921,0 -99.889761,19.886944,0 -99.889343,19.887079,0 -99.888384,19.886672,0 -99.887426,19.886266,0 -99.886467,19.88586,0 -99.885935,19.886887,0 -99.885403,19.887914,0 -99.884871,19.888941,0 -99.886392,19.889543,0 -99.886878,19.888977,0 -99.887251,19.889139,0 -99.887721,19.888807,0 -99.888764,19.889901,0 -99.889644,19.888587,0 -99.890223,19.888872,0 -99.891006,19.889425,0 -99.891789,19.889977,0 -99.892324,19.888999,0 -99.893187,19.889623,0 -99.893302,19.889773,0 -99.892855,19.890677,0 -99.892408,19.89158,0 -99.891961,19.892484,0 -99.891514,19.893388,0 -99.891067,19.894291,0 -99.89062,19.895195,0 -99.889721,19.894767,0 -99.889191,19.895531,0 -99.888661,19.896296,0 -99.88813,19.897061,0 -99.8876,19.897826,0 -99.886959,19.897599,0 -99.886457,19.898396,0 -99.885954,19.899193,0 -99.885452,19.89999,0 -99.884949,19.900787,0 -99.884447,19.901584,0 -99.88341,19.901026,0 -99.881949,19.900124,0 -99.881131,19.899584,0 -99.880314,19.899044,0 -99.87952,19.898565,0 -99.879407,19.898397,0 -99.878533,19.897871,0 -99.877659,19.897346,0 -99.876785,19.89682,0 -99.87591,19.896295,0 -99.875036,19.895769,0 -99.874162,19.895243,0 -99.873288,19.894718,0 -99.872414,19.894192,0 -99.87154,19.893667,0 -99.870265,19.892839,0 -99.869489,19.892306,0 -99.868568,19.891595,0 -99.867647,19.890884,0 -99.866726,19.890173,0 -99.865805,19.889463,0 -99.865574,19.889246,0 -99.864655,19.888388,0 -99.863874,19.887669,0 -99.863092,19.886951,0 -99.862311,19.886232,0 -99.861324,19.885325,0 -99.861137,19.885177,0 -99.860693,19.884793,0 -99.859823,19.884048,0 -99.858953,19.883303,0 -99.858595,19.883025,0 -99.857847,19.882337,0 -99.857099,19.88165,0 -99.856351,19.880962,0 -99.855603,19.880275,0 -99.854855,19.879587,0 -99.854107,19.8789,0 -99.853332,19.878259,0 -99.852269,19.877482,0 -99.851817,19.877093,0 -99.851371,19.876731,0 -99.850401,19.875988,0 -99.849432,19.875245,0 -99.847764,19.874577,0 -99.847858,19.873674,0 -99.847951,19.87277,0 -99.848045,19.871866,0 -99.848138,19.870962,0 -99.848232,19.870058,0 -99.848325,19.869155,0 -99.848419,19.868251,0 -99.848512,19.867347,0 -99.848606,19.866443,0 -99.848699,19.865539,0 -99.848792,19.864636,0 -99.848886,19.863732,0 -99.848951,19.863286,0 -99.849084,19.862381,0 -99.849216,19.861476,0 -99.84937,19.860222,0 -99.849492,19.859238,0 -99.849615,19.858254,0 -99.849736,19.857251,0 -99.849857,19.856248,0 -99.848763,19.85608,0 -99.847261,19.856289,0 -99.846784,19.856854,0 -99.84666,19.856834,0 -99.84658,19.856888,0 -99.846478,19.856969,0 -99.846504,19.857065,0 -99.846397,19.857169,0 -99.846355,19.857501,0 -99.845411,19.85796,0 -99.845038,19.85871,0 -99.844326,19.858951,0 -99.844188,19.859258,0 -99.844082,19.85964,0 -99.844282,19.859854,0 -99.844257,19.86006,0 -99.844266,19.860241,0 -99.844108,19.860471,0 -99.844082,19.860721,0 -99.843971,19.860804,0 -99.843863,19.860859,0 -99.843738,19.861187,0 -99.843716,19.861378,0 -99.843543,19.861594,0 -99.843376,19.862052,0 -99.842915,19.862446,0 -99.842818,19.862563,0 -99.842834,19.862685,0 -99.842004,19.863795,0 -99.841449,19.864296,0 -99.84059,19.865353,0 -99.840006,19.866496,0 -99.839423,19.867638,0 -99.839279,19.867856,0 -99.838908,19.867298,0 -99.838331,19.866517,0 -99.837755,19.865736,0 -99.83714,19.864977,0 -99.836901,19.86463,0 -99.835881,19.863197,0 -99.835463,19.862713,0 -99.834196,19.861972,0 -99.833134,19.861345,0 -99.832073,19.860717,0 -99.831226,19.859851,0 -99.83024,19.85997,0 -99.828706,19.859462,0 -99.827715,19.859338,0 -99.826702,19.858868,0 -99.825442,19.858011,0 -99.825117,19.857699,0 -99.824973,19.85756,0 -99.824961,19.857552,0 -99.824728,19.857368,0 -99.824508,19.857164,0 -99.824454,19.857067,0 -99.824218,19.856847,0 -99.823744,19.856539,0 -99.823448,19.856357,0 -99.822816,19.855978,0 -99.822551,19.855717,0 -99.822204,19.855418,0 -99.821717,19.855025,0 -99.821144,19.854617,0 -99.82058,19.854468,0 -99.819911,19.854463,0 -99.819202,19.854646,0 -99.818665,19.854441,0 -99.817761,19.854242,0 -99.816412,19.854194,0 -99.815732,19.854185,0 -99.815698,19.853833,0 -99.815605,19.853516,0 -99.815519,19.853299,0 -99.815515,19.853203,0 -99.815474,19.852974,0 -99.815458,19.852789,0 -99.815274,19.852677,0 -99.814977,19.852493,0 -99.814685,19.852289,0 -99.814534,19.852152,0 -99.814602,19.852013,0 -99.814655,19.851875,0 -99.814688,19.851828,0 -99.814562,19.851668,0 -99.814392,19.851761,0 -99.81417,19.851923,0 -99.813604,19.851099,0 -99.813399,19.851007,0 -99.813152,19.850893,0 -99.812734,19.850689,0 -99.812257,19.850438,0 -99.811854,19.850278,0 -99.811655,19.850163,0 -99.811232,19.849937,0 -99.811028,19.849868,0 -99.810741,19.849754,0 -99.810488,19.849617,0 -99.810391,19.849525,0 -99.810352,19.849412,0 -99.81036,19.849272,0 -99.810361,19.849252,0 -99.810385,19.849114,0 -99.81037,19.849067,0 -99.810287,19.848977,0 -99.810092,19.84884,0 -99.809888,19.848678,0 -99.80964,19.848541,0 -99.809294,19.848245,0 -99.809148,19.848108,0 -99.809038,19.848003,0 -99.808929,19.847903,0 -99.808681,19.847696,0 -99.808457,19.847489,0 -99.808028,19.846827,0 -99.807871,19.84653,0 -99.807754,19.846255,0 -99.807569,19.846003,0 -99.807359,19.845843,0 -99.806999,19.845592,0 -99.806679,19.845431,0 -99.806231,19.845157,0 -99.805994,19.844927,0 -99.805461,19.844703,0 -99.804526,19.844309,0 -99.803591,19.843916,0 -99.802655,19.843522,0 -99.80172,19.843128,0 -99.800405,19.842062,0 -99.799985,19.841566,0 -99.799073,19.840518,0 -99.798175,19.840882,0 -99.797276,19.841245,0 -99.796909,19.841367,0 -99.796123,19.841627,0 -99.795045,19.84209,0 -99.794617,19.842374,0 -99.793772,19.842702,0 -99.792985,19.843407,0 -99.792198,19.844112,0 -99.791817,19.84425,0 -99.791066,19.844881,0 -99.790315,19.845513,0 -99.789477,19.846015,0 -99.789532,19.845308,0 -99.789521,19.84407,0 -99.789318,19.842985,0 -99.789209,19.841987,0 -99.789099,19.84099,0 -99.788873,19.840729,0 -99.788549,19.840453,0 -99.788184,19.839551,0 -99.787819,19.83865,0 -99.787455,19.837749,0 -99.78709,19.836848,0 -99.787038,19.836552,0 -99.787132,19.836374,0 -99.786854,19.835719,0 -99.786146,19.834624,0 -99.785437,19.833528,0 -99.785124,19.833294,0 -99.78472,19.832883,0 -99.783613,19.83259,0 -99.782506,19.832297,0 -99.781399,19.832004,0 -99.78089,19.83185,0 -99.779363,19.831263,0 -99.778446,19.830927,0 -99.777528,19.830592,0 -99.775885,19.829996,0 -99.774875,19.829592,0 -99.773864,19.829189,0 -99.772853,19.828786,0 -99.772242,19.827955,0 -99.771631,19.827124,0 -99.771019,19.826293,0 -99.770408,19.825461,0 -99.769797,19.82463,0 -99.769185,19.823799,0 -99.770324,19.823357,0 -99.771464,19.822915,0 -99.772564,19.822605,0 -99.773425,19.821794,0 -99.774286,19.820983,0 -99.773962,19.820205,0 -99.774221,19.819907,0 -99.774971,19.818986,0 -99.776047,19.817819,0 -99.777245,19.816703,0 -99.77761,19.816428,0 -99.777515,19.816004,0 -99.777515,19.815835,0 -99.777612,19.815572,0 -99.778214,19.814814,0 -99.778815,19.814055,0 -99.779417,19.813296,0 -99.779673,19.812976,0 -99.778516,19.812266,0 -99.777915,19.811934,0 -99.778105,19.811653,0 -99.777816,19.811433,0 -99.777081,19.81091,0 -99.776034,19.810176,0 -99.775003,19.809467,0 -99.774537,19.809138,0 -99.773861,19.808667,0 -99.773679,19.808531,0 -99.772317,19.807599,0 -99.771512,19.807066,0 -99.770708,19.806533,0 -99.769903,19.805999,0 -99.769098,19.805466,0 -99.768364,19.804847,0 -99.76763,19.804229,0 -99.766895,19.80361,0 -99.7656,19.802948,0 -99.764771,19.802081,0 -99.763942,19.801213,0 -99.763351,19.801022,0 -99.762494,19.800566,0 -99.761637,19.800109,0 -99.761499,19.800026,0 -99.76134,19.799931,0 -99.760964,19.799672,0 -99.760529,19.799375,0 -99.76016,19.799286,0 -99.759276,19.798843,0 -99.758392,19.798399,0 -99.757268,19.797911,0 -99.756145,19.797424,0 -99.754918,19.79732,0 -99.75369,19.797216,0 -99.752463,19.797112,0 -99.751455,19.797102,0 -99.750448,19.797091,0 -99.74958,19.796251,0 -99.748712,19.79541,0 -99.748433,19.79514,0 -99.747793,19.794409,0 -99.747152,19.793679,0 -99.746512,19.792948,0 -99.745872,19.792218,0 -99.745232,19.791488,0 -99.744747,19.789845,0 -99.744337,19.78877,0 -99.743926,19.787695,0 -99.743536,19.786791,0 -99.743146,19.785886,0 -99.742756,19.784982,0 -99.742366,19.784077,0 -99.742048,19.783833,0 -99.74029,19.783233,0 -99.739529,19.781756,0 -99.739482,19.781688,0 -99.738701,19.780987,0 -99.73792,19.780286,0 -99.737123,19.77966,0 -99.736327,19.779033,0 -99.735531,19.778406,0 -99.734734,19.777779,0 -99.733938,19.777152,0 -99.732738,19.776706,0 -99.731538,19.776261,0 -99.730613,19.775656,0 -99.729687,19.775051,0 -99.728762,19.774445,0 -99.7284,19.774401,0 -99.727441,19.774283,0 -99.726482,19.774165,0 -99.725524,19.774046,0 -99.724565,19.773928,0 -99.723606,19.77381,0 -99.722647,19.773692,0 -99.721688,19.773574,0 -99.720729,19.773456,0 -99.71977,19.773338,0 -99.718811,19.773219,0 -99.717724,19.772581,0 -99.716636,19.771942,0 -99.715754,19.771426,0 -99.714871,19.77091,0 -99.713988,19.770393,0 -99.713106,19.769877,0 -99.712223,19.769361,0 -99.711341,19.768845,0 -99.710458,19.768329,0 -99.711125,19.767505,0 -99.711793,19.766682,0 -99.71246,19.765858,0 -99.713127,19.765035,0 -99.713794,19.764211,0 -99.712988,19.763661,0 -99.712183,19.76311,0 -99.711377,19.762559,0 -99.710572,19.762009,0 -99.709766,19.761458,0 -99.708961,19.760907,0 -99.709859,19.760452,0 -99.710758,19.759998,0 -99.711789,19.759108,0 -99.712821,19.758218,0 -99.71216,19.757349,0 -99.711499,19.75648,0 -99.710837,19.75561,0 -99.710267,19.754843,0 -99.709697,19.754076,0 -99.709127,19.753309,0 -99.708556,19.752541,0 -99.707986,19.751774,0 -99.707416,19.751007,0 -99.706845,19.75024,0 -99.706275,19.749473,0 -99.705705,19.748705,0 -99.705135,19.747938,0 -99.70524,19.746918,0 -99.705345,19.745898,0 -99.70545,19.744878,0 -99.705555,19.743857,0 -99.70566,19.742837,0 -99.705408,19.742667,0 -99.70322,19.747215,0 -99.702326,19.746873,0 -99.701431,19.746532,0 -99.700537,19.74619,0 -99.699643,19.745848,0 -99.698749,19.745506,0 -99.697854,19.745164,0 -99.69696,19.744822,0 -99.696066,19.74448,0 -99.695171,19.744138,0 -99.694277,19.743796,0 -99.693383,19.743454,0 -99.692489,19.743112,0 -99.691594,19.74277,0 -99.6907,19.742428,0 -99.689806,19.742086,0 -99.688912,19.741744,0 -99.689109,19.740826,0 -99.689305,19.739908,0 -99.689502,19.738989,0 -99.689699,19.738071,0 -99.689896,19.737153,0 -99.690093,19.736235,0 -99.689076,19.736144,0 -99.688058,19.736054,0 -99.687041,19.735963,0 -99.686024,19.735872,0 -99.685007,19.735782,0 -99.68399,19.735691,0 -99.682973,19.7356,0 -99.683194,19.734411,0 -99.683219,19.734417,0 -99.683418,19.733315,0 -99.683616,19.732213,0 -99.683814,19.731112,0 -99.684012,19.73001,0 -99.684177,19.729113,0 -99.684342,19.728216,0 -99.684769,19.726583,0 -99.684966,19.725471,0 -99.68503,19.72538,0 -99.685105,19.724868,0 -99.68526,19.723986,0 -99.685371,19.72293,0 -99.685061,19.722921,0 -99.684252,19.722909,0 -99.683565,19.722981,0 -99.682065,19.723201,0 -99.68178,19.722906,0 -99.681196,19.722295,0 -99.680932,19.721933,0 -99.679845,19.721756,0 -99.678759,19.721578,0 -99.677736,19.721273,0 -99.676712,19.720969,0 -99.675767,19.721732,0 -99.675306,19.721819,0 -99.6746,19.721603,0 -99.674081,19.721261,0 -99.673436,19.721114,0 -99.672904,19.721269,0 -99.672554,19.720504,0 -99.672033,19.720541,0 -99.671918,19.720397,0 -99.672353,19.719524,0 -99.672083,19.718901,0 -99.671561,19.718736,0 -99.671511,19.718579,0 -99.671586,19.718435,0 -99.671888,19.717713,0 -99.671791,19.717353,0 -99.672036,19.716667,0 -99.67222,19.71537,0 -99.672023,19.71479,0 -99.671963,19.714797,0 -99.671815,19.714813,0 -99.671679,19.715258,0 -99.671255,19.715364,0 -99.671182,19.715295,0 -99.670935,19.714927,0 -99.670524,19.714739,0 -99.670675,19.714045,0 -99.67086,19.713913,0 -99.671115,19.714131,0 -99.671508,19.713976,0 -99.671483,19.713429,0 -99.671784,19.713428,0 -99.672014,19.713098,0 -99.67231,19.712046,0 -99.672633,19.711694,0 -99.672757,19.710553,0 -99.673243,19.710445,0 -99.673717,19.709971,0 -99.673782,19.709198,0 -99.674597,19.708809,0 -99.674664,19.708465,0 -99.675184,19.708227,0 -99.675252,19.708034,0 -99.675589,19.707474,0 -99.67552,19.707238,0 -99.67561,19.706981,0 -99.675541,19.706702,0 -99.675676,19.70653,0 -99.676198,19.706635,0 -99.676305,19.706458,0 -99.67597,19.706185,0 -99.676105,19.705948,0 -99.677329,19.705772,0 -99.677916,19.705341,0 -99.677937,19.705231,0 -99.677999,19.705174,0 -99.678019,19.704504,0 -99.673893,19.703543,0 -99.672753,19.70332,0 -99.67002,19.70271,0 -99.667041,19.702091,0 -99.664776,19.70153,0 -99.661024,19.700688,0 -99.659366,19.700303,0 -99.659355,19.700335,0 -99.659119,19.700598,0 -99.65867,19.700749,0 -99.658166,19.700748,0 -99.657681,19.700443,0 -99.657198,19.699478,0 -99.65653,19.699067,0 -99.655942,19.698703,0 -99.655447,19.698425,0 -99.654765,19.698017,0 -99.654247,19.697717,0 -99.653399,19.697416,0 -99.652621,19.697158,0 -99.652196,19.697606,0 -99.651488,19.697839,0 -99.650804,19.697965,0 -99.649861,19.698069,0 -99.648989,19.697918,0 -99.648141,19.697553,0 -99.647223,19.697145,0 -99.646564,19.696589,0 -99.645622,19.696074,0 -99.644899,19.696053,0 -99.644131,19.695877,0 -99.643421,19.695632,0 -99.642557,19.695282,0 -99.64165,19.694408,0 -99.640744,19.693534,0 -99.640583,19.692874,0 -99.640564,19.692391,0 -99.640506,19.691926,0 -99.640228,19.691267,0 -99.640053,19.691044,0 -99.639758,19.690739,0 -99.638886,19.690235,0 -99.638563,19.690225,0 -99.638099,19.690307,0 -99.638034,19.690237,0 -99.637692,19.690338,0 -99.637393,19.690243,0 -99.636954,19.690152,0 -99.636813,19.689934,0 -99.636123,19.689786,0 -99.635807,19.690045,0 -99.635546,19.689946,0 -99.635239,19.689717,0 -99.635431,19.688563,0 -99.635541,19.688343,0 -99.635555,19.68808,0 -99.635696,19.687464,0 -99.636014,19.685697,0 -99.636167,19.684824,0 -99.636346,19.683792,0 -99.636525,19.68276,0 -99.636713,19.681689,0 -99.636902,19.680617,0 -99.63709,19.679546,0 -99.637362,19.67799,0 -99.637535,19.676998,0 -99.637664,19.676238,0 -99.637701,19.675935,0 -99.637772,19.675607,0 -99.63779,19.67545,0 -99.637909,19.674923,0 -99.637967,19.674507,0 -99.637998,19.674334,0 -99.638035,19.674042,0 -99.639795,19.674141,0 -99.641066,19.674213,0 -99.642338,19.674284,0 -99.642535,19.674281,0 -99.643025,19.674323,0 -99.644005,19.674378,0 -99.644986,19.674433,0 -99.645967,19.674488,0 -99.646947,19.674543,0 -99.647928,19.674598,0 -99.648909,19.674653,0 -99.64989,19.674708,0 -99.64965,19.673306,0 -99.64964,19.673256,0 -99.649532,19.67261,0 -99.649351,19.671546,0 -99.649169,19.670483,0 -99.648936,19.669116,0 -99.648795,19.668341,0 -99.648604,19.667176,0 -99.648395,19.665946,0 -99.648227,19.664958,0 -99.64725,19.664765,0 -99.646273,19.664572,0 -99.645532,19.664426,0 -99.643921,19.664107,0 -99.642993,19.663923,0 -99.642705,19.663605,0 -99.64233,19.662626,0 -99.641955,19.661647,0 -99.642141,19.661068,0 -99.642383,19.659997,0 -99.642626,19.658926,0 -99.642972,19.658792,0 -99.643073,19.658603,0 -99.643012,19.6585,0 -99.642842,19.658279,0 -99.642729,19.658059,0 -99.642695,19.657941,0 -99.641935,19.657296,0 -99.64117,19.656692,0 -99.640567,19.656143,0 -99.639891,19.655616,0 -99.639709,19.655544,0 -99.639444,19.655676,0 -99.639285,19.655234,0 -99.639148,19.655127,0 -99.638791,19.654915,0 -99.63853,19.654757,0 -99.638411,19.654688,0 -99.638803,19.65417,0 -99.638743,19.653989,0 -99.638698,19.653818,0 -99.638289,19.653807,0 -99.63815,19.653826,0 -99.637744,19.654123,0 -99.637419,19.653996,0 -99.637492,19.653136,0 -99.637437,19.653015,0 -99.635908,19.652807,0 -99.636335,19.652125,0 -99.635948,19.652008,0 -99.635847,19.651982,0 -99.634969,19.651757,0 -99.634425,19.651605,0 -99.634793,19.65133,0 -99.635077,19.651318,0 -99.635087,19.651241,0 -99.635103,19.650864,0 -99.633804,19.650652,0 -99.633853,19.650211,0 -99.633706,19.649683,0 -99.633026,19.649755,0 -99.632694,19.64974,0 -99.632482,19.649057,0 -99.63248,19.648993,0 -99.632303,19.647661,0 -99.632429,19.647641,0 -99.63201,19.647346,0 -99.632451,19.646927,0 -99.632594,19.646785,0 -99.632349,19.646398,0 -99.632685,19.646103,0 -99.63266,19.646092,0 -99.632649,19.646049,0 -99.63222,19.645881,0 -99.632586,19.645541,0 -99.63223,19.645425,0 -99.631523,19.645308,0 -99.632301,19.644608,0 -99.631473,19.644077,0 -99.631406,19.644147,0 -99.629824,19.643481,0 -99.629922,19.643361,0 -99.629457,19.643256,0 -99.6291,19.643286,0 -99.628866,19.643395,0 -99.62883,19.643385,0 -99.6284,19.643199,0 -99.627625,19.643005,0 -99.626845,19.642635,0 -99.62585,19.642138,0 -99.624698,19.641486,0 -99.623856,19.641306,0 -99.624075,19.640692,0 -99.624116,19.640348,0 -99.624071,19.639946,0 -99.624009,19.63963,0 -99.623844,19.639096,0 -99.623804,19.638852,0 -99.623429,19.638239,0 -99.623119,19.637758,0 -99.622953,19.637601,0 -99.621838,19.636884,0 -99.621752,19.636588,0 -99.621173,19.635607,0 -99.621245,19.634619,0 -99.621317,19.63363,0 -99.621389,19.632642,0 -99.621461,19.631653,0 -99.620399,19.631504,0 -99.619424,19.631573,0 -99.61845,19.631641,0 -99.617475,19.63171,0 -99.616259,19.631872,0 -99.615042,19.632034,0 -99.613951,19.631446,0 -99.612394,19.631592,0 -99.611149,19.631367,0 -99.610526,19.631324,0 -99.61029,19.630937,0 -99.609159,19.630619,0 -99.608893,19.630561,0 -99.60868,19.630516,0 -99.608477,19.630471,0 -99.608218,19.63043,0 -99.607855,19.630371,0 -99.60719,19.630074,0 -99.605658,19.630028,0 -99.604724,19.629774,0 -99.603789,19.629521,0 -99.603606,19.629533,0 -99.603478,19.629522,0 -99.603356,19.62945,0 -99.603094,19.629156,0 -99.602795,19.628866,0 -99.602434,19.628447,0 -99.602027,19.627935,0 -99.601686,19.627468,0 -99.601078,19.626718,0 -99.6007,19.626203,0 -99.600297,19.625613,0 -99.599895,19.62514,0 -99.599872,19.624687,0 -99.599424,19.623484,0 -99.598977,19.62228,0 -99.598061,19.6208,0 -99.598065,19.619822,0 -99.598069,19.618844,0 -99.596563,19.617695,0 -99.59532,19.61702,0 -99.594076,19.616346,0 -99.593429,19.616332,0 -99.584679,19.612387,0 -99.58306,19.611657,0 -99.57785,19.610201,0 -99.575731,19.609609,0 -99.574287,19.609205,0 -99.573321,19.609964,0 -99.572993,19.610115,0 -99.57263,19.609799,0 -99.572364,19.61069,0 -99.572098,19.611582,0 -99.571832,19.612474,0 -99.571567,19.613366,0 -99.571301,19.614258,0 -99.571035,19.61515,0 -99.570769,19.616042,0 -99.569476,19.616846,0 -99.569083,19.61768,0 -99.568689,19.618513,0 -99.568295,19.619346,0 -99.567902,19.62018,0 -99.567508,19.621013,0 -99.567115,19.621847,0 -99.566721,19.62268,0 -99.566327,19.623514,0 -99.565813,19.624422,0 -99.565298,19.62533,0 -99.564783,19.626238,0 -99.564268,19.627146,0 -99.563753,19.628054,0 -99.563812,19.628996,0 -99.563871,19.629937,0 -99.563929,19.630879,0 -99.563988,19.63182,0 -99.564047,19.632762,0 -99.564106,19.633703,0 -99.564165,19.634644,0 -99.564224,19.635586,0 -99.564283,19.636527,0 -99.564342,19.637469,0 -99.564401,19.63841,0 -99.564459,19.639352,0 -99.564518,19.640293,0 -99.564577,19.641235,0 -99.563787,19.641018,0 -99.563,19.640702,0 -99.562585,19.640357,0 -99.56116,19.640529,0 -99.559866,19.639352,0 -99.559025,19.638541,0 -99.558009,19.637686,0 -99.557042,19.63683,0 -99.556429,19.636344,0 -99.555815,19.635858,0 -99.555418,19.635488,0 -99.555021,19.635117,0 -99.554778,19.634955,0 -99.554535,19.634793,0 -99.554027,19.634079,0 -99.553655,19.633641,0 -99.553283,19.633202,0 -99.552937,19.632798,0 -99.552592,19.632393,0 -99.552268,19.631979,0 -99.551944,19.631564,0 -99.551691,19.631183,0 -99.551437,19.630802,0 -99.551144,19.630467,0 -99.550851,19.630133,0 -99.55054,19.629741,0 -99.550228,19.629348,0 -99.549853,19.629024,0 -99.548961,19.628444,0 -99.547659,19.627678,0 -99.546907,19.627282,0 -99.545739,19.626701,0 -99.54478,19.626143,0 -99.543642,19.625492,0 -99.542359,19.624818,0 -99.541085,19.624189,0 -99.539633,19.623536,0 -99.53915,19.623257,0 -99.537897,19.622538,0 -99.536324,19.621815,0 -99.535662,19.621558,0 -99.534837,19.621185,0 -99.533877,19.620765,0 -99.532834,19.620323,0 -99.531782,19.619902,0 -99.530468,19.619433,0 -99.529131,19.61892,0 -99.528222,19.618683,0 -99.52769,19.618542,0 -99.527697,19.618359,0 -99.527678,19.618219,0 -99.527631,19.618104,0 -99.527448,19.617897,0 -99.527213,19.617712,0 -99.526423,19.617064,0 -99.526107,19.616695,0 -99.5258,19.61628,0 -99.525604,19.615935,0 -99.525452,19.615542,0 -99.525451,19.615431,0 -99.525049,19.615265,0 -99.524644,19.614931,0 -99.524533,19.615275,0 -99.523624,19.615175,0 -99.52319,19.615204,0 -99.521128,19.614865,0 -99.51902,19.615061,0 -99.517963,19.615214,0 -99.516915,19.615413,0 -99.515418,19.615539,0 -99.514706,19.615593,0 -99.51399,19.615733,0 -99.513264,19.615828,0 -99.512465,19.615923,0 -99.511759,19.61604,0 -99.511526,19.616041,0 -99.510751,19.615907,0 -99.509811,19.615842,0 -99.508633,19.615708,0 -99.507902,19.615619,0 -99.507165,19.615509,0 -99.505862,19.615399,0 -99.504035,19.615221,0 -99.502344,19.614953,0 -99.500686,19.614684,0 -99.49869,19.614441,0 -99.496819,19.614195,0 -99.495399,19.614016,0 -99.494484,19.613999,0 -99.493593,19.614046,0 -99.492692,19.614028,0 -99.491597,19.613941,0 -99.490502,19.613899,0 -99.488434,19.613861,0 -99.486647,19.613891,0 -99.485364,19.613917,0 -99.48442,19.613967,0 -99.4832,19.614065,0 -99.481331,19.614256,0 -99.479864,19.614445,0 -99.47817,19.614702,0 -99.475693,19.61531,0 -99.474798,19.615543,0 -99.4734,19.615799,0 -99.47205,19.616196,0 -99.470643,19.616636,0 -99.469707,19.616447,0 -99.468683,19.616242,0 -99.467707,19.616156,0 -99.46673,19.616069,0 -99.465754,19.615983,0 -99.464778,19.615896,0 -99.463801,19.61581,0 -99.462825,19.615723,0 -99.461849,19.615637,0 -99.460872,19.61555,0 -99.459896,19.615464,0 -99.458919,19.615377,0 -99.458745,19.616346,0 -99.45857,19.617316,0 -99.458395,19.618285,0 -99.45822,19.619254,0 -99.458045,19.620223,0 -99.45787,19.621192,0 -99.457695,19.622161,0 -99.45752,19.62313,0 -99.457346,19.624099,0 -99.457171,19.625069,0 -99.456976,19.62615,0 -99.456668,19.627853,0 -99.456524,19.628654,0 -99.456361,19.629557,0 -99.456198,19.630459,0 -99.456035,19.631361,0 -99.455872,19.632263,0 -99.455709,19.633166,0 -99.4556,19.633772,0 -99.455462,19.634536,0 -99.455351,19.635153,0 -99.455211,19.635927,0 -99.45505,19.636822,0 -99.454888,19.637716,0 -99.454727,19.63861,0 -99.454565,19.639504,0 -99.454404,19.640398,0 -99.454243,19.641293,0 -99.454081,19.642187,0 -99.45392,19.643081,0 -99.453759,19.643975,0 -99.453597,19.644869,0 -99.453436,19.645764,0 -99.453274,19.646658,0 -99.453113,19.647552,0 -99.452952,19.648446,0 -99.45279,19.64934,0 -99.452629,19.650235,0 -99.452467,19.651129,0 -99.452306,19.652023,0 -99.452144,19.652917,0 -99.451983,19.653811,0 -99.451822,19.654706,0 -99.45166,19.6556,0 -99.450605,19.655418,0 -99.44955,19.655236,0 -99.448495,19.655054,0 -99.44744,19.654872,0 -99.446385,19.65469,0 -99.445329,19.654508,0 -99.444274,19.654326,0 -99.443858,19.654254,0 -99.442634,19.654043,0 -99.441411,19.653832,0 -99.440188,19.653621,0 -99.439956,19.653581,0 -99.438836,19.653388,0 -99.437716,19.653195,0 -99.436596,19.653002,0 -99.436492,19.652984,0 -99.435994,19.652898,0 -99.435914,19.652884,0 -99.435392,19.652794,0 -99.435273,19.652773,0 -99.434326,19.65261,0 -99.43338,19.652447,0 -99.432433,19.652283,0 -99.431487,19.65212,0 -99.431351,19.652097,0 -99.43123,19.652076,0 -99.431033,19.652042,0 -99.430952,19.652028,0 -99.430737,19.651991,0 -99.430518,19.651953,0 -99.430179,19.651895,0 -99.429847,19.651837,0 -99.428541,19.651612,0 -99.428119,19.651539,0 -99.428069,19.65153,0 -99.426864,19.651322,0 -99.426771,19.651306,0 -99.425499,19.651087,0 -99.425425,19.651437,0 -99.425289,19.652086,0 -99.42519,19.652552,0 -99.42518,19.652603,0 -99.425161,19.652693,0 -99.424865,19.653556,0 -99.424652,19.654844,0 -99.42449,19.655818,0 -99.424329,19.656793,0 -99.424149,19.657879,0 -99.424134,19.657972,0 -99.424031,19.658593,0 -99.424003,19.658881,0 -99.42373,19.660558,0 -99.423599,19.661368,0 -99.423496,19.662,0 -99.423333,19.663001,0 -99.423261,19.663446,0 -99.42325,19.663514,0 -99.423185,19.663909,0 -99.423072,19.664605,0 -99.423065,19.66465,0 -99.422937,19.665438,0 -99.422865,19.665877,0 -99.422752,19.666573,0 -99.422695,19.666927,0 -99.422635,19.667292,0 -99.422553,19.6678,0 -99.422541,19.667872,0 -99.422516,19.668022,0 -99.422508,19.668073,0 -99.422477,19.668264,0 -99.422457,19.668386,0 -99.422443,19.66847,0 -99.422416,19.668639,0 -99.422399,19.668745,0 -99.422392,19.668786,0 -99.422363,19.668967,0 -99.422332,19.669156,0 -99.422275,19.669411,0 -99.422731,19.669424,0 -99.42283,19.669426,0 -99.423278,19.669421,0 -99.423621,19.66939,0 -99.425071,19.669975,0 -99.425066,19.671084,0 -99.425545,19.671072,0 -99.426519,19.671132,0 -99.426828,19.671602,0 -99.426886,19.67254,0 -99.426924,19.67361,0 -99.426898,19.674961,0 -99.426916,19.675768,0 -99.426715,19.676172,0 -99.426034,19.676216,0 -99.426049,19.67627,0 -99.425887,19.676273,0 -99.425895,19.676345,0 -99.425283,19.6765,0 -99.425193,19.676271,0 -99.425116,19.676275,0 -99.424903,19.676289,0 -99.424762,19.676254,0 -99.424725,19.676547,0 -99.4246,19.676919,0 -99.424481,19.677013,0 -99.42437,19.677069,0 -99.424052,19.677226,0 -99.423853,19.677333,0 -99.42379,19.677274,0 -99.423338,19.677107,0 -99.423168,19.677045,0 -99.422178,19.676696,0 -99.422008,19.676635,0 -99.421841,19.676576,0 -99.421664,19.676513,0 -99.421497,19.676454,0 -99.421438,19.676531,0 -99.42138,19.676623,0 -99.42135,19.676687,0 -99.421339,19.676713,0 -99.421328,19.676751,0 -99.421316,19.676828,0 -99.421298,19.676944,0 -99.421228,19.677374,0 -99.421216,19.677435,0 -99.42114,19.677763,0 -99.421133,19.677875,0 -99.421035,19.67859,0 -99.420966,19.678988,0 -99.420924,19.67921,0 -99.420884,19.679383,0 -99.420865,19.679452,0 -99.420849,19.679542,0 -99.420829,19.679654,0 -99.420808,19.679765,0 -99.420719,19.680211,0 -99.420614,19.680783,0 -99.42053,19.680919,0 -99.420273,19.680956,0 -99.420221,19.681297,0 -99.420151,19.681755,0 -99.420131,19.68211,0 -99.42006,19.682746,0 -99.420047,19.682861,0 -99.419891,19.684561,0 -99.419836,19.685161,0 -99.419801,19.685302,0 -99.419614,19.686061,0 -99.419457,19.686626,0 -99.419421,19.686736,0 -99.419232,19.687097,0 -99.419378,19.687115,0 -99.420527,19.687252,0 -99.421677,19.68739,0 -99.422826,19.687527,0 -99.423975,19.687665,0 -99.424347,19.68771,0 -99.424737,19.687756,0 -99.424782,19.687762,0 -99.424884,19.687774,0 -99.425068,19.687796,0 -99.425717,19.687873,0 -99.426348,19.687949,0 -99.426449,19.688413,0 -99.426447,19.68892,0 -99.426572,19.68945,0 -99.426656,19.689672,0 -99.4269,19.68975,0 -99.426839,19.690205,0 -99.426738,19.690501,0 -99.426412,19.690974,0 -99.426332,19.691027,0 -99.426164,19.691062,0 -99.426194,19.691273,0 -99.424992,19.692461,0 -99.424823,19.692898,0 -99.424684,19.693405,0 -99.424456,19.693826,0 -99.424687,19.69414,0 -99.424371,19.695084,0 -99.424207,19.695137,0 -99.424071,19.69507,0 -99.42366,19.694945,0 -99.4232,19.693702,0 -99.423065,19.693452,0 -99.423095,19.692431,0 -99.422969,19.691728,0 -99.422997,19.691363,0 -99.422837,19.691072,0 -99.422712,19.691097,0 -99.422766,19.691433,0 -99.422708,19.6918,0 -99.422526,19.692228,0 -99.422206,19.693082,0 -99.42242,19.693755,0 -99.422174,19.694098,0 -99.422359,19.694509,0 -99.422522,19.695344,0 -99.422222,19.695479,0 -99.421976,19.696222,0 -99.422262,19.696546,0 -99.421574,19.697042,0 -99.421362,19.69694,0 -99.421138,19.696931,0 -99.420989,19.697326,0 -99.42079,19.697978,0 -99.4207,19.698074,0 -99.420503,19.698191,0 -99.420505,19.698727,0 -99.420163,19.698952,0 -99.419838,19.698932,0 -99.419736,19.698867,0 -99.419434,19.698469,0 -99.419329,19.698525,0 -99.419426,19.699211,0 -99.419822,19.700018,0 -99.421174,19.70041,0 -99.421156,19.70088,0 -99.421014,19.701119,0 -99.420702,19.701257,0 -99.420426,19.701625,0 -99.420622,19.701869,0 -99.420682,19.702215,0 -99.421064,19.702332,0 -99.421506,19.702631,0 -99.421622,19.702913,0 -99.421677,19.703324,0 -99.421428,19.703417,0 -99.421156,19.703814,0 -99.421019,19.704259,0 -99.421081,19.70454,0 -99.420828,19.704793,0 -99.421112,19.70503,0 -99.421312,19.705249,0 -99.42139,19.705531,0 -99.42121,19.705658,0 -99.420847,19.705839,0 -99.420945,19.706261,0 -99.420966,19.706688,0 -99.420947,19.707102,0 -99.420782,19.707431,0 -99.420948,19.707687,0 -99.420969,19.707784,0 -99.421046,19.708213,0 -99.420664,19.708785,0 -99.420927,19.709191,0 -99.420846,19.709494,0 -99.420991,19.709724,0 -99.421181,19.709724,0 -99.421345,19.710194,0 -99.421294,19.710359,0 -99.420944,19.710436,0 -99.420774,19.710725,0 -99.420405,19.710782,0 -99.420323,19.711008,0 -99.420373,19.711154,0 -99.420278,19.711554,0 -99.420437,19.711697,0 -99.420509,19.711988,0 -99.420356,19.712277,0 -99.42009,19.712711,0 -99.419636,19.713384,0 -99.419652,19.713944,0 -99.41983,19.714193,0 -99.419844,19.714423,0 -99.420227,19.714889,0 -99.420537,19.714896,0 -99.420639,19.71507,0 -99.420635,19.71516,0 -99.420552,19.715549,0 -99.420307,19.715695,0 -99.420253,19.716098,0 -99.420376,19.716229,0 -99.420106,19.716384,0 -99.419767,19.716249,0 -99.419693,19.716439,0 -99.419037,19.716617,0 -99.418851,19.717159,0 -99.418936,19.717241,0 -99.418665,19.717448,0 -99.417906,19.717412,0 -99.417498,19.718058,0 -99.417648,19.718327,0 -99.417529,19.718694,0 -99.417081,19.718835,0 -99.416906,19.719087,0 -99.417026,19.720271,0 -99.417267,19.720421,0 -99.417719,19.720533,0 -99.417921,19.720685,0 -99.417626,19.72143,0 -99.417208,19.72191,0 -99.417088,19.722563,0 -99.417254,19.722815,0 -99.41731,19.723099,0 -99.416877,19.723256,0 -99.416946,19.723693,0 -99.416775,19.723935,0 -99.417027,19.724141,0 -99.417094,19.72453,0 -99.41715,19.72485,0 -99.417071,19.725173,0 -99.417575,19.725441,0 -99.417326,19.725824,0 -99.416565,19.725776,0 -99.416374,19.726377,0 -99.415445,19.726845,0 -99.415251,19.727613,0 -99.415852,19.728231,0 -99.415148,19.729443,0 -99.415728,19.730447,0 -99.414935,19.73093,0 -99.415188,19.731908,0 -99.414756,19.731785,0 -99.414134,19.7326,0 -99.41488,19.732607,0 -99.415025,19.732796,0 -99.414597,19.733181,0 -99.415818,19.733486,0 -99.415456,19.734515,0 -99.415282,19.735091,0 -99.415799,19.735666,0 -99.415085,19.736097,0 -99.414316,19.735663,0 -99.414082,19.736524,0 -99.414916,19.736863,0 -99.414067,19.73785,0 -99.41412,19.738209,0 -99.413294,19.73845,0 -99.413958,19.739073,0 -99.412645,19.73934,0 -99.413442,19.740291,0 -99.412549,19.740192,0 -99.412645,19.74105,0 -99.413188,19.741234,0 -99.412189,19.741724,0 -99.41308,19.742739,0 -99.411961,19.743675,0 -99.412201,19.744639,0 -99.412206,19.745592,0 -99.411361,19.747114,0 -99.411621,19.747722,0 -99.410431,19.747776,0 -99.409894,19.749362,0 -99.409761,19.750028,0 -99.409415,19.750137,0 -99.408686,19.750923,0 -99.408061,19.751335,0 -99.40845,19.751576,0 -99.409159,19.751683,0 -99.40906,19.752061,0 -99.4083,19.75241,0 -99.407763,19.752441,0 -99.407371,19.753126,0 -99.407074,19.753366,0 -99.407211,19.75396,0 -99.406551,19.754285,0 -99.406665,19.754784,0 -99.40697,19.754949,0 -99.407012,19.755744,0 -99.406418,19.755982,0 -99.406511,19.756485,0 -99.406435,19.756928,0 -99.406312,19.757242,0 -99.405761,19.757382,0 -99.405261,19.757969,0 -99.404831,19.758125,0 -99.404617,19.758432,0 -99.40477,19.759354,0 -99.404367,19.759621,0 -99.404115,19.760339,0 -99.404557,19.760579,0 -99.404429,19.76073,0 -99.403788,19.760621,0 -99.403683,19.761069,0 -99.40398,19.761277,0 -99.404019,19.761674,0 -99.404014,19.762074,0 -99.403811,19.762334,0 -99.403494,19.762438,0 -99.403263,19.762618,0 -99.403258,19.763007,0 -99.402745,19.763278,0 -99.402464,19.763585,0 -99.402404,19.76401,0 -99.401599,19.764125,0 -99.401769,19.764475,0 -99.401421,19.765205,0 -99.401518,19.765587,0 -99.402039,19.765946,0 -99.401903,19.766103,0 -99.401818,19.766201,0 -99.401428,19.766081,0 -99.400875,19.766416,0 -99.401344,19.76734,0 -99.400326,19.767561,0 -99.400347,19.768261,0 -99.399783,19.768424,0 -99.399955,19.768763,0 -99.399435,19.768815,0 -99.399281,19.768193,0 -99.39837,19.767687,0 -99.398213,19.768035,0 -99.397905,19.768807,0 -99.397604,19.769173,0 -99.397265,19.769783,0 -99.396838,19.769953,0 -99.396334,19.769383,0 -99.395846,19.770382,0 -99.39523,19.770142,0 -99.394899,19.770732,0 -99.395281,19.77084,0 -99.395216,19.77105,0 -99.394684,19.771213,0 -99.394268,19.771522,0 -99.393787,19.771651,0 -99.393139,19.771831,0 -99.392459,19.771508,0 -99.39247,19.771687,0 -99.392558,19.771853,0 -99.392278,19.772405,0 -99.391881,19.77248,0 -99.39168,19.772902,0 -99.391862,19.773126,0 -99.391464,19.773929,0 -99.390468,19.77396,0 -99.389913,19.774202,0 -99.390003,19.774556,0 -99.390618,19.774851,0 -99.391556,19.775002,0 -99.391343,19.775187,0 -99.390629,19.775422,0 -99.389614,19.775284,0 -99.389164,19.774998,0 -99.388418,19.775006,0 -99.388566,19.77589,0 -99.389059,19.776319,0 -99.389877,19.776588,0 -99.388254,19.77692,0 -99.387826,19.777339,0 -99.387884,19.777913,0 -99.387799,19.777932,0 -99.387254,19.777901,0 -99.386506,19.778031,0 -99.386181,19.778195,0 -99.385227,19.778547,0 -99.3849,19.778737,0 -99.384868,19.778818,0 -99.384625,19.778975,0 -99.384425,19.779118,0 -99.384347,19.779271,0 -99.384493,19.779474,0 -99.384817,19.779563,0 -99.385179,19.779545,0 -99.385542,19.779504,0 -99.385791,19.779568,0 -99.385917,19.779687,0 -99.385721,19.779945,0 -99.385339,19.780274,0 -99.384949,19.78041,0 -99.384497,19.780508,0 -99.383772,19.780567,0 -99.383271,19.780629,0 -99.382968,19.780778,0 -99.382923,19.781179,0 -99.382974,19.781575,0 -99.382916,19.782015,0 -99.38276,19.782177,0 -99.382423,19.782317,0 -99.38206,19.782383,0 -99.381647,19.782494,0 -99.381471,19.782636,0 -99.381259,19.78312,0 -99.381175,19.783873,0 -99.381172,19.784054,0 -99.381267,19.784175,0 -99.381584,19.784312,0 -99.381903,19.78441,0 -99.382283,19.784568,0 -99.38257,19.784542,0 -99.382947,19.784542,0 -99.383211,19.784409,0 -99.383613,19.78429,0 -99.383826,19.784176,0 -99.384118,19.783951,0 -99.384572,19.783865,0 -99.384917,19.783724,0 -99.385129,19.783493,0 -99.385386,19.783295,0 -99.385517,19.783231,0 -99.385875,19.783007,0 -99.387168,19.782959,0 -99.388683,19.783414,0 -99.389361,19.783478,0 -99.38945,19.783621,0 -99.389618,19.783795,0 -99.389575,19.783858,0 -99.389538,19.783885,0 -99.389019,19.784546,0 -99.389354,19.784778,0 -99.389192,19.78491,0 -99.38878,19.785366,0 -99.389335,19.785911,0 -99.38979,19.78534,0 -99.389997,19.785237,0 -99.390331,19.785734,0 -99.389975,19.786438,0 -99.390164,19.786658,0 -99.389935,19.787215,0 -99.389809,19.787754,0 -99.389571,19.788025,0 -99.389293,19.788374,0 -99.389093,19.788786,0 -99.388971,19.789166,0 -99.388954,19.789435,0 -99.389002,19.789675,0 -99.38913,19.789861,0 -99.389117,19.790193,0 -99.389073,19.79067,0 -99.388949,19.790914,0 -99.388897,19.791052,0 -99.388692,19.791115,0 -99.388516,19.791172,0 -99.388442,19.791363,0 -99.38812,19.791723,0 -99.387704,19.791841,0 -99.387405,19.792082,0 -99.387107,19.792269,0 -99.386683,19.792435,0 -99.386478,19.792502,0 -99.386311,19.792522,0 -99.386168,19.792564,0 -99.385935,19.792625,0 -99.385686,19.792958,0 -99.385553,19.793139,0 -99.385402,19.793291,0 -99.385272,19.79336,0 -99.384997,19.793453,0 -99.384779,19.793454,0 -99.38455,19.793474,0 -99.384411,19.793514,0 -99.384267,19.793539,0 -99.384166,19.793603,0 -99.384094,19.793729,0 -99.383983,19.793798,0 -99.383867,19.793826,0 -99.38372,19.793802,0 -99.383496,19.793758,0 -99.383274,19.793655,0 -99.383132,19.793643,0 -99.382945,19.793688,0 -99.382731,19.793864,0 -99.382395,19.794058,0 -99.382115,19.794017,0 -99.381783,19.794035,0 -99.381489,19.794066,0 -99.381232,19.794116,0 -99.380969,19.794184,0 -99.380633,19.794441,0 -99.380277,19.794912,0 -99.38002,19.794873,0 -99.379793,19.794946,0 -99.379718,19.795086,0 -99.379728,19.7953,0 -99.379508,19.795441,0 -99.379089,19.795683,0 -99.378185,19.796105,0 -99.37799,19.79637,0 -99.377799,19.796448,0 -99.37754,19.796453,0 -99.380734,19.798308,0 -99.382745,19.799236,0 -99.382491,19.799488,0 -99.382353,19.799839,0 -99.382348,19.800061,0 -99.382554,19.800331,0 -99.383309,19.801332,0 -99.383363,19.801375,0 -99.384095,19.801961,0 -99.384156,19.802318,0 -99.384278,19.802732,0 -99.384219,19.803231,0 -99.384309,19.803345,0 -99.384491,19.803516,0 -99.38483,19.803744,0 -99.384811,19.803918,0 -99.384932,19.803975,0 -99.385098,19.803989,0 -99.3854,19.80396,0 -99.385566,19.804059,0 -99.385778,19.80423,0 -99.386035,19.804329,0 -99.386442,19.804443,0 -99.386443,19.804828,0 -99.38652,19.805319,0 -99.386462,19.806062,0 -99.386433,19.806704,0 -99.386495,19.807375,0 -99.386497,19.808003,0 -99.386437,19.808431,0 -99.386333,19.808917,0 -99.386102,19.809348,0 -99.3861,19.809464,0 -99.386121,19.809597,0 -99.386189,19.80995,0 -99.386259,19.810232,0 -99.386332,19.810382,0 -99.386655,19.810514,0 -99.386822,19.810622,0 -99.38687,19.810848,0 -99.386803,19.811023,0 -99.386688,19.811196,0 -99.386748,19.811736,0 -99.386765,19.812067,0 -99.386568,19.812311,0 -99.386489,19.812481,0 -99.386429,19.812865,0 -99.386722,19.813032,0 -99.386713,19.813144,0 -99.386615,19.813247,0 -99.385926,19.813588,0 -99.385796,19.81383,0 -99.385723,19.814171,0 -99.385709,19.814615,0 -99.385702,19.81498,0 -99.385605,19.815166,0 -99.38545,19.815361,0 -99.38516,19.81558,0 -99.385068,19.815691,0 -99.385022,19.815836,0 -99.384995,19.816001,0 -99.384984,19.816141,0 -99.384967,19.816414,0 -99.38497,19.816658,0 -99.384925,19.816761,0 -99.384682,19.816761,0 -99.384548,19.816818,0 -99.384474,19.816978,0 -99.384437,19.817167,0 -99.38452,19.817271,0 -99.384733,19.817343,0 -99.38486,19.817435,0 -99.384783,19.817927,0 -99.384752,19.818233,0 -99.384737,19.818372,0 -99.384731,19.818469,0 -99.384737,19.818558,0 -99.384638,19.818617,0 -99.384311,19.818715,0 -99.384176,19.818776,0 -99.384135,19.818866,0 -99.384066,19.819026,0 -99.384018,19.819122,0 -99.383959,19.819193,0 -99.383868,19.819206,0 -99.383747,19.819146,0 -99.383542,19.818948,0 -99.383412,19.818791,0 -99.383315,19.818693,0 -99.383183,19.818658,0 -99.383121,19.818696,0 -99.383094,19.81894,0 -99.38309,19.819131,0 -99.383117,19.819327,0 -99.383258,19.819414,0 -99.383424,19.819478,0 -99.38357,19.819507,0 -99.383676,19.819621,0 -99.383613,19.819784,0 -99.383478,19.820048,0 -99.383342,19.820374,0 -99.383176,19.820721,0 -99.382989,19.820902,0 -99.382702,19.820897,0 -99.382514,19.820833,0 -99.382227,19.820536,0 -99.381987,19.820326,0 -99.381813,19.820113,0 -99.381638,19.820177,0 -99.381528,19.820288,0 -99.381541,19.820462,0 -99.381551,19.820634,0 -99.381595,19.820841,0 -99.381544,19.821134,0 -99.381851,19.825609,0 -99.382271,19.827956,0 -99.381981,19.828631,0 -99.381729,19.829812,0 -99.381541,19.830851,0 -99.381374,19.831386,0 -99.381039,19.832035,0 -99.380299,19.833152,0 -99.37937,19.834306,0 -99.378713,19.835249,0 -99.377243,19.836181,0 -99.376293,19.836624,0 -99.374989,19.837186,0 -99.374863,19.837228,0 -99.374745,19.837309,0 -99.374596,19.837457,0 -99.374512,19.837579,0 -99.374392,19.837914,0 -99.374265,19.838676,0 -99.37418,19.839512,0 -99.37415,19.839808,0 -99.374293,19.841985,0 -99.374854,19.843193,0 -99.375246,19.843583,0 -99.375728,19.844134,0 -99.37695,19.844509,0 -99.376971,19.844953,0 -99.376892,19.845249,0 -99.375311,19.846537,0 -99.374446,19.846689,0 -99.375134,19.847636,0 -99.37325,19.851542,0 -99.373751,19.851564,0 -99.375402,19.85245,0 -99.376127,19.852978,0 -99.377017,19.853598,0 -99.377447,19.854157,0 -99.378172,19.85456,0 -99.378896,19.854932,0 -99.379622,19.855428,0 -99.380248,19.855893,0 -99.380874,19.856016,0 -99.381532,19.856015,0 -99.382453,19.856075,0 -99.383605,19.856135,0 -99.384758,19.856381,0 -99.386437,19.856813,0 -99.388323,19.857405,0 -99.388719,19.857716,0 -99.38918,19.85815,0 -99.389774,19.858553,0 -99.390664,19.859049,0 -99.391752,19.859918,0 -99.402621,19.855247,0 -99.414992,19.850527,0 -99.420988,19.855122,0 -99.421184,19.855871,0 -99.421305,19.856899,0 -99.421438,19.857556,0 -99.421716,19.858458,0 -99.422004,19.859061,0 -99.42204,19.859244,0 -99.422064,19.859555,0 -99.422,19.859854,0 -99.42193,19.86008,0 -99.421879,19.860451,0 -99.421724,19.861067,0 -99.421731,19.861234,0 -99.421842,19.86149,0 -99.42191,19.861782,0 -99.422021,19.86197,0 -99.422158,19.862187,0 -99.422494,19.862581,0 -99.42266,19.862896,0 -99.422786,19.863209,0 -99.422898,19.863495,0 -99.422958,19.863753,0 -99.423036,19.864041,0 -99.423291,19.864734,0 -99.423303,19.865079,0 -99.423286,19.865334,0 -99.423292,19.865567,0 -99.423466,19.865909,0 -99.423466,19.866246,0 -99.423442,19.866429,0 -99.423542,19.866846,0 -99.423698,19.867326,0 -99.423902,19.867838,0 -99.424236,19.868212,0 -99.424623,19.86873,0 -99.425077,19.869221,0 -99.425393,19.869731,0 -99.426137,19.870713,0 -99.426395,19.872887,0 -99.426781,19.874997,0 -99.427642,19.87423,0 -99.427844,19.874036,0 -99.427981,19.873788,0 -99.428046,19.873665,0 -99.428065,19.87355,0 -99.42812,19.873436,0 -99.428222,19.873374,0 -99.428353,19.873388,0 -99.428623,19.873367,0 -99.428833,19.8731,0 -99.42899,19.872872,0 -99.429136,19.872615,0 -99.429288,19.87234,0 -99.429641,19.872003,0 -99.429736,19.87183,0 -99.429651,19.871724,0 -99.429693,19.871589,0 -99.429737,19.871489,0 -99.429894,19.871374,0 -99.429936,19.871203,0 -99.429867,19.87094,0 -99.429949,19.87088,0 -99.430094,19.870857,0 -99.430223,19.870821,0 -99.430415,19.870879,0 -99.430607,19.87186,0 -99.430605,19.873151,0 -99.431291,19.873725,0 -99.431978,19.874406,0 -99.432033,19.87446,0 -99.432692,19.875257,0 -99.432798,19.875384,0 -99.434012,19.876169,0 -99.435623,19.87724,0 -99.43708,19.878922,0 -99.439584,19.880422,0 -99.441515,19.881942,0 -99.444072,19.883589,0 -99.445208,19.884321,0 -99.437751,19.893933,0 -99.436034,19.896146,0 -99.437188,19.899688,0 -99.436949,19.900474,0 -99.43627,19.901388,0 -99.435888,19.902469,0 -99.435933,19.903129,0 -99.437419,19.902756,0 -99.437732,19.901719,0 -99.439045,19.900934,0 -99.439434,19.900794,0 -99.440134,19.900593,0 -99.440673,19.899917,0 -99.441183,19.899202,0 -99.442418,19.898602,0 -99.443562,19.898409,0 -99.444011,19.897649,0 -99.445591,19.896831,0 -99.446488,19.896767,0 -99.447659,19.896751,0 -99.44877,19.896675,0 -99.449844,19.895721,0 -99.450239,19.894835,0 -99.4508,19.894613,0 -99.45226,19.894142,0 -99.453806,19.893798,0 -99.45575,19.893575,0 -99.456547,19.893479,0 -99.457211,19.893441,0 -99.457979,19.893252,0 -99.458872,19.892968,0 -99.460111,19.89266,0 -99.460552,19.892571,0 -99.461022,19.892589,0 -99.461492,19.892624,0 -99.461982,19.892716,0 -99.462569,19.892714,0 -99.463098,19.892565,0 -99.463881,19.892596,0 -99.463848,19.894042,0 -99.463887,19.894711,0 -99.464125,19.89506,0 -99.46428,19.895103,0 -99.464638,19.895354,0 -99.465201,19.89542,0 -99.465399,19.895615,0 -99.465377,19.895967,0 -99.46606,19.896131,0 -99.466533,19.89591,0 -99.46735,19.896195,0 -99.467803,19.897108,0 -99.468479,19.897324,0 -99.468765,19.897328,0 -99.469595,19.897685,0 -99.47017,19.897861,0 -99.470855,19.898605,0 -99.471557,19.898887,0 -99.472142,19.89814,0 -99.472533,19.897966,0 -99.473247,19.897725,0 -99.474359,19.897905,0 -99.47564,19.898278,0 -99.476027,19.89838,0 -99.476558,19.898344,0 -99.477437,19.898275,0 -99.477744,19.898635,0 -99.477975,19.899393,0 -99.478129,19.899754,0 -99.478175,19.899883,0 -99.478322,19.900295,0 -99.478553,19.900872,0 -99.478746,19.90145,0 -99.479131,19.902315,0 -99.4794,19.902856,0 -99.479592,19.903217,0 -99.4799,19.904119,0 -99.480361,19.904695,0 -99.481011,19.904983,0 -99.482579,19.905195,0 -99.483981,19.905177,0 -99.475051,19.944106,0 -99.474992,19.948389,0 -99.474973,19.94858,0 -99.474964,19.94862,0 -99.473623,19.954444,0 -99.473682,19.95445,0 -99.477237,19.954791,0 -99.477327,19.955246,0 -99.477426,19.955596,0 -99.477012,19.955597,0 -99.476849,19.955712,0 -99.476879,19.956545,0 -99.477138,19.95786,0 -99.47729,19.958172,0 -99.477614,19.95879,0 -99.477892,19.958998,0 -99.478014,19.959367,0 -99.477943,19.95982,0 -99.477832,19.960268,0 -99.477765,19.960566,0 -99.477563,19.960865,0 -99.477134,19.960994,0 -99.476616,19.961017,0 -99.475984,19.961189,0 -99.475491,19.961283,0 -99.475026,19.961384,0 -99.474424,19.96141,0 -99.473994,19.961451,0 -99.473728,19.96163,0 -99.473347,19.962352,0 -99.473253,19.962796,0 -99.473012,19.963244,0 -99.47238,19.963215,0 -99.470642,19.962904,0 -99.469284,19.96356,0 -99.467639,19.963378,0 -99.466723,19.9634,0 -99.466132,19.963498,0 -99.465664,19.963615,0 -99.464992,19.963597,0 -99.46434,19.963637,0 -99.46375,19.963793,0 -99.46312,19.964295,0 -99.462734,19.964719,0 -99.462648,19.964791,0 -99.462246,19.965125,0 -99.461738,19.96528,0 -99.461453,19.965396,0 -99.461046,19.965706,0 -99.46068,19.965899,0 -99.460192,19.966073,0 -99.45948,19.966403,0 -99.458715,19.966518,0 -99.458267,19.966461,0 -99.457961,19.966385,0 -99.457655,19.966193,0 -99.457308,19.965905,0 -99.457083,19.965656,0 -99.45683,19.965702,0 -99.454656,19.964104,0 -99.453689,19.964902,0 -99.453478,19.964717,0 -99.453339,19.964549,0 -99.452966,19.964396,0 -99.452674,19.964109,0 -99.452355,19.963815,0 -99.45211,19.963563,0 -99.451969,19.963332,0 -99.451485,19.963329,0 -99.451186,19.963581,0 -99.451134,19.964031,0 -99.450937,19.964246,0 -99.45073,19.964284,0 -99.450244,19.964247,0 -99.450124,19.964586,0 -99.450176,19.964794,0 -99.450245,19.964893,0 -99.450376,19.965027,0 -99.451595,19.966361,0 -99.450797,19.966902,0 -99.451429,19.96862,0 -99.452193,19.970699,0 -99.452324,19.970823,0 -99.452726,19.970607,0 -99.453075,19.971142,0 -99.453056,19.971154,0 -99.453082,19.971264,0 -99.453152,19.971271,0 -99.453656,19.972138,0 -99.453168,19.972417,0 -99.453431,19.972969,0 -99.452357,19.973325,0 -99.451796,19.97438,0 -99.45173,19.974502,0 -99.451961,19.974777,0 -99.452328,19.974804,0 -99.45295,19.975091,0 -99.45331,19.975596,0 -99.453591,19.975854,0 -99.453769,19.975776,0 -99.454431,19.975485,0 -99.454432,19.97535,0 -99.454515,19.975031,0 -99.45468,19.975314,0 -99.454732,19.97553,0 -99.454769,19.976468,0 -99.454585,19.976479,0 -99.454577,19.977099,0 -99.454641,19.977394,0 -99.454741,19.977844,0 -99.454939,19.97862,0 -99.454967,19.978728,0 -99.455145,19.979724,0 -99.454829,19.979771,0 -99.454816,19.979773,0 -99.454484,19.979811,0 -99.45462,19.980579,0 -99.454628,19.980946,0 -99.454584,19.98122,0 -99.454301,19.981279,0 -99.4541,19.981321,0 -99.452747,19.981395,0 -99.452663,19.981394,0 -99.452388,19.981329,0 -99.451046,19.981033,0 -99.450689,19.980987,0 -99.450383,19.981039,0 -99.45001,19.981127,0 -99.449898,19.981154,0 -99.44878,19.981637,0 -99.448789,19.981738,0 -99.448814,19.982041,0 -99.448495,19.981796,0 -99.448318,19.981661,0 -99.448248,19.981662,0 -99.447959,19.981667,0 -99.448273,19.982113,0 -99.448413,19.982297,0 -99.448331,19.982656,0 -99.448098,19.983105,0 -99.447716,19.983347,0 -99.447066,19.983335,0 -99.447063,19.983398,0 -99.447057,19.983491,0 -99.447021,19.983546,0 -99.446723,19.983584,0 -99.446457,19.983552,0 -99.446327,19.983467,0 -99.446027,19.98353,0 -99.445902,19.983562,0 -99.444665,19.984754,0 -99.444612,19.984883,0 -99.444471,19.985059,0 -99.444349,19.985388,0 -99.444364,19.985642,0 -99.44438,19.985913,0 -99.444393,19.986132,0 -99.444291,19.986371,0 -99.444246,19.986482,0 -99.444132,19.98676,0 -99.443926,19.987069,0 -99.443652,19.987755,0 -99.443614,19.988065,0 -99.443653,19.988369,0 -99.443644,19.98853,0 -99.443606,19.988839,0 -99.444056,19.989248,0 -99.444131,19.989369,0 -99.444196,19.989645,0 -99.444194,19.990197,0 -99.444322,19.990528,0 -99.444509,19.990821,0 -99.444827,19.990915,0 -99.445141,19.990967,0 -99.445337,19.991034,0 -99.445496,19.991228,0 -99.445298,19.991589,0 -99.445057,19.991774,0 -99.444842,19.992135,0 -99.444362,19.992683,0 -99.444225,19.992827,0 -99.444098,19.992955,0 -99.44391,19.993118,0 -99.443826,19.993313,0 -99.44376,19.993433,0 -99.443509,19.993511,0 -99.443228,19.9935,0 -99.442979,19.993526,0 -99.442642,19.993863,0 -99.44245,19.994039,0 -99.442313,19.99421,0 -99.442208,19.994376,0 -99.44222,19.994772,0 -99.442238,19.994934,0 -99.44223,19.995095,0 -99.442156,19.995248,0 -99.441951,19.995507,0 -99.441683,19.995747,0 -99.441261,19.995932,0 -99.440774,19.996,0 -99.440313,19.996048,0 -99.439842,19.996302,0 -99.439388,19.996687,0 -99.439141,19.997001,0 -99.438885,19.997227,0 -99.438501,19.997411,0 -99.438247,19.997462,0 -99.437989,19.997553,0 -99.437886,19.997702,0 -99.437714,19.998027,0 -99.437372,19.998827,0 -99.437186,19.999225,0 -99.437013,19.99946,0 -99.436855,19.999604,0 -99.436777,19.999824,0 -99.436928,20.000362,0 -99.43693,20.000548,0 -99.436842,20.000727,0 -99.436853,20.001299,0 -99.436949,20.001774,0 -99.437126,20.00218,0 -99.437283,20.002571,0 -99.437372,20.003047,0 -99.437901,20.003898,0 -99.438134,20.004182,0 -99.438419,20.004466,0 -99.43849,20.00481,0 -99.438418,20.005295,0 -99.43837,20.005664,0 -99.438377,20.005984,0 -99.438686,20.006287,0 -99.439108,20.006563,0 -99.439166,20.006692,0 -99.439192,20.006915,0 -99.43898,20.007244,0 -99.438893,20.007467,0 -99.438776,20.007699,0 -99.438672,20.007978,0 -99.438708,20.00834,0 -99.439357,20.008953,0 -99.439686,20.009182,0 -99.439757,20.010904,0 -99.43976,20.010927,0 -99.439708,20.010925,0 -99.439655,20.010944,0 -99.439536,20.012143,0 -99.439468,20.012537,0 -99.439625,20.012964,0 -99.439956,20.013258,0 -99.440721,20.013207,0 -99.440748,20.013354,0 -99.442152,20.021028,0 -99.443226,20.024254,0 -99.443318,20.024795,0 -99.443529,20.026078,0 -99.443629,20.026628,0 -99.444297,20.027718,0 -99.444769,20.029135,0 -99.445601,20.031586,0 -99.447612,20.037291,0 -99.448178,20.038345,0 -99.448343,20.040643,0 -99.448449,20.042187,0 -99.451669,20.045547,0 -99.452165,20.046055,0 -99.453222,20.047619,0 -99.455349,20.050692,0 -99.456749,20.052821,0 -99.458214,20.05503,0 -99.45845,20.055831,0 -99.458601,20.056336,0 -99.458688,20.056721,0 -99.458658,20.057072,0 -99.458598,20.057787,0 -99.458463,20.059952,0 -99.458449,20.060035,0 -99.4584,20.060808,0 -99.458335,20.061466,0 -99.458454,20.061622,0 -99.459009,20.062464,0 -99.459199,20.063163,0 -99.459605,20.064846,0 -99.459759,20.065457,0 -99.461026,20.066377,0 -99.461871,20.066981,0 -99.462012,20.06709,0 -99.462521,20.067446,0 -99.463408,20.06817,0 -99.464616,20.069149,0 -99.469948,20.073415,0 -99.474348,20.076951,0 -99.481009,20.082198,0 -99.483647,20.094915,0 -99.483497,20.10097,0 -99.484274,20.101255,0 -99.484776,20.101553,0 -99.484954,20.101716,0 -99.485361,20.102296,0 -99.485796,20.102909,0 -99.486128,20.103582,0 -99.486378,20.104048,0 -99.48656,20.10436,0 -99.48686,20.10496,0 -99.486959,20.105167,0 -99.487141,20.105153,0 -99.487753,20.106908,0 -99.488017,20.107323,0 -99.48809,20.107308,0 -99.488121,20.1073,0 -99.488594,20.107711,0 -99.489314,20.108104,0 -99.489766,20.108248,0 -99.489555,20.10844,0 -99.489779,20.108503,0 -99.49028,20.10862,0 -99.49086,20.10907,0 -99.49158,20.109082,0 -99.492403,20.110553,0 -99.492599,20.110904,0 -99.493477,20.110887,0 -99.493555,20.110887,0 -99.494918,20.110879,0 -99.495737,20.112884,0 -99.496456,20.114648,0 -99.49709,20.116184,0 -99.497165,20.117215,0 -99.496688,20.118362,0 -99.49657,20.118688,0 -99.496577,20.119429,0 -99.496878,20.120087,0 -99.498621,20.122812,0 -99.501312,20.127003,0 -99.50307,20.129031,0 -99.505386,20.13171,0 -99.505734,20.132049,0 -99.50693,20.133447,0 -99.507151,20.133926,0 -99.510307,20.138437,0 -99.510563,20.138922,0 -99.510907,20.139837,0 -99.511039,20.140022,0 -99.511327,20.140409,0 -99.511494,20.140708,0 -99.511515,20.140745,0 -99.511683,20.140948,0 -99.512225,20.141336,0 -99.513874,20.142051,0 -99.515243,20.142641,0 -99.516292,20.143392,0 -99.51724,20.144307,0 -99.51766,20.144862,0 -99.518128,20.145667,0 -99.518608,20.14697,0 -99.518777,20.147733,0 -99.518698,20.148299,0 -99.517936,20.148447,0 -99.51788,20.148459,0 -99.516341,20.148773,0 -99.516711,20.150352,0 -99.515466,20.150861,0 -99.514872,20.150118,0 -99.514286,20.149654,0 -99.514197,20.14961,0 -99.514094,20.149586,0 -99.513848,20.149539,0 -99.513742,20.149536,0 -99.513616,20.149558,0 -99.512684,20.149888,0 -99.512002,20.150087,0 -99.511053,20.150455,0 -99.50986,20.150473,0 -99.50976,20.150397,0 -99.508596,20.150393,0 -99.508363,20.150437,0 -99.507658,20.150706,0 -99.507487,20.150772,0 -99.507269,20.15077,0 -99.505743,20.151521,0 -99.503737,20.152426,0 -99.501831,20.153287,0 -99.502654,20.155006,0 -99.503253,20.156262,0 -99.504935,20.159757,0 -99.505267,20.160465,0 -99.506367,20.162823,0 -99.507571,20.165345,0 -99.508103,20.166459,0 -99.510189,20.170789,0 -99.510951,20.172375,0 -99.511721,20.173992,0 -99.511857,20.174281,0 -99.51224,20.1751,0 -99.515357,20.175733,0 -99.517499,20.17569,0 -99.518764,20.175041,0 -99.519123,20.174936,0 -99.52297,20.174796,0 -99.523144,20.174793,0 -99.523442,20.174486,0 -99.525399,20.17327,0 -99.525927,20.173296,0 -99.525841,20.172402,0 -99.525696,20.170682,0 -99.526047,20.170389,0 -99.526323,20.169835,0 -99.52728,20.167953,0 -99.528092,20.166098,0 -99.528496,20.164591,0 -99.528681,20.163584,0 -99.529042,20.163607,0 -99.529988,20.163665,0 -99.530317,20.1637,0 -99.530967,20.163731,0 -99.531617,20.163762,0 -99.531818,20.163778,0 -99.531663,20.163246,0 -99.531562,20.162942,0 -99.531717,20.162926,0 -99.531954,20.162898,0 -99.532031,20.162889,0 -99.532195,20.16287,0 -99.53222,20.162867,0 -99.532276,20.162883,0 -99.532972,20.162849,0 -99.532958,20.162731,0 -99.533185,20.162511,0 -99.533209,20.162459,0 -99.533318,20.162439,0 -99.533494,20.162058,0 -99.533913,20.162131,0 -99.533891,20.16284,0 -99.533837,20.162898,0 -99.533884,20.163028,0 -99.533978,20.162989,0 -99.534159,20.162836,0 -99.534674,20.163885,0 -99.534699,20.163935,0 -99.541039,20.163914,0 -99.542169,20.163741,0 -99.545434,20.163286,0 -99.545582,20.163262,0 -99.545824,20.163135,0 -99.546475,20.162793,0 -99.547011,20.162645,0 -99.547437,20.162778,0 -99.547867,20.162929,0 -99.548288,20.163132,0 -99.548638,20.163601,0 -99.549173,20.164298,0 -99.54977,20.165143,0 -99.550192,20.165651,0 -99.550409,20.166406,0 -99.550431,20.166996,0 -99.550415,20.167364,0 -99.550433,20.167361,0 -99.550555,20.168138,0 -99.551105,20.169475,0 -99.551207,20.17052,0 -99.550665,20.171392,0 -99.552924,20.171056,0 -99.555895,20.170796,0 -99.556281,20.170802,0 -99.559212,20.170674,0 -99.559279,20.170757,0 -99.559756,20.170276,0 -99.560262,20.170039,0 -99.559928,20.169984,0 -99.559999,20.169934,0 -99.561232,20.169302,0 -99.562122,20.169145,0 -99.562117,20.169068,0 -99.56359,20.169063,0 -99.563687,20.169428,0 -99.565667,20.169056,0 -99.566993,20.169051,0 -99.566899,20.169745,0 -99.567864,20.169348,0 -99.567864,20.169308,0 -99.568573,20.169507,0 -99.569035,20.169765,0 -99.569272,20.169623,0 -99.569738,20.169558,0 -99.569865,20.169735,0 -99.570209,20.169477,0 -99.570577,20.169131,0 -99.571086,20.170325,0 -99.571417,20.170218,0 -99.57138,20.16988,0 -99.571707,20.169732,0 -99.572311,20.169365,0 -99.572325,20.169108,0 -99.572627,20.169073,0 -99.572587,20.168373,0 -99.572605,20.168263,0 -99.572138,20.167883,0 -99.572561,20.164257,0 -99.574428,20.163034,0 -99.576264,20.162092,0 -99.576522,20.162836,0 -99.577233,20.16263,0 -99.577331,20.162609,0 -99.578269,20.162483,0 -99.578318,20.162472,0 -99.578393,20.162661,0 -99.579039,20.162555,0 -99.579096,20.162549,0 -99.579789,20.162444,0 -99.580159,20.162384,0 -99.581403,20.161997,0 -99.581307,20.164166,0 -99.582607,20.164444,0 -99.582168,20.162481,0 -99.582603,20.16322,0 -99.582855,20.163528,0 -99.583602,20.16444,0 -99.584189,20.165975,0 -99.58515,20.16633,0 -99.586755,20.167285,0 -99.593287,20.169021,0 -99.596851,20.169707,0 -99.599561,20.169673,0 -99.601435,20.166903,0 -99.602233,20.167919,0 -99.606517,20.164363,0 -99.608423,20.162781,0 -99.60879,20.162635,0 -99.608869,20.162604,0 -99.609719,20.162267,0 -99.60981,20.162231,0 -99.610601,20.161917,0 -99.610756,20.161855,0 -99.611476,20.161569,0 -99.611728,20.161469,0 -99.611545,20.160516,0 -99.611751,20.160426,0 -99.613061,20.15979,0 -99.612543,20.159361,0 -99.629379,20.145911,0 -99.630602,20.145694,0 -99.632012,20.146794,0 -99.634837,20.151532,0 -99.635339,20.151803,0 -99.635489,20.152378,0 -99.635376,20.153351,0 -99.63548,20.154335,0 -99.635658,20.155325,0 -99.635668,20.155916,0 -99.635822,20.156559,0 -99.635964,20.157059,0 -99.636036,20.157529,0 -99.636084,20.157905,0 -99.636122,20.158157,0 -99.637197,20.158031,0 -99.637543,20.158896,0 -99.639176,20.158732,0 -99.639637,20.159168,0 -99.639618,20.159685,0 -99.63938,20.160316,0 -99.639659,20.161104,0 -99.640147,20.161745,0 -99.640609,20.163189,0 -99.640862,20.16379,0 -99.64099,20.164229,0 -99.645943,20.163375,0 -99.650631,20.162775,0 -99.650863,20.163786,0 -99.653191,20.163491,0 -99.654364,20.16322,0 -99.655077,20.16309,0 -99.657787,20.167859,0 -99.657897,20.168039,0 -99.657694,20.168266,0 -99.65676,20.169121,0 -99.658071,20.175316,0 -99.658693,20.176236,0 -99.659145,20.178313,0 -99.659273,20.178812,0 -99.659416,20.179265,0 -99.659508,20.179711,0 -99.659727,20.180821,0 -99.660732,20.18078,0 -99.661039,20.179945,0 -99.66187,20.180479,0 -99.662478,20.180466,0 -99.662527,20.180461,0 -99.665811,20.179907,0 -99.666921,20.179715,0 -99.668233,20.179482,0 -99.669397,20.179299,0 -99.67199,20.172977,0 -99.672112,20.172825,0 -99.672421,20.171961,0 -99.674105,20.167548,0 -99.675284,20.166296,0 -99.676949,20.16247,0 -99.677168,20.163621,0 -99.677417,20.164788,0 -99.677665,20.166189,0 -99.677685,20.166838,0 -99.680539,20.169325,0 -99.680732,20.169555,0 -99.681013,20.169752,0 -99.681345,20.169948,0 -99.681644,20.170327,0 -99.682082,20.170589,0 -99.687524,20.171188,0 -99.698983,20.172448,0 -99.700951,20.172664,0 -99.701267,20.172602,0 -99.702013,20.172272,0 -99.703452,20.172154,0 -99.703511,20.172149,0 -99.703531,20.172126,0 -99.703849,20.171751,0 -99.703869,20.171728,0 -99.704233,20.171277,0 -99.704888,20.170485,0 -99.705443,20.169788,0 -99.705448,20.169781,0 -99.706681,20.168241,0 -99.706735,20.168212,0 -99.707458,20.167828,0 -99.709038,20.167012,0 -99.709396,20.166841,0 -99.710684,20.166227,0 -99.710699,20.166227,0 -99.711222,20.166227,0 -99.711711,20.166227,0 -99.714073,20.166257,0 -99.714642,20.166323,0 -99.716519,20.166592,0 -99.717672,20.166818,0 -99.719372,20.167138,0 -99.720096,20.167362,0 -99.720329,20.167503,0 -99.720908,20.167779,0 -99.722066,20.168665,0 -99.722572,20.169237,0 -99.723211,20.170483,0 -99.728397,20.171803,0 -99.729185,20.172048,0 -99.735805,20.177403,0 -99.736064,20.177506,0 -99.736416,20.17744,0 -99.73898,20.177506,0 -99.739124,20.177632,0 -99.739718,20.177675,0 -99.740108,20.177951,0 -99.740188,20.177862,0 -99.740336,20.177957,0 -99.740476,20.178152,0 -99.740534,20.179523,0 -99.740505,20.17973,0 -99.740472,20.179965,0 -99.740459,20.180053,0 -99.740631,20.180759,0 -99.740919,20.180984,0 -99.741131,20.181162,0 -99.741146,20.181401,0 -99.741257,20.181532,0 -99.741347,20.18161,0 -99.741452,20.181673,0 -99.741525,20.181757,0 -99.741626,20.181836,0 -99.741727,20.181902,0 -99.741793,20.18198,0 -99.741891,20.182082,0 -99.742049,20.182229,0 -99.742262,20.182315,0 -99.742418,20.182194,0 -99.742696,20.182395,0 -99.742502,20.182872,0 -99.742579,20.183572,0 -99.743235,20.183919,0 -99.743857,20.183815,0 -99.744313,20.183678,0 -99.744665,20.183754,0 -99.744671,20.183897,0 -99.74497,20.183981,0 -99.74528,20.184168,0 -99.745545,20.184323,0 -99.745708,20.184829,0 -99.745706,20.185284,0 -99.745938,20.185634,0 -99.746106,20.185872,0 -99.746369,20.185885,0 -99.746481,20.185972,0 -99.746738,20.186278,0 -99.747136,20.186555,0 -99.747325,20.186781,0 -99.747509,20.186955,0 -99.747731,20.187193,0 -99.748136,20.18758,0 -99.748335,20.187784,0 -99.749422,20.188794,0 -99.75042,20.188848,0 -99.75132,20.188911,0 -99.751823,20.189288,0 -99.752674,20.19002,0 -99.753732,20.190865,0 -99.754625,20.191686,0 -99.755524,20.192548,0 -99.757308,20.194329,0 -99.758805,20.195711,0 -99.760043,20.196818,0 -99.761214,20.197739,0 -99.767024,20.20248,0 -99.77044,20.205748,0 -99.770686,20.205997,0 -99.771349,20.206618,0 -99.77245,20.207739,0 -99.77394,20.209193,0 -99.774644,20.209932,0 -99.774687,20.209994,0 -99.77559,20.210902,0 -99.777462,20.212716,0 -99.785188,20.220026,0 -99.786158,20.220775,0 -99.787498,20.221921,0 -99.787569,20.221982,0 -99.788427,20.223112,0 -99.788603,20.22297,0 -99.788766,20.223002,0 -99.788923,20.223065,0 -99.78959,20.223492,0 -99.789827,20.223606,0 -99.790817,20.224363,0 -99.792367,20.225531,0 -99.793443,20.226356,0 -99.794501,20.227162,0 -99.795238,20.227741,0 -99.795224,20.227795,0 -99.794793,20.228311,0 -99.795126,20.228498,0 -99.795501,20.228783,0 -99.794258,20.229979,0 -99.793539,20.2314,0 -99.791517,20.230735,0 -99.791493,20.230893,0 -99.791483,20.230961,0 -99.791164,20.230868,0 -99.788708,20.229918,0 -99.788352,20.22988,0 -99.788239,20.229868,0 -99.788119,20.229985,0 -99.788068,20.230035,0 -99.788359,20.230381,0 -99.788382,20.231079,0 -99.7887,20.231757,0 -99.788846,20.232233,0 -99.789317,20.233254,0 -99.79004,20.234653,0 -99.790215,20.235678,0 -99.790131,20.235931,0 -99.790039,20.236087,0 -99.789908,20.236178,0 -99.789784,20.236337,0 -99.789683,20.236342,0 -99.789653,20.236378,0 -99.790115,20.236817,0 -99.790536,20.237219,0 -99.790528,20.23727,0 -99.790521,20.237315,0 -99.790418,20.237994,0 -99.790443,20.238016,0 -99.795096,20.242087,0 -99.795899,20.241855,0 -99.795935,20.241887,0 -99.796125,20.242133,0 -99.79617,20.24217,0 -99.797227,20.243061,0 -99.797431,20.243469,0 -99.797831,20.243761,0 -99.798748,20.244535,0 -99.800409,20.24605,0 -99.802451,20.247861,0 -99.803905,20.248955,0 -99.804971,20.249837,0 -99.808032,20.25255,0 -99.809916,20.254206,0 -99.813093,20.256951,0 -99.814678,20.258349,0 -99.815807,20.259332,0 -99.816958,20.26032,0 -99.819489,20.262546,0 -99.82174,20.264554,0 -99.822999,20.265635,0 -99.831292,20.272774,0 -99.83161,20.273125,0 -99.831659,20.273169,0 -99.8354,20.276505,0 -99.84189,20.281881,0 -99.843973,20.279705,0 -99.845982,20.277763,0 -99.844385,20.276331,0 -99.845011,20.275569,0 -99.845706,20.274856,0 -99.845945,20.274661,0 -99.84684,20.273784,0 -99.848555,20.272096,0 -99.849055,20.271967,0 -99.850344,20.272083,0 -99.849722,20.271658,0 -99.849642,20.271535,0 -99.849656,20.271471,0 -99.850365,20.271355,0 -99.851186,20.271111,0 -99.852104,20.270662,0 -99.852661,20.2704,0 -99.853409,20.270038,0 -99.85398,20.269738,0 -99.854434,20.269555,0 -99.854616,20.269526,0 -99.854764,20.26956,0 -99.855704,20.269926,0 -99.856799,20.268466,0 -99.857332,20.267695,0 -99.857648,20.267657,0 -99.857788,20.267749,0 -99.857853,20.267754,0 -99.857896,20.267727,0 -99.857892,20.267651,0 -99.857846,20.267597,0 -99.85776,20.267496,0 -99.857236,20.266946,0 -99.857232,20.266857,0 -99.857243,20.266833,0 -99.857285,20.266745,0 -99.857417,20.266558,0 -99.857809,20.266224,0 -99.858204,20.265632,0 -99.859016,20.266186,0 -99.859462,20.264864,0 -99.859541,20.264628,0 -99.859513,20.264884,0 -99.859106,20.268471,0 -99.862573,20.268986,0 -99.864798,20.269317,0 -99.866744,20.269606,0 -99.868635,20.269887,0 -99.870539,20.27017,0 -99.87255,20.270469,0 -99.874871,20.270814,0 -99.875212,20.270865,0 -99.87556,20.270998,0 -99.876754,20.271447,0 -99.877411,20.271395,0 -99.877651,20.271495,0 -99.881144,20.272825,0 -99.886369,20.274798,0 -99.888903,20.275726,0 -99.891121,20.276567,0 -99.894623,20.277924,0 -99.897377,20.278966,0 -99.899092,20.279593,0 -99.90151,20.280534,0 -99.902956,20.281284,0 -99.903953,20.281875,0 -99.905756,20.282874,0 -99.906053,20.283052,0 -99.907802,20.28409,0 -99.909723,20.285043,0 -99.910805,20.285223,0 -99.911391,20.285591,0 -99.911803,20.285523,0 -99.912368,20.285626,0 -99.913347,20.285867,0 -99.914382,20.285799,0 -99.914663,20.285708,0 -99.914775,20.285691,0 -99.915178,20.285515,0 -99.915571,20.285125,0 -99.915636,20.284662,0 -99.91589,20.284106,0 -99.916386,20.283613,0 -99.916733,20.283425,0 -99.917193,20.283047,0 -99.917752,20.28259,0 -99.918382,20.282188,0 -99.918444,20.282166,0 -99.918981,20.28198,0 -99.919381,20.281738,0 -99.919501,20.281665,0 -99.919875,20.281258,0 -99.919773,20.28029,0 -99.919815,20.28001,0 -99.919934,20.279578,0 -99.920253,20.278444,0 -99.920373,20.278009,0 -99.920621,20.277951,0 -99.920965,20.277887,0 -99.921184,20.277834,0 -99.921242,20.277502,0 -99.921209,20.277274,0 -99.921228,20.27705,0 -99.921267,20.276984,0 -99.921339,20.276958,0 -99.921442,20.276968,0 -99.921575,20.276983,0 -99.921684,20.276988,0 -99.921795,20.276947,0 -99.921916,20.276836,0 -99.922068,20.276765,0 -99.922225,20.276678,0 -99.922449,20.276561,0 -99.922821,20.276348,0 -99.922964,20.276318,0 -99.923072,20.276329,0 -99.923158,20.276332,0 -99.923262,20.276303,0 -99.923362,20.276262,0 -99.923472,20.276194,0 -99.923568,20.276126,0 -99.923642,20.276056,0 -99.923745,20.275913,0 -99.92384,20.275764,0 -99.924004,20.275208,0 -99.924089,20.274442,0 -99.923374,20.273572,0 -99.923698,20.273211,0 -99.925549,20.273052,0 -99.925695,20.272629,0 -99.92565,20.27244,0 -99.925613,20.272265,0 -99.925614,20.272084,0 -99.925652,20.271984,0 -99.925743,20.271828,0 -99.925893,20.271589,0 -99.926011,20.27142,0 -99.92604,20.271236,0 -99.926021,20.27108,0 -99.925958,20.270841,0 -99.925949,20.270658,0 -99.926046,20.270389,0 -99.926191,20.270076,0 -99.926225,20.270005,0 -99.92633,20.269837,0 -99.926409,20.26971,0 -99.926639,20.269433,0 -99.926872,20.269376,0 -99.927196,20.269318,0 -99.928408,20.269271,0 -99.928954,20.269254,0 -99.929032,20.269165,0 -99.929028,20.269028,0 -99.928982,20.26885,0 -99.928988,20.268737,0 -99.92906,20.268663,0 -99.929225,20.268593,0 -99.92955,20.268458,0 -99.929545,20.268049,0 -99.929544,20.267986,0 -99.929509,20.267827,0 -99.930135,20.266152,0 -99.930406,20.264877,0 -99.930108,20.263636,0 -99.930087,20.263552,0 -99.929736,20.262093,0 -99.929513,20.261165,0 -99.929488,20.26106,0 -99.929334,20.26042,0 -99.929189,20.258766,0 -99.928957,20.256113,0 -99.928798,20.2543,0 -99.928793,20.254241,0 -99.928688,20.253047,0 -99.928686,20.25276,0 -99.928638,20.251992,0 -99.928578,20.251908,0 -99.928542,20.251793,0 -99.928544,20.251683,0 -99.928599,20.251578,0 -99.92861,20.251504,0 -99.928534,20.251408,0 -99.928499,20.251274,0 -99.928498,20.251135,0 -99.928509,20.250953,0 -99.928504,20.25073,0 -99.928483,20.250517,0 -99.928485,20.250386,0 -99.928454,20.250279,0 -99.928467,20.250221,0 -99.928638,20.250228,0 -99.929699,20.250268,0 -99.93036,20.250294,0 -99.931171,20.250325,0 -99.932318,20.250369,0 -99.93266,20.250382,0 -99.933173,20.250364,0 -99.933962,20.250408,0 -99.934016,20.250364,0 -99.934045,20.250238,0 -99.934052,20.250133,0 -99.934081,20.249991,0 -99.934084,20.24977,0 -99.933979,20.249338,0 -99.93389,20.24896,0 -99.933762,20.248471,0 -99.933707,20.248118,0 -99.933674,20.247863,0 -99.933618,20.247546,0 -99.933577,20.247263,0 -99.933516,20.246872,0 -99.933453,20.246578,0 -99.93334,20.246312,0 -99.933019,20.246026,0 -99.932767,20.245651,0 -99.93271,20.245396,0 -99.932757,20.245134,0 -99.932819,20.244901,0 -99.932917,20.244717,0 -99.932901,20.244479,0 -99.932828,20.244287,0 -99.932635,20.244008,0 -99.932147,20.243544,0 -99.931977,20.243308,0 -99.93198,20.24321,0 -99.932008,20.243115,0 -99.932016,20.243018,0 -99.932005,20.242896,0 -99.931974,20.242806,0 -99.931801,20.242705,0 -99.931695,20.242605,0 -99.931397,20.242499,0 -99.93131,20.242429,0 -99.931186,20.242229,0 -99.931005,20.241886,0 -99.93062,20.241498,0 -99.930195,20.240909,0 -99.930008,20.240586,0 -99.929755,20.239528,0 -99.9297,20.238953,0 -99.929682,20.238689,0 -99.929648,20.238418,0 -99.929613,20.238167,0 -99.929583,20.237938,0 -99.929521,20.237474,0 -99.929508,20.236937,0 -99.929591,20.236278,0 -99.929548,20.235891,0 -99.929404,20.235496,0 -99.929173,20.23512,0 -99.929097,20.234863,0 -99.928966,20.234666,0 -99.928871,20.234499,0 -99.928814,20.234323,0 -99.928682,20.234166,0 -99.92862,20.23408,0 -99.928598,20.233942,0 -99.928613,20.233656,0 -99.928659,20.233415,0 -99.928566,20.232959,0 -99.928395,20.232687,0 -99.928129,20.232529,0 -99.927864,20.232485,0 -99.927535,20.232584,0 -99.927254,20.232756,0 -99.92686,20.233035,0 -99.926421,20.233106,0 -99.92591,20.233024,0 -99.925157,20.232643,0 -99.924161,20.231782,0 -99.923842,20.231586,0 -99.923614,20.231496,0 -99.923206,20.231427,0 -99.922615,20.231446,0 -99.922547,20.231366,0 -99.922382,20.231139,0 -99.922356,20.230844,0 -99.922402,20.230503,0 -99.922472,20.230207,0 -99.922615,20.22991,0 -99.922541,20.229524,0 -99.922489,20.228956,0 -99.922583,20.228478,0 -99.922726,20.228182,0 -99.922869,20.227931,0 -99.922818,20.227568,0 -99.922528,20.227365,0 -99.922141,20.227207,0 -99.92197,20.226708,0 -99.922136,20.226366,0 -99.922712,20.225863,0 -99.922967,20.225713,0 -99.921152,20.220635,0 -99.920892,20.220514,0 -99.920602,20.220356,0 -99.920455,20.220016,0 -99.920381,20.21963,0 -99.920534,20.219013,0 -99.92058,20.218677,0 -99.920552,20.218312,0 -99.920443,20.21797,0 -99.920409,20.217707,0 -99.920471,20.217363,0 -99.92046,20.217286,0 -99.920405,20.217221,0 -99.920343,20.21716,0 -99.920284,20.217114,0 -99.92017,20.217113,0 -99.920077,20.217133,0 -99.919853,20.217211,0 -99.919702,20.217265,0 -99.919595,20.217305,0 -99.919513,20.21735,0 -99.919419,20.217377,0 -99.919325,20.217338,0 -99.91925,20.217283,0 -99.919124,20.217111,0 -99.919067,20.216922,0 -99.919002,20.216716,0 -99.918867,20.21647,0 -99.918734,20.216289,0 -99.918663,20.216166,0 -99.918626,20.216002,0 -99.918613,20.215859,0 -99.918633,20.215719,0 -99.918667,20.215591,0 -99.918706,20.215498,0 -99.918745,20.215424,0 -99.918811,20.215324,0 -99.918869,20.21521,0 -99.9189,20.215127,0 -99.91886,20.21494,0 -99.91884,20.214808,0 -99.91878,20.214639,0 -99.918434,20.21405,0 -99.91835,20.213772,0 -99.918333,20.213621,0 -99.918332,20.213406,0 -99.918372,20.213212,0 -99.918436,20.21297,0 -99.918476,20.212732,0 -99.918501,20.21249,0 -99.918487,20.212277,0 -99.918437,20.211964,0 -99.918416,20.211868,0 -99.918415,20.211788,0 -99.918465,20.211785,0 -99.918584,20.211804,0 -99.919067,20.211855,0 -99.919888,20.211959,0 -99.921479,20.21216,0 -99.922695,20.212314,0 -99.924148,20.212497,0 -99.925132,20.212622,0 -99.925578,20.212678,0 -99.926047,20.212737,0 -99.926409,20.212783,0 -99.928153,20.213003,0 -99.928561,20.213055,0 -99.929872,20.21322,0 -99.930359,20.213282,0 -99.930599,20.213312,0 -99.931804,20.213465,0 -99.932094,20.213501,0 -99.93296,20.21361,0 -99.935672,20.213953,0 -99.935836,20.213974,0 -99.936657,20.214077,0 -99.937367,20.214167,0 -99.940149,20.214518,0 -99.940831,20.214605,0 -99.941605,20.214702,0 -99.941891,20.214738,0 -99.942727,20.214844,0 -99.94424,20.215035,0 -99.945828,20.215235,0 -99.946669,20.215342,0 -99.947665,20.215467,0 -99.948559,20.21558,0 -99.949636,20.215717,0 -99.950933,20.215904,0 -99.951032,20.216137,0 -99.951149,20.216482,0 -99.951216,20.216669,0 -99.951245,20.216851,0 -99.951319,20.21705,0 -99.951468,20.217336,0 -99.951555,20.217517,0 -99.951631,20.217738,0 -99.951683,20.217775,0 -99.95173,20.217798,0 -99.951737,20.217884,0 -99.951739,20.217977,0 -99.95173,20.218075,0 -99.95174,20.218153,0 -99.951727,20.218441,0 -99.951693,20.21873,0 -99.951601,20.218903,0 -99.951508,20.219139,0 -99.951391,20.219438,0 -99.951399,20.219608,0 -99.951454,20.219726,0 -99.951559,20.219816,0 -99.951678,20.219933,0 -99.95176,20.22005,0 -99.951807,20.22019,0 -99.951879,20.220349,0 -99.951911,20.220507,0 -99.951861,20.220823,0 -99.951768,20.221116,0 -99.95173,20.221352,0 -99.951666,20.221595,0 -99.951697,20.221815,0 -99.951735,20.222124,0 -99.951727,20.222354,0 -99.951706,20.222462,0 -99.951609,20.222586,0 -99.951502,20.222743,0 -99.951435,20.222929,0 -99.951426,20.223121,0 -99.951542,20.223249,0 -99.951651,20.2234,0 -99.951572,20.223592,0 -99.951434,20.223816,0 -99.951198,20.223992,0 -99.951169,20.224143,0 -99.95116,20.224267,0 -99.951141,20.224444,0 -99.95109,20.2247,0 -99.951015,20.224955,0 -99.950857,20.22522,0 -99.950735,20.225486,0 -99.950696,20.225697,0 -99.9508,20.225899,0 -99.950796,20.226166,0 -99.95079,20.226815,0 -99.950941,20.227099,0 -99.951185,20.227282,0 -99.951301,20.227426,0 -99.951321,20.227554,0 -99.951339,20.227751,0 -99.951372,20.228171,0 -99.951441,20.228413,0 -99.951478,20.228618,0 -99.951553,20.228838,0 -99.951565,20.229021,0 -99.951533,20.229182,0 -99.951514,20.229337,0 -99.951517,20.229534,0 -99.951602,20.229706,0 -99.951797,20.229993,0 -99.952303,20.23045,0 -99.952397,20.230598,0 -99.95242,20.230711,0 -99.952442,20.23092,0 -99.952395,20.23126,0 -99.952308,20.231651,0 -99.952289,20.232047,0 -99.952289,20.232425,0 -99.952239,20.232693,0 -99.952171,20.232913,0 -99.952127,20.233121,0 -99.952241,20.233672,0 -99.952215,20.233905,0 -99.952278,20.234076,0 -99.95233,20.234288,0 -99.952358,20.234639,0 -99.952438,20.234797,0 -99.952338,20.234988,0 -99.952342,20.235338,0 -99.952485,20.235694,0 -99.952591,20.236221,0 -99.952585,20.236545,0 -99.952536,20.236801,0 -99.952508,20.237121,0 -99.952536,20.237387,0 -99.952648,20.23807,0 -99.952761,20.238544,0 -99.952739,20.238822,0 -99.952672,20.239977,0 -99.952716,20.240269,0 -99.952738,20.240435,0 -99.952839,20.240602,0 -99.95294,20.240684,0 -99.953042,20.240748,0 -99.953216,20.240799,0 -99.953335,20.240885,0 -99.953458,20.241025,0 -99.953516,20.241139,0 -99.953546,20.24133,0 -99.953587,20.241466,0 -99.953663,20.241599,0 -99.95387,20.241727,0 -99.954607,20.242043,0 -99.954606,20.242125,0 -99.954614,20.242235,0 -99.954654,20.242326,0 -99.954723,20.242433,0 -99.954865,20.242553,0 -99.955114,20.242716,0 -99.95538,20.242856,0 -99.955465,20.242995,0 -99.955451,20.243131,0 -99.955461,20.24328,0 -99.955487,20.243483,0 -99.955522,20.243748,0 -99.955609,20.243895,0 -99.955681,20.244029,0 -99.955722,20.244218,0 -99.955755,20.244476,0 -99.955811,20.2447,0 -99.955881,20.244938,0 -99.955911,20.245216,0 -99.955973,20.245401,0 -99.956082,20.245621,0 -99.956145,20.245855,0 -99.956088,20.246171,0 -99.955989,20.246325,0 -99.95586,20.246535,0 -99.955863,20.247014,0 -99.955957,20.247719,0 -99.95626,20.248422,0 -99.956669,20.24903,0 -99.956992,20.249766,0 -99.957247,20.250259,0 -99.957507,20.250774,0 -99.957814,20.251262,0 -99.958159,20.251765,0 -99.958517,20.252243,0 -99.958889,20.252722,0 -99.959531,20.253225,0 -99.960562,20.254326,0 -99.960745,20.254534,0 -99.960963,20.254671,0 -99.96125,20.254749,0 -99.961384,20.254737,0 -99.961489,20.254704,0 -99.96161,20.254715,0 -99.96189,20.254787,0 -99.96231,20.254905,0 -99.962374,20.254943,0 -99.962435,20.255003,0 -99.962606,20.255258,0 -99.962771,20.25555,0 -99.963025,20.255655,0 -99.963356,20.255658,0 -99.963506,20.255689,0 -99.963615,20.25578,0 -99.963805,20.255977,0 -99.964006,20.256236,0 -99.964294,20.256364,0 -99.964744,20.256421,0 -99.965308,20.256756,0 -99.965751,20.25706,0 -99.966066,20.257307,0 -99.96642,20.257388,0 -99.966808,20.257596,0 -99.967169,20.257785,0 -99.967667,20.257936,0 -99.967982,20.257962,0 -99.968327,20.258019,0 -99.96849,20.258074,0 -99.968647,20.258145,0 -99.968785,20.258211,0 -99.968859,20.258274,0 -99.969087,20.258644,0 -99.96965,20.259187,0 -99.970216,20.259573,0 -99.97112,20.26017,0 -99.971684,20.260459,0 -99.972249,20.260906,0 -99.972712,20.261404,0 -99.972822,20.261555,0 -99.972865,20.261719,0 -99.972865,20.262018,0 -99.972902,20.262336,0 -99.973244,20.26265,0 -99.973525,20.262728,0 -99.973947,20.262752,0 -99.9742,20.262804,0 -99.974399,20.263068,0 -99.974285,20.263326,0 -99.974121,20.263679,0 -99.974163,20.263781,0 -99.974288,20.26391,0 -99.97443,20.264154,0 -99.97453,20.264361,0 -99.974549,20.264552,0 -99.974494,20.26487,0 -99.974549,20.26521,0 -99.974676,20.265526,0 -99.974481,20.265898,0 -99.974173,20.266143,0 -99.974092,20.266265,0 -99.974117,20.266417,0 -99.974152,20.266473,0 -99.974396,20.266543,0 -99.974936,20.266717,0 -99.975336,20.266958,0 -99.975374,20.26718,0 -99.975397,20.267442,0 -99.97537,20.267665,0 -99.975255,20.267869,0 -99.97486,20.26807,0 -99.974699,20.268236,0 -99.974573,20.268478,0 -99.974518,20.268667,0 -99.974445,20.268859,0 -99.974404,20.269203,0 -99.97442,20.269365,0 -99.974441,20.269575,0 -99.974565,20.269687,0 -99.974762,20.269815,0 -99.975104,20.269905,0 -99.975423,20.269963,0 -99.975822,20.270012,0 -99.976204,20.270204,0 -99.976501,20.270562,0 -99.976594,20.270903,0 -99.976504,20.271156,0 -99.976439,20.271318,0 -99.97636,20.27157,0 -99.97635,20.271836,0 -99.976542,20.272042,0 -99.976814,20.272257,0 -99.977031,20.272375,0 -99.977286,20.272454,0 -99.977514,20.272462,0 -99.977657,20.27241,0 -99.977771,20.272316,0 -99.977885,20.272192,0 -99.978032,20.271929,0 -99.978297,20.271719,0 -99.978683,20.271476,0 -99.978929,20.271369,0 -99.979088,20.271326,0 -99.979262,20.271384,0 -99.979525,20.27151,0 -99.979979,20.271628,0 -99.980597,20.27165,0 -99.980955,20.271557,0 -99.981096,20.271494,0 -99.981184,20.27137,0 -99.98127,20.271137,0 -99.981447,20.270692,0 -99.981646,20.269924,0 -99.981808,20.269318,0 -99.981941,20.268937,0 -99.982042,20.268646,0 -99.982091,20.26841,0 -99.982174,20.268184,0 -99.98228,20.268002,0 -99.982444,20.267675,0 -99.98259,20.26742,0 -99.982746,20.267067,0 -99.983066,20.266435,0 -99.983201,20.26618,0 -99.983335,20.266043,0 -99.983463,20.265956,0 -99.984002,20.265637,0 -99.984167,20.26551,0 -99.984635,20.265181,0 -99.984943,20.2648,0 -99.985087,20.264295,0 -99.985203,20.263659,0 -99.985345,20.263295,0 -99.985514,20.262835,0 -99.985679,20.262264,0 -99.985637,20.262022,0 -99.985594,20.261526,0 -99.985461,20.261068,0 -99.985532,20.260599,0 -99.985794,20.260279,0 -99.986034,20.259907,0 -99.986139,20.259348,0 -99.986139,20.259171,0 -99.986194,20.258984,0 -99.986192,20.258781,0 -99.986223,20.258641,0 -99.986233,20.25833,0 -99.986292,20.258018,0 -99.986317,20.257668,0 -99.986431,20.257419,0 -99.986464,20.257068,0 -99.986376,20.256701,0 -99.985811,20.256253,0 -99.984776,20.255535,0 -99.983719,20.254924,0 -99.983442,20.25476,0 -99.983102,20.254724,0 -99.98254,20.254655,0 -99.98209,20.254551,0 -99.981855,20.254373,0 -99.981659,20.254171,0 -99.981188,20.253538,0 -99.981001,20.2533,0 -99.980874,20.253072,0 -99.980851,20.252913,0 -99.980881,20.252716,0 -99.980699,20.252444,0 -99.98074,20.252154,0 -99.980767,20.251956,0 -99.980771,20.251744,0 -99.9807,20.251553,0 -99.980697,20.251419,0 -99.980697,20.251309,0 -99.980658,20.2512,0 -99.980681,20.251055,0 -99.980586,20.250814,0 -99.980489,20.250359,0 -99.980215,20.249884,0 -99.979705,20.248576,0 -99.979505,20.248015,0 -99.979424,20.247794,0 -99.979379,20.247607,0 -99.979364,20.247455,0 -99.979408,20.247303,0 -99.979497,20.247112,0 -99.979654,20.246948,0 -99.979951,20.246691,0 -99.980184,20.246503,0 -99.980569,20.246238,0 -99.980835,20.246027,0 -99.981117,20.24566,0 -99.981251,20.245451,0 -99.981346,20.245267,0 -99.981368,20.245087,0 -99.981368,20.244856,0 -99.981321,20.244549,0 -99.981278,20.244329,0 -99.981239,20.244144,0 -99.981158,20.243944,0 -99.980998,20.243804,0 -99.980913,20.243709,0 -99.980783,20.243601,0 -99.98063,20.243509,0 -99.980425,20.243432,0 -99.980261,20.24331,0 -99.980206,20.243203,0 -99.98024,20.243081,0 -99.980308,20.242875,0 -99.980303,20.242715,0 -99.980273,20.242554,0 -99.980242,20.242416,0 -99.980159,20.242253,0 -99.97995,20.241866,0 -99.979474,20.24147,0 -99.979108,20.240872,0 -99.978754,20.240305,0 -99.978622,20.239857,0 -99.978506,20.239638,0 -99.97839,20.239436,0 -99.978334,20.239213,0 -99.978266,20.238903,0 -99.978123,20.238833,0 -99.977909,20.238988,0 -99.977711,20.239115,0 -99.977314,20.239458,0 -99.976944,20.239667,0 -99.9767,20.239689,0 -99.976456,20.239693,0 -99.976122,20.239676,0 -99.975914,20.23959,0 -99.975752,20.239433,0 -99.975611,20.239317,0 -99.975382,20.2392,0 -99.975209,20.239053,0 -99.975048,20.238813,0 -99.974914,20.238423,0 -99.974933,20.238205,0 -99.974878,20.237938,0 -99.974788,20.237735,0 -99.974712,20.237598,0 -99.974655,20.237474,0 -99.974577,20.237398,0 -99.974467,20.237385,0 -99.974349,20.237364,0 -99.974208,20.237355,0 -99.974016,20.237322,0 -99.973852,20.237242,0 -99.973706,20.237107,0 -99.973579,20.237027,0 -99.97349,20.237024,0 -99.973299,20.236858,0 -99.973261,20.236559,0 -99.97331,20.236261,0 -99.973234,20.235653,0 -99.973324,20.235214,0 -99.973475,20.234967,0 -99.973716,20.23462,0 -99.973941,20.234227,0 -99.974173,20.233909,0 -99.974368,20.233542,0 -99.974453,20.233321,0 -99.974652,20.233173,0 -99.974931,20.233,0 -99.975211,20.232827,0 -99.975402,20.232663,0 -99.975609,20.232479,0 -99.975698,20.232329,0 -99.975668,20.232241,0 -99.975463,20.232092,0 -99.975125,20.231798,0 -99.975013,20.23172,0 -99.974569,20.231409,0 -99.97426,20.231265,0 -99.974077,20.231063,0 -99.973832,20.230778,0 -99.973562,20.230451,0 -99.973466,20.230198,0 -99.973409,20.229979,0 -99.973335,20.229794,0 -99.973278,20.229675,0 -99.973144,20.229549,0 -99.972989,20.229423,0 -99.972862,20.229358,0 -99.972815,20.229201,0 -99.972775,20.22905,0 -99.972795,20.228843,0 -99.972789,20.228628,0 -99.972802,20.228381,0 -99.972905,20.228077,0 -99.972872,20.227846,0 -99.972765,20.227682,0 -99.972646,20.227556,0 -99.972529,20.227474,0 -99.972392,20.227404,0 -99.972252,20.227409,0 -99.972076,20.227447,0 -99.971909,20.227472,0 -99.971777,20.227477,0 -99.97172,20.227415,0 -99.971744,20.227285,0 -99.971694,20.227084,0 -99.971595,20.226932,0 -99.971494,20.226878,0 -99.971357,20.226847,0 -99.971248,20.22681,0 -99.971165,20.226686,0 -99.971095,20.226439,0 -99.971071,20.226206,0 -99.971104,20.226078,0 -99.971283,20.2258,0 -99.971509,20.225294,0 -99.971612,20.224967,0 -99.971626,20.224817,0 -99.971518,20.224644,0 -99.971322,20.224485,0 -99.971199,20.224402,0 -99.971014,20.224141,0 -99.970738,20.223857,0 -99.970395,20.223416,0 -99.970104,20.222938,0 -99.969801,20.222633,0 -99.969636,20.222239,0 -99.969546,20.222093,0 -99.969387,20.221975,0 -99.969196,20.221914,0 -99.969039,20.221844,0 -99.968882,20.221751,0 -99.968775,20.221616,0 -99.968671,20.221457,0 -99.968641,20.221315,0 -99.968619,20.2212,0 -99.968614,20.221043,0 -99.968661,20.220873,0 -99.968769,20.220754,0 -99.968951,20.220622,0 -99.969362,20.220357,0 -99.96956,20.22021,0 -99.969688,20.220107,0 -99.9698,20.219995,0 -99.969875,20.219877,0 -99.969893,20.219763,0 -99.969907,20.219628,0 -99.969934,20.21948,0 -99.969958,20.219289,0 -99.969981,20.219059,0 -99.970025,20.218849,0 -99.969889,20.218448,0 -99.969785,20.218392,0 -99.969679,20.218385,0 -99.969458,20.218368,0 -99.969217,20.218335,0 -99.96894,20.218314,0 -99.968605,20.218378,0 -99.968446,20.218376,0 -99.96818,20.218208,0 -99.967891,20.218129,0 -99.967631,20.21805,0 -99.967408,20.217931,0 -99.967141,20.217866,0 -99.966839,20.217843,0 -99.966571,20.217871,0 -99.966332,20.217836,0 -99.966101,20.217753,0 -99.965936,20.217671,0 -99.965805,20.217573,0 -99.965644,20.217417,0 -99.965524,20.217259,0 -99.965374,20.216989,0 -99.965136,20.216789,0 -99.964883,20.216635,0 -99.964644,20.216541,0 -99.964504,20.216298,0 -99.96448,20.216075,0 -99.964564,20.215774,0 -99.96472,20.215409,0 -99.964826,20.215004,0 -99.964902,20.214621,0 -99.964932,20.214301,0 -99.964859,20.21411,0 -99.96495,20.213945,0 -99.965079,20.213745,0 -99.965422,20.21356,0 -99.965638,20.213396,0 -99.965755,20.213184,0 -99.96576,20.21282,0 -99.965889,20.212265,0 -99.96601,20.21182,0 -99.966147,20.211424,0 -99.966258,20.211044,0 -99.966325,20.210659,0 -99.966248,20.210299,0 -99.966198,20.209901,0 -99.966134,20.209512,0 -99.966155,20.209274,0 -99.966315,20.209022,0 -99.966552,20.208737,0 -99.966767,20.20849,0 -99.966917,20.208228,0 -99.966976,20.20796,0 -99.966955,20.207769,0 -99.96682,20.207453,0 -99.966566,20.207166,0 -99.966304,20.206838,0 -99.966072,20.206484,0 -99.965808,20.206169,0 -99.965527,20.205875,0 -99.96515,20.205607,0 -99.964803,20.205362,0 -99.964589,20.205099,0 -99.964451,20.204881,0 -99.964317,20.204641,0 -99.964363,20.204393,0 -99.964488,20.204131,0 -99.964578,20.203876,0 -99.964761,20.203573,0 -99.964946,20.203243,0 -99.96528,20.202783,0 -99.965386,20.202343,0 -99.965539,20.201938,0 -99.965543,20.201696,0 -99.965381,20.20146,0 -99.96523,20.201158,0 -99.964989,20.201003,0 -99.964739,20.200988,0 -99.964418,20.200996,0 -99.964103,20.201064,0 -99.96381,20.201313,0 -99.963461,20.201447,0 -99.963289,20.201454,0 -99.963024,20.201336,0 -99.962956,20.201155,0 -99.962893,20.200983,0 -99.962788,20.200948,0 -99.962676,20.201008,0 -99.962532,20.201187,0 -99.962415,20.201512,0 -99.961949,20.201638,0 -99.961142,20.201696,0 -99.960841,20.201683,0 -99.960668,20.20168,0 -99.960602,20.201627,0 -99.96067,20.201474,0 -99.960899,20.201071,0 -99.961006,20.200729,0 -99.961015,20.200415,0 -99.960801,20.200111,0 -99.960415,20.199881,0 -99.959825,20.199839,0 -99.959725,20.199831,0 -99.958209,20.198299,0 -99.95687,20.196931,0 -99.956106,20.196841,0 -99.956215,20.195226,0 -99.95581,20.194704,0 -99.955104,20.194458,0 -99.954825,20.194313,0 -99.954715,20.19412,0 -99.954429,20.193804,0 -99.953705,20.192736,0 -99.952898,20.192469,0 -99.952768,20.192657,0 -99.95235,20.192484,0 -99.951007,20.191294,0 -99.949823,20.191295,0 -99.949102,20.191463,0 -99.948632,20.191328,0 -99.948081,20.189936,0 -99.947119,20.189582,0 -99.946336,20.189243,0 -99.946699,20.188146,0 -99.947681,20.187789,0 -99.947948,20.1871,0 -99.948052,20.186833,0 -99.94807,20.185953,0 -99.947754,20.185494,0 -99.947446,20.184953,0 -99.947071,20.184508,0 -99.946426,20.184192,0 -99.945579,20.183878,0 -99.944728,20.183053,0 -99.944082,20.18245,0 -99.943268,20.182071,0 -99.94242,20.181725,0 -99.941575,20.181889,0 -99.940492,20.182215,0 -99.940121,20.18263,0 -99.939542,20.182123,0 -99.938429,20.181905,0 -99.937819,20.181781,0 -99.937447,20.181751,0 -99.937135,20.181732,0 -99.93757,20.181303,0 -99.939093,20.180993,0 -99.940354,20.180027,0 -99.941183,20.179015,0 -99.939814,20.176239,0 -99.938088,20.175516,0 -99.938131,20.175337,0 -99.936771,20.174534,0 -99.935649,20.174096,0 -99.934625,20.17384,0 -99.933404,20.173905,0 -99.932345,20.174012,0 -99.932254,20.173356,0 -99.933348,20.17265,0 -99.93392,20.1722,0 -99.934019,20.171755,0 -99.93437,20.171231,0 -99.934887,20.170589,0 -99.935294,20.169938,0 -99.935753,20.169312,0 -99.935634,20.167877,0 -99.935206,20.165253,0 -99.932623,20.164929,0 -99.932452,20.164617,0 -99.932227,20.164166,0 -99.931062,20.163444,0 -99.930418,20.163408,0 -99.929949,20.163493,0 -99.929527,20.163404,0 -99.927206,20.162801,0 -99.927039,20.161293,0 -99.927057,20.160593,0 -99.926325,20.159599,0 -99.923044,20.159469,0 -99.922379,20.159152,0 -99.921903,20.15874,0 -99.921758,20.157991,0 -99.921963,20.157463,0 -99.922178,20.157,0 -99.922423,20.156792,0 -99.922881,20.156616,0 -99.92403,20.157009,0 -99.925019,20.157014,0 -99.926425,20.157013,0 -99.927176,20.157142,0 -99.927695,20.15778,0 -99.928157,20.158575,0 -99.928522,20.159276,0 -99.929063,20.160368,0 -99.929259,20.161328,0 -99.929746,20.161706,0 -99.930451,20.161636,0 -99.930959,20.16159,0 -99.931329,20.161356,0 -99.932216,20.161394,0 -99.932722,20.161878,0 -99.933427,20.162304,0 -99.934104,20.162743,0 -99.935012,20.162916,0 -99.935724,20.162939,0 -99.936213,20.162523,0 -99.936513,20.161819,0 -99.936476,20.161309,0 -99.936471,20.160511,0 -99.936315,20.158337,0 -99.936248,20.156994,0 -99.93715,20.155146,0 -99.93758,20.154151,0 -99.937717,20.153834,0 -99.937689,20.15366,0 -99.937577,20.152973,0 -99.937064,20.152178,0 -99.93658,20.151264,0 -99.936435,20.150982,0 -99.936346,20.15081,0 -99.936342,20.150076,0 -99.936053,20.149398,0 -99.935433,20.148861,0 -99.935078,20.148416,0 -99.934805,20.148179,0 -99.933912,20.147397,0 -99.933392,20.146829,0 -99.932797,20.14619,0 -99.931029,20.14396,0 -99.930754,20.143132,0 -99.931088,20.142441,0 -99.931626,20.141864,0 -99.932077,20.14157,0 -99.932533,20.140869,0 -99.933207,20.140419,0 -99.934049,20.139872,0 -99.934862,20.138877,0 -99.935588,20.138292,0 -99.936465,20.137637,0 -99.937179,20.137238,0 -99.937717,20.136726,0 -99.938335,20.136135,0 -99.938958,20.135478,0 -99.939175,20.135292,0 -99.939122,20.135186,0 -99.938913,20.134769,0 -99.93919,20.134279,0 -99.939698,20.134231,0 -99.939811,20.133558,0 -99.939675,20.132822,0 -99.940361,20.132653,0 -99.940803,20.132008,0 -99.940847,20.130993,0 -99.940647,20.129895,0 -99.94049,20.129081,0 -99.940459,20.128147,0 -99.940472,20.126544,0 -99.940279,20.125436,0 -99.940588,20.124879,0 -99.940888,20.124175,0 -99.941013,20.123673,0 -99.941186,20.12312,0 -99.941219,20.122568,0 -99.941598,20.121722,0 -99.941877,20.121017,0 -99.942105,20.120359,0 -99.942206,20.1201,0 -99.942135,20.119464,0 -99.941765,20.118944,0 -99.941095,20.118375,0 -99.940376,20.117712,0 -99.939632,20.117072,0 -99.939185,20.116693,0 -99.938838,20.116338,0 -99.938442,20.115959,0 -99.937898,20.115179,0 -99.937652,20.114589,0 -99.937186,20.113338,0 -99.936952,20.110793,0 -99.937031,20.110111,0 -99.937418,20.107946,0 -99.93748,20.106063,0 -99.937638,20.104556,0 -99.937421,20.103354,0 -99.936834,20.101538,0 -99.936417,20.100429,0 -99.936051,20.099061,0 -99.935534,20.098092,0 -99.934473,20.096273,0 -99.934077,20.095753,0 -99.933235,20.094807,0 -99.932344,20.093883,0 -99.931772,20.093527,0 -99.931053,20.093005,0 -99.929366,20.09163,0 -99.928995,20.09111,0 -99.928749,20.090543,0 -99.928503,20.090047,0 -99.928381,20.08967,0 -99.928209,20.089292,0 -99.928111,20.088891,0 -99.927442,20.088346,0 -99.92709,20.087407,0 -99.925665,20.087136,0 -99.925037,20.08667,0 -99.924329,20.085544,0 -99.923767,20.084135,0 -99.923505,20.08277,0 -99.92352,20.081686,0 -99.923733,20.080411,0 -99.923992,20.078728,0 -99.924361,20.078626,0 -99.927351,20.067065,0 -99.926337,20.064331,0 -99.926396,20.064331,0 -99.928804,20.06433,0 -99.933556,20.064329,0 -99.943524,20.062914,0 -99.951914,20.061722,0 -99.956969,20.061004,0 -99.961478,20.06229,0 -99.962549,20.061705,0 -99.962731,20.06128,0 -99.962928,20.061088,0 -99.964148,20.060433,0 -99.969067,20.061864,0 -99.97093,20.061311,0 -99.971516,20.061137,0 -99.972294,20.060907,0 -99.973282,20.060613,0 -99.973846,20.060515,0 -99.974616,20.06036,0 -99.974784,20.060335,0 -99.97627,20.060093,0 -99.976404,20.060071,0 -99.977406,20.05993,0 -99.977604,20.059946,0 -99.978324,20.059798,0 -99.979198,20.059712,0 -99.979258,20.059706,0 -99.979646,20.059678,0 -99.980193,20.059147,0 -99.980444,20.060382,0 -99.980418,20.060909,0 -99.980346,20.061251,0 -99.980206,20.062048,0 -99.980162,20.062424,0 -99.980144,20.0625,0 -99.980005,20.062627,0 -99.980093,20.063116,0 </coordinates> </LinearRing> </outerBoundaryIs> </Polygon> </Placemark> <Placemark> <name>Equipo 3</name> <styleUrl>#poly-0F9D58-1000-156</styleUrl> <Polygon> <outerBoundaryIs> <LinearRing> <tessellate>1</tessellate> <coordinates> -98.637173,19.246008,0 -98.636549,19.246737,0 -98.635961,19.247327,0 -98.6353,19.247673,0 -98.634713,19.24809,0 -98.634053,19.248506,0 -98.633428,19.24913,0 -98.632694,19.24979,0 -98.632362,19.25045,0 -98.632324,19.25125,0 -98.632396,19.251876,0 -98.632495,19.252208,0 -98.632428,19.25275,0 -98.632295,19.253342,0 -98.631897,19.253896,0 -98.631405,19.254236,0 -98.630724,19.254593,0 -98.630251,19.254879,0 -98.629854,19.255237,0 -98.629475,19.255684,0 -98.629228,19.256185,0 -98.628982,19.256615,0 -98.628698,19.256901,0 -98.628339,19.257098,0 -98.628055,19.25724,0 -98.627525,19.257759,0 -98.62789,19.257942,0 -98.628144,19.25821,0 -98.628339,19.258427,0 -98.628475,19.258665,0 -98.628651,19.2595,0 -98.628696,19.260157,0 -98.6287,19.260785,0 -98.628943,19.261326,0 -98.629255,19.261874,0 -98.630337,19.262568,0 -98.631075,19.262699,0 -98.631319,19.263268,0 -98.631871,19.263937,0 -98.638091,19.275658,0 -98.641147,19.281417,0 -98.645776,19.290139,0 -98.651163,19.300688,0 -98.653341,19.304952,0 -98.653774,19.3058,0 -98.662133,19.322164,0 -98.663476,19.324792,0 -98.661066,19.339247,0 -98.660495,19.351262,0 -98.660588,19.351736,0 -98.660226,19.351583,0 -98.658745,19.350721,0 -98.657097,19.349828,0 -98.656769,19.349696,0 -98.655953,19.349453,0 -98.655342,19.34936,0 -98.654949,19.3493,0 -98.653758,19.349334,0 -98.652618,19.349517,0 -98.651475,19.349952,0 -98.650487,19.350516,0 -98.649591,19.351027,0 -98.648922,19.351427,0 -98.647668,19.351848,0 -98.646692,19.351953,0 -98.644479,19.352,0 -98.644371,19.356267,0 -98.644519,19.35747,0 -98.644306,19.358231,0 -98.643713,19.35827,0 -98.643248,19.358042,0 -98.642078,19.357571,0 -98.641289,19.357383,0 -98.640662,19.357096,0 -98.640278,19.357004,0 -98.63984,19.356913,0 -98.639652,19.356874,0 -98.639198,19.356938,0 -98.638955,19.357121,0 -98.638138,19.35856,0 -98.638207,19.358689,0 -98.63808,19.358911,0 -98.638479,19.359271,0 -98.638781,19.359382,0 -98.639179,19.359723,0 -98.639174,19.359898,0 -98.639108,19.360516,0 -98.640029,19.361457,0 -98.640054,19.361974,0 -98.640114,19.36237,0 -98.640168,19.362428,0 -98.640293,19.363463,0 -98.640303,19.36375,0 -98.640393,19.364527,0 -98.640402,19.364555,0 -98.640396,19.364716,0 -98.641265,19.364833,0 -98.64214,19.364373,0 -98.643175,19.364379,0 -98.643565,19.364218,0 -98.64398,19.364196,0 -98.644589,19.364174,0 -98.644881,19.364336,0 -98.64532,19.364499,0 -98.646172,19.364824,0 -98.646953,19.364802,0 -98.647221,19.364734,0 -98.647684,19.364619,0 -98.647977,19.36455,0 -98.64827,19.364458,0 -98.648563,19.364389,0 -98.648904,19.364344,0 -98.649416,19.364299,0 -98.649636,19.364299,0 -98.64983,19.364346,0 -98.65005,19.364415,0 -98.65022,19.364485,0 -98.65044,19.364555,0 -98.650586,19.364648,0 -98.650585,19.364763,0 -98.650755,19.365133,0 -98.650828,19.365273,0 -98.651021,19.365611,0 -98.651064,19.365732,0 -98.651323,19.366208,0 -98.651802,19.366873,0 -98.652441,19.36752,0 -98.653381,19.368433,0 -98.654059,19.369403,0 -98.654378,19.370296,0 -98.654596,19.371227,0 -98.654795,19.371834,0 -98.655242,19.372712,0 -98.655543,19.373452,0 -98.655642,19.374264,0 -98.655934,19.375012,0 -98.656153,19.375895,0 -98.656134,19.376704,0 -98.656007,19.37751,0 -98.656124,19.378207,0 -98.65638,19.378955,0 -98.656568,19.379698,0 -98.656849,19.380378,0 -98.657623,19.381868,0 -98.65813,19.382709,0 -98.656422,19.38603,0 -98.656438,19.38623,0 -98.656578,19.386453,0 -98.656715,19.386751,0 -98.656756,19.387164,0 -98.656789,19.387852,0 -98.656817,19.388189,0 -98.657011,19.388836,0 -98.657635,19.390582,0 -98.657712,19.390789,0 -98.657546,19.3926,0 -98.657426,19.39391,0 -98.657137,19.397078,0 -98.658727,19.39732,0 -98.659725,19.397494,0 -98.660423,19.397755,0 -98.661471,19.398249,0 -98.663278,19.39927,0 -98.665086,19.400291,0 -98.666045,19.400935,0 -98.667004,19.401578,0 -98.668205,19.402247,0 -98.669405,19.402916,0 -98.671688,19.403564,0 -98.67397,19.404212,0 -98.674819,19.404239,0 -98.675601,19.404265,0 -98.676313,19.404288,0 -98.677301,19.404321,0 -98.678077,19.404346,0 -98.6796,19.404396,0 -98.68059,19.404428,0 -98.681808,19.404468,0 -98.68276,19.404499,0 -98.683809,19.404533,0 -98.68523,19.404579,0 -98.686381,19.404867,0 -98.687687,19.405194,0 -98.688494,19.405395,0 -98.689142,19.405557,0 -98.690144,19.405808,0 -98.691438,19.406215,0 -98.692732,19.406621,0 -98.693868,19.406899,0 -98.695004,19.407176,0 -98.695873,19.407462,0 -98.696743,19.407748,0 -98.697161,19.407983,0 -98.697578,19.408218,0 -98.698103,19.408396,0 -98.698628,19.408574,0 -98.69974,19.409058,0 -98.700851,19.409542,0 -98.701877,19.409887,0 -98.702903,19.410233,0 -98.703737,19.410472,0 -98.704572,19.410712,0 -98.705417,19.410791,0 -98.706263,19.410871,0 -98.707387,19.410991,0 -98.708523,19.411112,0 -98.709608,19.411228,0 -98.710019,19.411272,0 -98.710696,19.411345,0 -98.711533,19.411434,0 -98.71268,19.411557,0 -98.712953,19.411586,0 -98.713812,19.410528,0 -98.714116,19.410154,0 -98.714671,19.40947,0 -98.715291,19.408852,0 -98.715704,19.40845,0 -98.716118,19.408049,0 -98.71634,19.407862,0 -98.716638,19.407612,0 -98.717157,19.407176,0 -98.717606,19.406846,0 -98.718125,19.406466,0 -98.718785,19.405834,0 -98.719445,19.405203,0 -98.720284,19.40455,0 -98.721123,19.403897,0 -98.721387,19.403684,0 -98.721963,19.403219,0 -98.722802,19.402542,0 -98.723624,19.401843,0 -98.724446,19.401143,0 -98.725036,19.40072,0 -98.725173,19.400622,0 -98.725627,19.400296,0 -98.726642,19.400295,0 -98.727454,19.400271,0 -98.728248,19.40025,0 -98.729214,19.400181,0 -98.729838,19.400112,0 -98.730327,19.400043,0 -98.730516,19.400043,0 -98.731275,19.400042,0 -98.731777,19.40002,0 -98.732184,19.399973,0 -98.732653,19.399997,0 -98.733037,19.400009,0 -98.733422,19.40002,0 -98.733843,19.400055,0 -98.734263,19.400089,0 -98.734858,19.400147,0 -98.735453,19.400204,0 -98.736125,19.400228,0 -98.736768,19.400296,0 -98.737392,19.400365,0 -98.738079,19.400411,0 -98.738562,19.400457,0 -98.739089,19.40048,0 -98.739617,19.400594,0 -98.740525,19.400708,0 -98.74103,19.400747,0 -98.74113,19.400755,0 -98.741657,19.400893,0 -98.742784,19.401191,0 -98.743596,19.401397,0 -98.744094,19.401604,0 -98.744646,19.401858,0 -98.74525,19.402154,0 -98.745632,19.402315,0 -98.746193,19.402614,0 -98.746638,19.402821,0 -98.74687,19.403004,0 -98.746986,19.402177,0 -98.74703,19.401879,0 -98.74715,19.401305,0 -98.747209,19.400917,0 -98.747305,19.400366,0 -98.747436,19.399907,0 -98.747605,19.399333,0 -98.747775,19.398622,0 -98.747842,19.397843,0 -98.747968,19.397131,0 -98.748132,19.396074,0 -98.748118,19.395801,0 -98.748166,19.39557,0 -98.748224,19.395525,0 -98.74835,19.395548,0 -98.748529,19.395548,0 -98.748766,19.395524,0 -98.749071,19.395456,0 -98.749336,19.395364,0 -98.74953,19.395226,0 -98.74969,19.395111,0 -98.749844,19.394996,0 -98.749965,19.394929,0 -98.750168,19.394859,0 -98.750279,19.394837,0 -98.750516,19.394882,0 -98.750748,19.39495,0 -98.750986,19.394996,0 -98.751271,19.395066,0 -98.751691,19.395112,0 -98.752112,19.395225,0 -98.752673,19.395432,0 -98.753089,19.395615,0 -98.753703,19.395822,0 -98.754051,19.395938,0 -98.75453,19.396166,0 -98.755072,19.396373,0 -98.755528,19.396615,0 -98.755928,19.396787,0 -98.756276,19.396993,0 -98.75657,19.397199,0 -98.756788,19.397267,0 -98.757059,19.39729,0 -98.75761,19.397359,0 -98.758331,19.397543,0 -98.758844,19.397611,0 -98.759313,19.397727,0 -98.759781,19.397863,0 -98.760139,19.398024,0 -98.760435,19.398162,0 -98.761025,19.398484,0 -98.761257,19.3986,0 -98.761682,19.398828,0 -98.762064,19.399012,0 -98.762635,19.399286,0 -98.763147,19.399562,0 -98.763447,19.399676,0 -98.763747,19.399769,0 -98.764211,19.399907,0 -98.764714,19.400136,0 -98.76499,19.400249,0 -98.765435,19.400433,0 -98.765686,19.400481,0 -98.765904,19.400479,0 -98.766315,19.400502,0 -98.766639,19.400572,0 -98.76691,19.400663,0 -98.767273,19.400779,0 -98.76749,19.400801,0 -98.767949,19.400938,0 -98.768317,19.401053,0 -98.768796,19.401259,0 -98.769086,19.40135,0 -98.769391,19.401443,0 -98.769695,19.401489,0 -98.770106,19.40158,0 -98.770372,19.401673,0 -98.77074,19.401741,0 -98.771577,19.402321,0 -98.772258,19.403045,0 -98.772939,19.403769,0 -98.77362,19.404493,0 -98.774301,19.405216,0 -98.774981,19.40594,0 -98.775662,19.406664,0 -98.776343,19.407388,0 -98.776654,19.407555,0 -98.776927,19.407781,0 -98.777141,19.407894,0 -98.777288,19.408007,0 -98.777492,19.408121,0 -98.777735,19.408277,0 -98.777993,19.408367,0 -98.778308,19.408433,0 -98.778579,19.408477,0 -98.778859,19.408472,0 -98.779251,19.408468,0 -98.779551,19.408444,0 -98.779695,19.408397,0 -98.779859,19.408349,0 -98.780071,19.408277,0 -98.780326,19.408205,0 -98.780534,19.408181,0 -98.78079,19.408109,0 -98.78107,19.408084,0 -98.781481,19.408125,0 -98.781781,19.408146,0 -98.782139,19.408187,0 -98.782426,19.408253,0 -98.782663,19.408321,0 -98.783027,19.40841,0 -98.783415,19.408496,0 -98.783831,19.408562,0 -98.784108,19.40865,0 -98.784375,19.408739,0 -98.784709,19.40885,0 -98.785093,19.408984,0 -98.785316,19.409029,0 -98.785461,19.40905,0 -98.785703,19.40907,0 -98.785935,19.409091,0 -98.786124,19.409066,0 -98.78638,19.409017,0 -98.786664,19.408922,0 -98.786977,19.40885,0 -98.787228,19.408781,0 -98.787537,19.408709,0 -98.787841,19.408682,0 -98.788179,19.408655,0 -98.788435,19.408653,0 -98.788784,19.408649,0 -98.789069,19.40867,0 -98.789296,19.408645,0 -98.789533,19.408596,0 -98.789672,19.408549,0 -98.789884,19.408456,0 -98.790109,19.408269,0 -98.790292,19.408176,0 -98.790393,19.408129,0 -98.790623,19.407989,0 -98.79082,19.407895,0 -98.790994,19.407825,0 -98.791202,19.407823,0 -98.791381,19.407821,0 -98.79157,19.407864,0 -98.791792,19.407909,0 -98.792045,19.407998,0 -98.7922,19.408018,0 -98.792403,19.408064,0 -98.792714,19.40813,0 -98.793009,19.408125,0 -98.793332,19.408099,0 -98.793637,19.408052,0 -98.793834,19.408027,0 -98.794109,19.407955,0 -98.794707,19.407811,0 -98.794823,19.407764,0 -98.795165,19.407669,0 -98.795497,19.407572,0 -98.795724,19.407525,0 -98.796013,19.407408,0 -98.796287,19.407215,0 -98.796468,19.407036,0 -98.796717,19.406828,0 -98.796962,19.406664,0 -98.79713,19.406526,0 -98.797485,19.406314,0 -98.797836,19.406127,0 -98.798014,19.406034,0 -98.798148,19.405919,0 -98.798293,19.405847,0 -98.79846,19.405709,0 -98.798576,19.40564,0 -98.798753,19.405522,0 -98.798974,19.405428,0 -98.799119,19.405397,0 -98.799212,19.405029,0 -98.799382,19.404502,0 -98.799612,19.403614,0 -98.800167,19.401991,0 -98.800722,19.400369,0 -98.80096,19.399702,0 -98.801223,19.398966,0 -98.801951,19.399119,0 -98.803175,19.399799,0 -98.803735,19.399522,0 -98.80517,19.399606,0 -98.806622,19.399829,0 -98.808495,19.399656,0 -98.810236,19.399868,0 -98.810938,19.400051,0 -98.811306,19.401534,0 -98.811406,19.402804,0 -98.811506,19.404074,0 -98.812459,19.403993,0 -98.813412,19.403911,0 -98.814364,19.403829,0 -98.815317,19.403748,0 -98.81627,19.403666,0 -98.817222,19.403585,0 -98.818175,19.403503,0 -98.819128,19.403421,0 -98.82008,19.403339,0 -98.821033,19.403258,0 -98.821986,19.403176,0 -98.822939,19.403094,0 -98.823891,19.403013,0 -98.824844,19.402931,0 -98.825797,19.402849,0 -98.826749,19.402768,0 -98.827791,19.402595,0 -98.828832,19.402423,0 -98.829873,19.402251,0 -98.830915,19.402079,0 -98.831956,19.401907,0 -98.832997,19.401735,0 -98.834038,19.401562,0 -98.835024,19.401068,0 -98.836009,19.400574,0 -98.837131,19.400012,0 -98.838253,19.399449,0 -98.839372,19.398956,0 -98.84049,19.398463,0 -98.841609,19.39797,0 -98.842912,19.397652,0 -98.844282,19.396706,0 -98.845417,19.396455,0 -98.846552,19.396204,0 -98.847633,19.395527,0 -98.848766,19.395112,0 -98.849898,19.394697,0 -98.85103,19.394283,0 -98.851303,19.393283,0 -98.851576,19.392283,0 -98.852091,19.390397,0 -98.852546,19.388734,0 -98.852909,19.387407,0 -98.85314,19.38656,0 -98.854111,19.386763,0 -98.855082,19.386966,0 -98.856053,19.387169,0 -98.857025,19.387372,0 -98.857996,19.387575,0 -98.858967,19.387778,0 -98.859938,19.387981,0 -98.860909,19.388184,0 -98.86188,19.388387,0 -98.862851,19.38859,0 -98.863823,19.388793,0 -98.86488,19.389014,0 -98.865937,19.389236,0 -98.866994,19.389457,0 -98.868051,19.389678,0 -98.869109,19.389899,0 -98.870166,19.39012,0 -98.870446,19.390215,0 -98.870811,19.39032,0 -98.871149,19.390405,0 -98.871402,19.390467,0 -98.871744,19.390531,0 -98.872444,19.390669,0 -98.872935,19.390755,0 -98.873748,19.390823,0 -98.874697,19.390959,0 -98.874724,19.389943,0 -98.87475,19.388926,0 -98.874777,19.387909,0 -98.874804,19.386892,0 -98.874831,19.385876,0 -98.874857,19.384859,0 -98.874884,19.383842,0 -98.875553,19.38326,0 -98.875632,19.383141,0 -98.876036,19.382263,0 -98.87674,19.38267,0 -98.877076,19.382922,0 -98.87737,19.383046,0 -98.877932,19.383009,0 -98.878762,19.382557,0 -98.879593,19.382104,0 -98.880423,19.381651,0 -98.881713,19.381055,0 -98.883194,19.380734,0 -98.883227,19.380363,0 -98.883594,19.380342,0 -98.884267,19.380304,0 -98.884545,19.380232,0 -98.884695,19.380325,0 -98.885275,19.380674,0 -98.885363,19.380705,0 -98.88543,19.380703,0 -98.885515,19.380665,0 -98.886101,19.380254,0 -98.886155,19.379259,0 -98.886209,19.378265,0 -98.886263,19.377271,0 -98.886317,19.376276,0 -98.886052,19.37503,0 -98.885787,19.373784,0 -98.885748,19.373337,0 -98.885458,19.373064,0 -98.886682,19.372985,0 -98.887139,19.372649,0 -98.887119,19.371878,0 -98.887263,19.371407,0 -98.88822,19.370134,0 -98.889879,19.369275,0 -98.891159,19.369004,0 -98.891639,19.36885,0 -98.892962,19.367725,0 -98.892754,19.366514,0 -98.892702,19.365611,0 -98.892756,19.363955,0 -98.894053,19.362649,0 -98.895279,19.361486,0 -98.895849,19.36062,0 -98.89651,19.359976,0 -98.897147,19.359242,0 -98.897519,19.358717,0 -98.898447,19.357934,0 -98.899738,19.357179,0 -98.899426,19.360455,0 -98.900042,19.362855,0 -98.900039,19.366132,0 -98.899236,19.36859,0 -98.89805,19.373372,0 -98.899247,19.373372,0 -98.899191,19.373499,0 -98.901508,19.373491,0 -98.901724,19.37349,0 -98.901859,19.37349,0 -98.902346,19.373488,0 -98.902819,19.373487,0 -98.903512,19.373485,0 -98.904161,19.373483,0 -98.904409,19.373482,0 -98.904583,19.373481,0 -98.905421,19.373479,0 -98.906459,19.374493,0 -98.906547,19.374593,0 -98.907022,19.374993,0 -98.907228,19.375283,0 -98.908285,19.375557,0 -98.910243,19.376065,0 -98.910304,19.376081,0 -98.912557,19.376664,0 -98.912906,19.376755,0 -98.91333,19.376855,0 -98.913694,19.376942,0 -98.913866,19.376982,0 -98.914167,19.377054,0 -98.914519,19.377137,0 -98.914917,19.377231,0 -98.915784,19.377437,0 -98.916077,19.377507,0 -98.916973,19.377719,0 -98.917086,19.377686,0 -98.917264,19.377754,0 -98.918232,19.378127,0 -98.919211,19.378435,0 -98.921467,19.379267,0 -98.921611,19.37909,0 -98.921691,19.379126,0 -98.922145,19.379334,0 -98.922249,19.379382,0 -98.922351,19.379427,0 -98.922609,19.37954,0 -98.922828,19.379636,0 -98.922668,19.379888,0 -98.922837,19.37997,0 -98.92338,19.380213,0 -98.923869,19.380425,0 -98.924126,19.380526,0 -98.924546,19.380693,0 -98.924957,19.380866,0 -98.925393,19.38104,0 -98.925725,19.381168,0 -98.926309,19.381406,0 -98.927232,19.381767,0 -98.9309,19.383196,0 -98.931801,19.383548,0 -98.932703,19.383899,0 -98.934648,19.384658,0 -98.935103,19.384835,0 -98.935897,19.385185,0 -98.936538,19.385468,0 -98.937078,19.385747,0 -98.93747,19.385892,0 -98.937857,19.386073,0 -98.937894,19.386009,0 -98.938924,19.386483,0 -98.939296,19.386507,0 -98.939702,19.386763,0 -98.939802,19.386826,0 -98.940036,19.386927,0 -98.94025,19.38702,0 -98.940358,19.387065,0 -98.940631,19.387178,0 -98.940737,19.387222,0 -98.941071,19.387361,0 -98.941533,19.387562,0 -98.941969,19.387777,0 -98.942287,19.387917,0 -98.942721,19.388125,0 -98.943377,19.388426,0 -98.943667,19.38856,0 -98.944065,19.388694,0 -98.944448,19.388825,0 -98.944711,19.388914,0 -98.944806,19.388971,0 -98.945042,19.389111,0 -98.945143,19.389155,0 -98.945208,19.389181,0 -98.945558,19.389324,0 -98.94587,19.389451,0 -98.946633,19.389763,0 -98.947886,19.390309,0 -98.948036,19.390374,0 -98.948119,19.390427,0 -98.951805,19.392428,0 -98.951912,19.392486,0 -98.951977,19.392521,0 -98.95236,19.392729,0 -98.95229,19.392827,0 -98.952337,19.392851,0 -98.95512,19.394449,0 -98.954536,19.392416,0 -98.954463,19.392162,0 -98.954476,19.392108,0 -98.954568,19.391733,0 -98.954597,19.391614,0 -98.954736,19.391047,0 -98.954751,19.390986,0 -98.954716,19.390884,0 -98.954869,19.390176,0 -98.9549,19.390032,0 -98.954967,19.389722,0 -98.95505,19.38934,0 -98.955135,19.388946,0 -98.955243,19.388446,0 -98.955317,19.388112,0 -98.955355,19.387931,0 -98.95506,19.387897,0 -98.954916,19.387869,0 -98.95437,19.387793,0 -98.954403,19.387562,0 -98.954438,19.387321,0 -98.954478,19.387068,0 -98.954505,19.386898,0 -98.954547,19.386639,0 -98.954552,19.386609,0 -98.95462,19.386605,0 -98.954885,19.386027,0 -98.954934,19.385981,0 -98.955025,19.385739,0 -98.955239,19.385165,0 -98.955371,19.384787,0 -98.955448,19.384564,0 -98.955791,19.384707,0 -98.955915,19.384758,0 -98.956001,19.384563,0 -98.956062,19.384425,0 -98.956173,19.384178,0 -98.956388,19.383701,0 -98.956614,19.383845,0 -98.956957,19.384099,0 -98.957196,19.384266,0 -98.957665,19.384594,0 -98.957938,19.384047,0 -98.958099,19.383725,0 -98.958064,19.383553,0 -98.958085,19.383514,0 -98.958168,19.383358,0 -98.958428,19.382873,0 -98.958744,19.382328,0 -98.958855,19.382137,0 -98.959065,19.381776,0 -98.959266,19.381429,0 -98.959271,19.38142,0 -98.959342,19.381298,0 -98.959531,19.380968,0 -98.961063,19.378396,0 -98.961274,19.378042,0 -98.961787,19.377178,0 -98.962131,19.376601,0 -98.96244,19.37607,0 -98.962548,19.375885,0 -98.963048,19.375028,0 -98.963636,19.374018,0 -98.963808,19.373722,0 -98.964119,19.373696,0 -98.964152,19.373688,0 -98.964568,19.373587,0 -98.965144,19.373444,0 -98.965548,19.373343,0 -98.965701,19.373315,0 -98.965768,19.373303,0 -98.965874,19.37328,0 -98.966035,19.373246,0 -98.966164,19.373235,0 -98.966281,19.373214,0 -98.966317,19.373208,0 -98.966429,19.373191,0 -98.966983,19.373073,0 -98.967042,19.373058,0 -98.967282,19.373003,0 -98.967801,19.372881,0 -98.967987,19.372837,0 -98.968137,19.372802,0 -98.968198,19.372787,0 -98.96829,19.372765,0 -98.968749,19.372653,0 -98.968888,19.37262,0 -98.969427,19.372487,0 -98.969858,19.372384,0 -98.96993,19.372367,0 -98.970001,19.37235,0 -98.970213,19.372311,0 -98.970386,19.372258,0 -98.97067,19.372205,0 -98.970892,19.372148,0 -98.971316,19.37206,0 -98.971358,19.372051,0 -98.971437,19.372035,0 -98.971485,19.372025,0 -98.971664,19.371987,0 -98.972069,19.371891,0 -98.972334,19.371828,0 -98.972615,19.371777,0 -98.972682,19.371761,0 -98.972901,19.371718,0 -98.973276,19.371619,0 -98.973451,19.371576,0 -98.973664,19.371527,0 -98.973703,19.371524,0 -98.974205,19.371395,0 -98.974431,19.37135,0 -98.974653,19.371303,0 -98.974933,19.371222,0 -98.974988,19.371223,0 -98.975456,19.371111,0 -98.97585,19.371026,0 -98.975974,19.370996,0 -98.976103,19.370965,0 -98.977026,19.370735,0 -98.977341,19.370657,0 -98.977538,19.370608,0 -98.977802,19.370542,0 -98.977939,19.370513,0 -98.978038,19.370492,0 -98.978428,19.370409,0 -98.978565,19.370377,0 -98.978615,19.370365,0 -98.97908,19.370254,0 -98.979396,19.370178,0 -98.979567,19.37014,0 -98.979978,19.370048,0 -98.980441,19.369945,0 -98.980609,19.369904,0 -98.980951,19.369819,0 -98.981101,19.369782,0 -98.981619,19.369655,0 -98.982109,19.369543,0 -98.982143,19.369535,0 -98.982216,19.369519,0 -98.982583,19.369439,0 -98.982632,19.369428,0 -98.982965,19.369355,0 -98.98316,19.369309,0 -98.98335,19.369263,0 -98.983671,19.369184,0 -98.983726,19.369171,0 -98.984031,19.369096,0 -98.984082,19.369085,0 -98.984226,19.369053,0 -98.984357,19.369024,0 -98.984911,19.368901,0 -98.985136,19.36885,0 -98.985419,19.368785,0 -98.985515,19.368763,0 -98.985645,19.368733,0 -98.985964,19.368806,0 -98.986294,19.368844,0 -98.98644,19.368861,0 -98.986766,19.368898,0 -98.987228,19.368951,0 -98.9873,19.36896,0 -98.987682,19.369004,0 -98.987998,19.36904,0 -98.988334,19.369079,0 -98.9884,19.369086,0 -98.988533,19.368593,0 -98.98866,19.368119,0 -98.98879,19.367713,0 -98.988947,19.367174,0 -98.989226,19.36621,0 -98.989577,19.366408,0 -98.98999,19.366641,0 -98.990422,19.366884,0 -98.990846,19.367124,0 -98.991259,19.367358,0 -98.991365,19.367417,0 -98.991894,19.367554,0 -98.9918,19.367461,0 -98.991755,19.367004,0 -98.991807,19.366865,0 -98.99187,19.366695,0 -98.991884,19.36664,0 -98.991918,19.3665,0 -98.991948,19.366378,0 -98.991958,19.366336,0 -98.991987,19.366219,0 -98.992037,19.366013,0 -98.992055,19.36594,0 -98.992185,19.36541,0 -98.992251,19.365137,0 -98.992287,19.364992,0 -98.992339,19.364778,0 -98.992418,19.364454,0 -98.992467,19.364256,0 -98.992497,19.364131,0 -98.992576,19.363808,0 -98.992596,19.363729,0 -98.992625,19.363607,0 -98.992677,19.363395,0 -98.992739,19.363143,0 -98.992773,19.363003,0 -98.992777,19.362989,0 -98.992859,19.362654,0 -98.992868,19.36262,0 -98.992908,19.362469,0 -98.992927,19.362398,0 -98.992974,19.362226,0 -98.99302,19.362052,0 -98.99311,19.361717,0 -98.993145,19.361585,0 -98.993385,19.360691,0 -98.993468,19.360384,0 -98.993516,19.360293,0 -98.993594,19.360146,0 -98.994062,19.359261,0 -98.994175,19.359048,0 -98.994448,19.358846,0 -98.994547,19.358566,0 -98.994557,19.358141,0 -98.994272,19.357852,0 -98.993752,19.35738,0 -98.992503,19.356333,0 -98.992472,19.356307,0 -98.991606,19.355581,0 -98.991467,19.355464,0 -98.991362,19.355364,0 -98.990992,19.355011,0 -98.990886,19.35491,0 -98.990731,19.354762,0 -98.990594,19.354631,0 -98.990106,19.354166,0 -98.989625,19.353707,0 -98.989176,19.353278,0 -98.988777,19.352898,0 -98.988093,19.352246,0 -98.987614,19.351782,0 -98.987584,19.351753,0 -98.987175,19.351358,0 -98.986039,19.350259,0 -98.985868,19.350095,0 -98.985457,19.349697,0 -98.98521,19.349459,0 -98.984817,19.349079,0 -98.984704,19.34897,0 -98.984485,19.348758,0 -98.983862,19.348164,0 -98.98256,19.346925,0 -98.982388,19.346761,0 -98.98223,19.34661,0 -98.981499,19.345914,0 -98.981273,19.345695,0 -98.98066,19.3451,0 -98.97987,19.344334,0 -98.979631,19.344102,0 -98.979501,19.343976,0 -98.979194,19.343678,0 -98.979022,19.343511,0 -98.978996,19.343486,0 -98.978793,19.343289,0 -98.978543,19.342993,0 -98.978078,19.342442,0 -98.978063,19.342426,0 -98.977808,19.342124,0 -98.977527,19.34165,0 -98.977278,19.341228,0 -98.977162,19.341033,0 -98.976456,19.339843,0 -98.976113,19.33931,0 -98.975825,19.338864,0 -98.97548,19.33833,0 -98.975216,19.338032,0 -98.97496,19.337743,0 -98.974637,19.337379,0 -98.974325,19.337027,0 -98.972869,19.335799,0 -98.972788,19.335731,0 -98.972558,19.335547,0 -98.971633,19.334809,0 -98.970556,19.333886,0 -98.968379,19.332031,0 -98.968109,19.331801,0 -98.968029,19.331734,0 -98.967674,19.331431,0 -98.967275,19.331092,0 -98.967203,19.33103,0 -98.966917,19.330786,0 -98.966778,19.330671,0 -98.966519,19.330456,0 -98.966063,19.330077,0 -98.965448,19.329567,0 -98.965373,19.329504,0 -98.965287,19.329433,0 -98.963997,19.328361,0 -98.960881,19.325737,0 -98.960451,19.325374,0 -98.960448,19.325372,0 -98.958359,19.323612,0 -98.957903,19.323228,0 -98.959001,19.321859,0 -98.959156,19.32166,0 -98.96086,19.319453,0 -98.961131,19.319102,0 -98.961399,19.318755,0 -98.961876,19.318138,0 -98.962562,19.31725,0 -98.962966,19.316727,0 -98.962991,19.316616,0 -98.963341,19.315032,0 -98.963415,19.314506,0 -98.963443,19.314311,0 -98.963448,19.314271,0 -98.963556,19.313505,0 -98.963747,19.312151,0 -98.963748,19.312146,0 -98.963895,19.311098,0 -98.963896,19.311097,0 -98.963973,19.310549,0 -98.964053,19.310048,0 -98.964055,19.310039,0 -98.96423,19.308951,0 -98.96423,19.308949,0 -98.964393,19.307935,0 -98.964411,19.307887,0 -98.964776,19.306881,0 -98.965387,19.306336,0 -98.966276,19.305962,0 -98.967224,19.30597,0 -98.967224,19.305968,0 -98.967556,19.303745,0 -98.968242,19.299158,0 -98.968242,19.299156,0 -98.968916,19.294739,0 -98.969607,19.2902,0 -98.970278,19.285798,0 -98.971431,19.278367,0 -98.971746,19.276629,0 -98.973363,19.267699,0 -98.974918,19.259491,0 -98.975413,19.257535,0 -98.976531,19.253125,0 -98.965987,19.249941,0 -98.967968,19.236436,0 -98.968587,19.232218,0 -98.968367,19.232148,0 -98.96792,19.232005,0 -98.967876,19.23199,0 -98.966134,19.231433,0 -98.964044,19.230765,0 -98.962483,19.230265,0 -98.962135,19.230154,0 -98.960417,19.229604,0 -98.958647,19.229038,0 -98.956113,19.228227,0 -98.955874,19.22815,0 -98.95226,19.226994,0 -98.947645,19.225517,0 -98.946644,19.225196,0 -98.945927,19.224967,0 -98.94577,19.224954,0 -98.945243,19.224912,0 -98.94476,19.22462,0 -98.944159,19.224429,0 -98.94295,19.224077,0 -98.940303,19.22324,0 -98.941859,19.217968,0 -98.942553,19.215615,0 -98.950909,19.218131,0 -98.951086,19.218184,0 -98.952155,19.216599,0 -98.952392,19.216246,0 -98.953275,19.215496,0 -98.952895,19.21527,0 -98.953283,19.215356,0 -98.953672,19.215442,0 -98.953837,19.214968,0 -98.953948,19.214646,0 -98.955308,19.214835,0 -98.956909,19.215059,0 -98.957461,19.215136,0 -98.958449,19.214858,0 -98.959133,19.214666,0 -98.959227,19.214639,0 -98.96003,19.214413,0 -98.959745,19.213871,0 -98.961129,19.213998,0 -98.962542,19.214129,0 -98.962583,19.214132,0 -98.962694,19.214143,0 -98.963535,19.213044,0 -98.964312,19.213239,0 -98.964654,19.213047,0 -98.967157,19.211645,0 -98.967259,19.211503,0 -98.967278,19.211476,0 -98.967554,19.211091,0 -98.967829,19.210706,0 -98.968067,19.210599,0 -98.96844,19.210576,0 -98.968528,19.210571,0 -98.968377,19.210489,0 -98.967657,19.209796,0 -98.966838,19.209007,0 -98.966827,19.208961,0 -98.966863,19.208743,0 -98.967006,19.207899,0 -98.967052,19.207629,0 -98.967424,19.207327,0 -98.967181,19.207042,0 -98.967169,19.206618,0 -98.967229,19.206251,0 -98.967405,19.206172,0 -98.967509,19.206125,0 -98.967979,19.20572,0 -98.968572,19.205208,0 -98.969679,19.204253,0 -98.967702,19.203129,0 -98.96768,19.203026,0 -98.96761,19.20269,0 -98.967026,19.19991,0 -98.966979,19.197922,0 -98.967694,19.189743,0 -98.96641,19.187032,0 -98.959849,19.179168,0 -98.956522,19.176635,0 -98.956175,19.176763,0 -98.954916,19.174063,0 -98.952386,19.168638,0 -98.965612,19.16493,0 -98.967366,19.164439,0 -98.96525,19.161962,0 -98.964616,19.161219,0 -98.963738,19.160192,0 -98.963123,19.159471,0 -98.962697,19.158973,0 -98.962019,19.15818,0 -98.961084,19.157085,0 -98.960571,19.156484,0 -98.960017,19.155836,0 -98.959861,19.155652,0 -98.959468,19.155193,0 -98.958484,19.154041,0 -98.958319,19.153847,0 -98.954626,19.149524,0 -98.959482,19.147298,0 -98.959896,19.147109,0 -98.962604,19.145867,0 -98.963037,19.145643,0 -98.966456,19.143871,0 -98.965956,19.142584,0 -98.965663,19.141831,0 -98.965494,19.141395,0 -98.965113,19.140415,0 -98.965089,19.140386,0 -98.964645,19.139845,0 -98.964606,19.139797,0 -98.963889,19.138217,0 -98.96376,19.137935,0 -98.963488,19.137488,0 -98.963175,19.136977,0 -98.962898,19.136523,0 -98.962626,19.136078,0 -98.962477,19.135834,0 -98.962377,19.13567,0 -98.962273,19.135456,0 -98.961945,19.134783,0 -98.961817,19.13452,0 -98.961715,19.134311,0 -98.961626,19.134126,0 -98.961478,19.133823,0 -98.961092,19.133029,0 -98.960854,19.132305,0 -98.96051,19.131258,0 -98.960432,19.131023,0 -98.959542,19.128314,0 -98.958729,19.125841,0 -98.958529,19.125274,0 -98.957797,19.123204,0 -98.957507,19.122383,0 -98.957656,19.119631,0 -98.958003,19.117915,0 -98.95807,19.117581,0 -98.9585,19.114898,0 -98.958563,19.114508,0 -98.958702,19.113639,0 -98.958692,19.112705,0 -98.958691,19.112568,0 -98.95841,19.111309,0 -98.958606,19.110414,0 -98.958676,19.110095,0 -98.958957,19.109043,0 -98.959064,19.104278,0 -98.96124,19.095583,0 -98.963266,19.092063,0 -98.965721,19.085861,0 -98.968284,19.083141,0 -98.971372,19.081218,0 -98.973697,19.079553,0 -98.978995,19.074456,0 -98.972614,19.069031,0 -98.969225,19.065904,0 -98.968995,19.065953,0 -98.962944,19.062632,0 -98.957779,19.060294,0 -98.956584,19.060965,0 -98.955272,19.06189,0 -98.954339,19.062539,0 -98.953214,19.06318,0 -98.952847,19.063757,0 -98.952149,19.064162,0 -98.950976,19.065052,0 -98.948756,19.066674,0 -98.948733,19.066809,0 -98.946585,19.068294,0 -98.946419,19.068387,0 -98.946219,19.068503,0 -98.945979,19.068669,0 -98.944348,19.069734,0 -98.944135,19.069738,0 -98.943957,19.069694,0 -98.943764,19.069613,0 -98.943483,19.069554,0 -98.943317,19.069532,0 -98.943097,19.069479,0 -98.942948,19.069443,0 -98.942529,19.069369,0 -98.941715,19.069235,0 -98.940813,19.069085,0 -98.940048,19.068904,0 -98.939777,19.068858,0 -98.939476,19.068775,0 -98.938845,19.068654,0 -98.938278,19.068534,0 -98.937929,19.068473,0 -98.936157,19.068132,0 -98.934259,19.06773,0 -98.930605,19.066939,0 -98.928016,19.066547,0 -98.927714,19.066437,0 -98.927272,19.066337,0 -98.926744,19.066125,0 -98.926677,19.066126,0 -98.926167,19.06615,0 -98.925654,19.066031,0 -98.921245,19.065144,0 -98.920662,19.064911,0 -98.919841,19.064878,0 -98.917668,19.064458,0 -98.916248,19.064189,0 -98.91565,19.064067,0 -98.915598,19.064057,0 -98.915549,19.061107,0 -98.915194,19.060264,0 -98.915404,19.060174,0 -98.915532,19.060117,0 -98.915526,19.059736,0 -98.917061,19.059425,0 -98.911676,19.051236,0 -98.908279,19.046044,0 -98.905547,19.041977,0 -98.905477,19.041687,0 -98.9045,19.040241,0 -98.90339,19.038483,0 -98.900609,19.038781,0 -98.897886,19.038551,0 -98.894797,19.037741,0 -98.894332,19.037605,0 -98.892827,19.037332,0 -98.891947,19.037083,0 -98.891256,19.036952,0 -98.89041,19.03687,0 -98.889649,19.036833,0 -98.888167,19.03692,0 -98.878956,19.028108,0 -98.871026,19.025393,0 -98.871661,19.021446,0 -98.872151,19.020411,0 -98.871944,19.018423,0 -98.872064,19.016692,0 -98.872304,19.015897,0 -98.87249,19.014754,0 -98.872873,19.013995,0 -98.87377,19.011895,0 -98.874059,19.010404,0 -98.872188,19.008705,0 -98.868892,19.005705,0 -98.869257,19.003077,0 -98.868805,19.003096,0 -98.868393,19.003202,0 -98.868206,19.002553,0 -98.868099,19.002469,0 -98.868092,19.002391,0 -98.869054,19.002327,0 -98.868578,19.00056,0 -98.868037,19.000689,0 -98.868102,18.999697,0 -98.868186,18.999688,0 -98.868399,18.999896,0 -98.868575,18.994344,0 -98.870006,18.99051,0 -98.867157,18.987644,0 -98.861837,18.979984,0 -98.861249,18.979331,0 -98.861168,18.979196,0 -98.860569,18.978482,0 -98.860153,18.978018,0 -98.860052,18.977892,0 -98.859996,18.97768,0 -98.859994,18.977539,0 -98.859552,18.977002,0 -98.858716,18.975892,0 -98.857911,18.975248,0 -98.857333,18.974592,0 -98.857935,18.970404,0 -98.858947,18.969647,0 -98.859107,18.969315,0 -98.859159,18.969207,0 -98.859423,18.968662,0 -98.860003,18.968169,0 -98.859918,18.967821,0 -98.860046,18.967327,0 -98.858971,18.966893,0 -98.859112,18.966872,0 -98.859845,18.966449,0 -98.859999,18.966188,0 -98.860102,18.965963,0 -98.8597,18.965749,0 -98.859044,18.965394,0 -98.85948,18.964778,0 -98.858203,18.964399,0 -98.858245,18.964298,0 -98.858376,18.964099,0 -98.858412,18.963832,0 -98.85825,18.96382,0 -98.857094,18.963478,0 -98.856637,18.963209,0 -98.856476,18.963258,0 -98.856425,18.963011,0 -98.855716,18.962443,0 -98.855676,18.962237,0 -98.856054,18.962057,0 -98.855644,18.961795,0 -98.855477,18.961772,0 -98.855327,18.961738,0 -98.855396,18.96158,0 -98.8549,18.961038,0 -98.854533,18.960823,0 -98.854151,18.960712,0 -98.853954,18.96053,0 -98.853212,18.960274,0 -98.853129,18.96006,0 -98.851848,18.959315,0 -98.850459,18.959104,0 -98.845167,18.955143,0 -98.844105,18.955268,0 -98.841428,18.955583,0 -98.840719,18.955666,0 -98.835891,18.950152,0 -98.832486,18.953285,0 -98.830997,18.954931,0 -98.830551,18.955255,0 -98.830113,18.955395,0 -98.829354,18.955435,0 -98.828247,18.95563,0 -98.827905,18.955591,0 -98.827683,18.955565,0 -98.827579,18.95566,0 -98.827597,18.955927,0 -98.827556,18.956127,0 -98.827367,18.956353,0 -98.827055,18.956512,0 -98.826895,18.956594,0 -98.826551,18.95671,0 -98.826451,18.956691,0 -98.826071,18.956431,0 -98.825643,18.956269,0 -98.825451,18.955922,0 -98.825222,18.955788,0 -98.8251,18.955529,0 -98.824202,18.954857,0 -98.823946,18.954666,0 -98.823484,18.954319,0 -98.823173,18.954086,0 -98.822794,18.953803,0 -98.822053,18.953248,0 -98.821656,18.952951,0 -98.821455,18.952801,0 -98.821427,18.95257,0 -98.821315,18.951656,0 -98.821185,18.950594,0 -98.821105,18.949945,0 -98.821044,18.949444,0 -98.820852,18.94788,0 -98.820774,18.947236,0 -98.820593,18.947044,0 -98.819742,18.946137,0 -98.819665,18.946077,0 -98.819407,18.945876,0 -98.819111,18.945644,0 -98.81867,18.9453,0 -98.81762,18.944482,0 -98.817329,18.944255,0 -98.816853,18.943263,0 -98.811953,18.942825,0 -98.809393,18.942956,0 -98.809098,18.942902,0 -98.805473,18.942237,0 -98.805362,18.942204,0 -98.803621,18.941695,0 -98.803175,18.941565,0 -98.802048,18.94118,0 -98.799454,18.940292,0 -98.79854,18.93998,0 -98.797298,18.939442,0 -98.796637,18.939156,0 -98.795016,18.938454,0 -98.79208,18.93534,0 -98.791,18.936709,0 -98.79102,18.93677,0 -98.790994,18.936884,0 -98.790895,18.936985,0 -98.790732,18.937049,0 -98.786115,18.942901,0 -98.78531,18.941159,0 -98.783756,18.940315,0 -98.78319,18.940314,0 -98.78245,18.940146,0 -98.781736,18.939944,0 -98.781315,18.93986,0 -98.780892,18.939842,0 -98.780587,18.939932,0 -98.780292,18.940016,0 -98.779904,18.940309,0 -98.779556,18.940802,0 -98.778919,18.941866,0 -98.776419,18.943267,0 -98.774985,18.943538,0 -98.773887,18.942325,0 -98.773574,18.942068,0 -98.772776,18.941904,0 -98.772061,18.941883,0 -98.771539,18.941872,0 -98.771322,18.941916,0 -98.771147,18.942051,0 -98.770943,18.94221,0 -98.770767,18.942227,0 -98.770398,18.942209,0 -98.769865,18.942183,0 -98.769503,18.942197,0 -98.768758,18.942267,0 -98.768411,18.942628,0 -98.767827,18.942853,0 -98.766855,18.942726,0 -98.765202,18.941972,0 -98.76469,18.941184,0 -98.763938,18.940502,0 -98.76306,18.940398,0 -98.762123,18.941169,0 -98.761071,18.941505,0 -98.760519,18.941193,0 -98.759633,18.940997,0 -98.758849,18.940968,0 -98.758124,18.940967,0 -98.757572,18.94098,0 -98.756426,18.940924,0 -98.75572,18.941399,0 -98.755496,18.941888,0 -98.755176,18.942357,0 -98.755552,18.942828,0 -98.755177,18.942941,0 -98.754746,18.942764,0 -98.754229,18.942693,0 -98.753724,18.942507,0 -98.753043,18.942258,0 -98.752476,18.94245,0 -98.752128,18.942739,0 -98.751387,18.942821,0 -98.750966,18.94289,0 -98.750748,18.943455,0 -98.750501,18.94351,0 -98.750168,18.943275,0 -98.749674,18.943191,0 -98.749301,18.943332,0 -98.74917,18.943539,0 -98.748995,18.943884,0 -98.748835,18.944049,0 -98.748676,18.943966,0 -98.748342,18.943869,0 -98.748008,18.944131,0 -98.7475,18.944337,0 -98.746803,18.94446,0 -98.746455,18.944211,0 -98.746133,18.944109,0 -98.745501,18.944229,0 -98.744858,18.944209,0 -98.744162,18.944208,0 -98.743741,18.944373,0 -98.743261,18.944649,0 -98.742826,18.944896,0 -98.742405,18.94491,0 -98.741592,18.944977,0 -98.740968,18.945059,0 -98.740203,18.944784,0 -98.739681,18.944562,0 -98.739029,18.944271,0 -98.738332,18.944105,0 -98.737101,18.943934,0 -98.736245,18.944181,0 -98.735686,18.944566,0 -98.734949,18.945025,0 -98.734499,18.945286,0 -98.733729,18.945575,0 -98.733352,18.945712,0 -98.732816,18.945666,0 -98.731932,18.945368,0 -98.731068,18.945352,0 -98.730598,18.945131,0 -98.730178,18.945054,0 -98.729354,18.944945,0 -98.728723,18.944914,0 -98.728142,18.944882,0 -98.727398,18.944881,0 -98.726962,18.944865,0 -98.72638,18.944756,0 -98.72627,18.944689,0 -98.725298,18.944586,0 -98.723795,18.944538,0 -98.722671,18.944489,0 -98.721895,18.944472,0 -98.721168,18.944364,0 -98.719973,18.943793,0 -98.719424,18.943516,0 -98.718794,18.943208,0 -98.718164,18.942976,0 -98.717744,18.942807,0 -98.717125,18.94253,0 -98.716333,18.942406,0 -98.716181,18.942429,0 -98.71483,18.942649,0 -98.714037,18.943032,0 -98.713503,18.943492,0 -98.712943,18.944302,0 -98.708646,18.948812,0 -98.708451,18.948951,0 -98.70778,18.950644,0 -98.706797,18.951449,0 -98.706651,18.951659,0 -98.705998,18.951734,0 -98.705757,18.951875,0 -98.705628,18.951829,0 -98.705829,18.952104,0 -98.705395,18.95254,0 -98.704858,18.953173,0 -98.704008,18.953464,0 -98.702688,18.954377,0 -98.70215,18.954712,0 -98.701453,18.954804,0 -98.699888,18.957777,0 -98.700389,18.958664,0 -98.700561,18.959271,0 -98.699969,18.959885,0 -98.699154,18.961025,0 -98.696352,18.964207,0 -98.695686,18.964348,0 -98.695137,18.964792,0 -98.694498,18.965388,0 -98.694004,18.965844,0 -98.693745,18.966195,0 -98.69253,18.966251,0 -98.691656,18.966294,0 -98.691026,18.966191,0 -98.690394,18.966408,0 -98.69021,18.966588,0 -98.690931,18.967573,0 -98.670143,18.996064,0 -98.667019,19.000345,0 -98.666259,19.001304,0 -98.664474,19.003557,0 -98.658457,19.004171,0 -98.652203,19.005991,0 -98.64928,19.007471,0 -98.632947,19.01555,0 -98.629274,19.017087,0 -98.628036,19.021456,0 -98.627523,19.022402,0 -98.626491,19.024307,0 -98.619875,19.03506,0 -98.62936,19.043213,0 -98.629788,19.043603,0 -98.629608,19.043842,0 -98.629519,19.044069,0 -98.62954,19.044396,0 -98.629447,19.044785,0 -98.629244,19.045144,0 -98.62906,19.045664,0 -98.628722,19.046058,0 -98.628498,19.04629,0 -98.628007,19.047064,0 -98.627778,19.047134,0 -98.6277,19.047768,0 -98.627539,19.048326,0 -98.627157,19.048979,0 -98.627079,19.049392,0 -98.626969,19.049829,0 -98.627198,19.050193,0 -98.627399,19.050591,0 -98.627718,19.051116,0 -98.6277,19.051624,0 -98.627518,19.05224,0 -98.627351,19.05312,0 -98.627593,19.053927,0 -98.627515,19.054365,0 -98.631225,19.059032,0 -98.631103,19.059647,0 -98.630756,19.059896,0 -98.630456,19.059957,0 -98.630349,19.060033,0 -98.630299,19.06031,0 -98.63018,19.060451,0 -98.629781,19.060554,0 -98.629442,19.060929,0 -98.628907,19.061481,0 -98.628427,19.061983,0 -98.62813,19.062573,0 -98.627768,19.063214,0 -98.626934,19.063873,0 -98.626503,19.06401,0 -98.623471,19.066382,0 -98.626104,19.068429,0 -98.627557,19.069389,0 -98.630232,19.067794,0 -98.635022,19.072374,0 -98.636229,19.073499,0 -98.637366,19.074445,0 -98.639298,19.07744,0 -98.639296,19.077443,0 -98.638758,19.07799,0 -98.638439,19.078469,0 -98.637987,19.078871,0 -98.637614,19.079299,0 -98.637108,19.079929,0 -98.636788,19.080559,0 -98.636362,19.081088,0 -98.636043,19.081667,0 -98.63575,19.08212,0 -98.635444,19.082912,0 -98.635396,19.083201,0 -98.635395,19.083933,0 -98.635207,19.084266,0 -98.634366,19.084681,0 -98.633951,19.084882,0 -98.63353,19.0852,0 -98.633027,19.085819,0 -98.63258,19.086538,0 -98.632247,19.086793,0 -98.631831,19.086982,0 -98.631575,19.087519,0 -98.631084,19.087957,0 -98.630715,19.088243,0 -98.630126,19.088408,0 -98.629575,19.088513,0 -98.629247,19.088777,0 -98.62874,19.088805,0 -98.62823,19.088893,0 -98.627783,19.089052,0 -98.627296,19.089068,0 -98.626826,19.089124,0 -98.626588,19.089404,0 -98.626253,19.08944,0 -98.625892,19.089376,0 -98.626132,19.09219,0 -98.626919,19.093496,0 -98.627611,19.094169,0 -98.628247,19.09496,0 -98.628994,19.095699,0 -98.629838,19.096412,0 -98.630967,19.09747,0 -98.632461,19.098714,0 -98.632559,19.100607,0 -98.631445,19.101553,0 -98.631106,19.102052,0 -98.630754,19.102385,0 -98.630618,19.102975,0 -98.63059,19.103475,0 -98.628803,19.116269,0 -98.627864,19.116473,0 -98.626343,19.117184,0 -98.625726,19.118628,0 -98.625489,19.119572,0 -98.625604,19.120179,0 -98.626968,19.124763,0 -98.63964,19.123214,0 -98.640108,19.124154,0 -98.640393,19.124763,0 -98.640657,19.125456,0 -98.640086,19.136979,0 -98.639949,19.138392,0 -98.63911,19.148391,0 -98.638916,19.150599,0 -98.635339,19.147032,0 -98.63623,19.153594,0 -98.636294,19.154058,0 -98.638168,19.160167,0 -98.63921,19.163562,0 -98.640314,19.167162,0 -98.64293,19.175686,0 -98.647022,19.184828,0 -98.642884,19.220669,0 -98.643571,19.23873,0 -98.640806,19.243414,0 -98.639449,19.244169,0 -98.638386,19.244654,0 -98.637651,19.245383,0 -98.637173,19.246008,0 </coordinates> </LinearRing> </outerBoundaryIs> </Polygon> </Placemark> <Placemark> <name>Equipo 4</name> <styleUrl>#poly-A52714-1000-153-nodesc</styleUrl> <Polygon> <outerBoundaryIs> <LinearRing> <tessellate>1</tessellate> <coordinates> -99.408743,19.448158,0 -99.409341,19.447123,0 -99.409939,19.446089,0 -99.410477,19.445089,0 -99.411015,19.444089,0 -99.411553,19.443089,0 -99.411573,19.443068,0 -99.411946,19.44197,0 -99.412319,19.440872,0 -99.412246,19.439418,0 -99.412309,19.438797,0 -99.412191,19.437875,0 -99.412239,19.436916,0 -99.412288,19.435956,0 -99.412336,19.434997,0 -99.412683,19.434025,0 -99.413031,19.433053,0 -99.413379,19.432081,0 -99.413726,19.43111,0 -99.414074,19.430138,0 -99.413799,19.430173,0 -99.413468,19.43015,0 -99.413197,19.430221,0 -99.41296,19.430369,0 -99.412771,19.430486,0 -99.412401,19.430495,0 -99.411911,19.430472,0 -99.411475,19.430567,0 -99.411122,19.430669,0 -99.41086,19.430631,0 -99.407678,19.430535,0 -99.405395,19.430603,0 -99.404301,19.430531,0 -99.404,19.429381,0 -99.403764,19.428479,0 -99.403555,19.427681,0 -99.403322,19.426793,0 -99.40311,19.425982,0 -99.402864,19.425043,0 -99.402587,19.423985,0 -99.402282,19.422818,0 -99.402003,19.421756,0 -99.401768,19.420855,0 -99.401428,19.419556,0 -99.401028,19.419031,0 -99.400654,19.418612,0 -99.400515,19.418655,0 -99.40012,19.419166,0 -99.399515,19.419763,0 -99.398886,19.419986,0 -99.398722,19.419854,0 -99.398558,19.419722,0 -99.398069,19.419458,0 -99.397927,19.419126,0 -99.397787,19.418772,0 -99.397273,19.418707,0 -99.396853,19.418641,0 -99.396772,19.418741,0 -99.39669,19.418841,0 -99.39669,19.41904,0 -99.396691,19.419239,0 -99.396575,19.419372,0 -99.396459,19.419505,0 -99.396179,19.41955,0 -99.395917,19.41942,0 -99.396134,19.418455,0 -99.39622,19.418066,0 -99.396381,19.417239,0 -99.396474,19.416334,0 -99.396663,19.415397,0 -99.396853,19.414459,0 -99.397043,19.413521,0 -99.397233,19.412584,0 -99.397423,19.411646,0 -99.397612,19.410708,0 -99.397802,19.40977,0 -99.397992,19.408833,0 -99.398181,19.407895,0 -99.398371,19.406957,0 -99.398606,19.405728,0 -99.398841,19.404499,0 -99.399094,19.40324,0 -99.399346,19.401982,0 -99.399535,19.401037,0 -99.399724,19.400093,0 -99.399914,19.399148,0 -99.400103,19.398204,0 -99.400292,19.397259,0 -99.400481,19.396314,0 -99.400735,19.395302,0 -99.400988,19.39429,0 -99.401242,19.393277,0 -99.401495,19.392265,0 -99.40165,19.391367,0 -99.401805,19.390469,0 -99.401961,19.389571,0 -99.402116,19.388673,0 -99.402271,19.387776,0 -99.402426,19.386878,0 -99.402581,19.38598,0 -99.402736,19.385082,0 -99.402891,19.384184,0 -99.403046,19.383286,0 -99.403081,19.382466,0 -99.403114,19.381543,0 -99.403147,19.380619,0 -99.40318,19.379695,0 -99.403213,19.378771,0 -99.403247,19.377848,0 -99.40328,19.376924,0 -99.403313,19.376,0 -99.403346,19.375076,0 -99.403379,19.374153,0 -99.403412,19.373229,0 -99.403445,19.372305,0 -99.403562,19.370691,0 -99.4036,19.369715,0 -99.403638,19.36874,0 -99.403677,19.367764,0 -99.403715,19.366789,0 -99.403753,19.365813,0 -99.403792,19.364837,0 -99.40383,19.363862,0 -99.403868,19.362886,0 -99.404035,19.362068,0 -99.404067,19.361129,0 -99.404094,19.360329,0 -99.404129,19.359316,0 -99.404144,19.358403,0 -99.40416,19.357482,0 -99.40418,19.356287,0 -99.404134,19.355631,0 -99.404067,19.354681,0 -99.404023,19.353833,0 -99.403824,19.353237,0 -99.403451,19.35271,0 -99.4032,19.352159,0 -99.402773,19.351563,0 -99.402382,19.351126,0 -99.402023,19.350761,0 -99.401801,19.350508,0 -99.400302,19.34858,0 -99.399787,19.347939,0 -99.399519,19.347436,0 -99.39914,19.346793,0 -99.398755,19.346175,0 -99.398342,19.345466,0 -99.397982,19.344938,0 -99.397655,19.34416,0 -99.397103,19.343029,0 -99.396827,19.342465,0 -99.396576,19.34196,0 -99.396325,19.341456,0 -99.395609,19.340036,0 -99.395225,19.339325,0 -99.394864,19.338662,0 -99.39446,19.337791,0 -99.394275,19.337366,0 -99.394089,19.336942,0 -99.393625,19.335567,0 -99.393215,19.334581,0 -99.39298,19.333824,0 -99.392736,19.333091,0 -99.392496,19.332312,0 -99.391921,19.331052,0 -99.391628,19.330181,0 -99.391295,19.329498,0 -99.390873,19.3286,0 -99.390451,19.327701,0 -99.390112,19.326826,0 -99.389773,19.32595,0 -99.389434,19.325074,0 -99.389095,19.324199,0 -99.388756,19.323323,0 -99.388417,19.322448,0 -99.388078,19.321572,0 -99.387739,19.320696,0 -99.3874,19.319821,0 -99.387061,19.318945,0 -99.386722,19.31807,0 -99.386322,19.317055,0 -99.385922,19.31604,0 -99.385522,19.315024,0 -99.385121,19.314009,0 -99.384764,19.313098,0 -99.384407,19.312187,0 -99.38405,19.311276,0 -99.383693,19.310365,0 -99.383335,19.309454,0 -99.382978,19.308542,0 -99.382621,19.307631,0 -99.382264,19.30672,0 -99.381907,19.305809,0 -99.381041,19.306459,0 -99.380176,19.307109,0 -99.379311,19.307759,0 -99.378446,19.308408,0 -99.37758,19.309058,0 -99.376715,19.309708,0 -99.375894,19.30976,0 -99.375385,19.309677,0 -99.375083,19.309525,0 -99.374127,19.308681,0 -99.373532,19.308442,0 -99.372572,19.308269,0 -99.372322,19.308193,0 -99.371628,19.307479,0 -99.371327,19.307295,0 -99.370758,19.307155,0 -99.370406,19.307205,0 -99.370184,19.307305,0 -99.370071,19.307392,0 -99.369693,19.307172,0 -99.369165,19.306865,0 -99.36875,19.306624,0 -99.368328,19.306378,0 -99.367888,19.306123,0 -99.367223,19.305736,0 -99.366605,19.305377,0 -99.365707,19.304855,0 -99.364886,19.304377,0 -99.364108,19.303925,0 -99.363215,19.303406,0 -99.362237,19.303396,0 -99.360976,19.303383,0 -99.359876,19.303371,0 -99.359165,19.303363,0 -99.358772,19.303359,0 -99.35757,19.303346,0 -99.356369,19.303333,0 -99.356608,19.306676,0 -99.333842,19.33059,0 -99.333428,19.331371,0 -99.332795,19.332416,0 -99.332307,19.333518,0 -99.331915,19.334954,0 -99.331821,19.335537,0 -99.331643,19.336632,0 -99.331688,19.337794,0 -99.331592,19.338109,0 -99.331465,19.338427,0 -99.33119,19.338792,0 -99.331192,19.339428,0 -99.331152,19.339776,0 -99.330666,19.340063,0 -99.33033,19.340987,0 -99.330201,19.341124,0 -99.329727,19.341622,0 -99.329488,19.34227,0 -99.329161,19.342917,0 -99.329028,19.343379,0 -99.328937,19.343616,0 -99.328754,19.343857,0 -99.328707,19.344251,0 -99.32848,19.344717,0 -99.328272,19.345202,0 -99.328881,19.345624,0 -99.328798,19.346038,0 -99.328447,19.346819,0 -99.328531,19.347609,0 -99.328697,19.347897,0 -99.328621,19.348307,0 -99.328585,19.3485,0 -99.328458,19.348904,0 -99.328393,19.349139,0 -99.328327,19.349487,0 -99.328422,19.349706,0 -99.328636,19.349965,0 -99.328852,19.350356,0 -99.328757,19.350643,0 -99.328718,19.351008,0 -99.328646,19.351382,0 -99.328824,19.352105,0 -99.328674,19.35268,0 -99.328484,19.353092,0 -99.328041,19.353358,0 -99.327705,19.353636,0 -99.327668,19.354043,0 -99.327431,19.354134,0 -99.326731,19.353822,0 -99.326392,19.353672,0 -99.325847,19.354593,0 -99.325712,19.355001,0 -99.325528,19.355258,0 -99.325301,19.355534,0 -99.325055,19.35572,0 -99.325039,19.356025,0 -99.324676,19.356416,0 -99.324146,19.357335,0 -99.323764,19.357953,0 -99.323286,19.358338,0 -99.322829,19.358499,0 -99.322219,19.358661,0 -99.322042,19.35862,0 -99.321555,19.358509,0 -99.320752,19.358199,0 -99.320438,19.357963,0 -99.320144,19.357742,0 -99.320108,19.357715,0 -99.319152,19.357628,0 -99.318765,19.357845,0 -99.318545,19.357995,0 -99.318134,19.358156,0 -99.318492,19.358475,0 -99.320699,19.360444,0 -99.319543,19.363618,0 -99.318118,19.364156,0 -99.318049,19.364821,0 -99.317608,19.36573,0 -99.316862,19.366307,0 -99.31539,19.365888,0 -99.314528,19.367241,0 -99.314064,19.368393,0 -99.313808,19.369301,0 -99.313088,19.370449,0 -99.310707,19.370408,0 -99.309777,19.371175,0 -99.309281,19.371585,0 -99.307765,19.371561,0 -99.306127,19.3736,0 -99.305005,19.376833,0 -99.304277,19.377311,0 -99.303483,19.37783,0 -99.301557,19.377169,0 -99.301309,19.377084,0 -99.30185,19.375943,0 -99.301938,19.375757,0 -99.301557,19.374924,0 -99.301357,19.373835,0 -99.301259,19.37302,0 -99.30115,19.372233,0 -99.300997,19.371943,0 -99.300963,19.371769,0 -99.300944,19.371222,0 -99.300887,19.370618,0 -99.300996,19.370102,0 -99.301232,19.3697,0 -99.300582,19.369059,0 -99.300417,19.368896,0 -99.300416,19.368895,0 -99.300415,19.368894,0 -99.299683,19.36817,0 -99.29902,19.367515,0 -99.298717,19.368302,0 -99.298624,19.368494,0 -99.298438,19.36888,0 -99.298268,19.369072,0 -99.298167,19.369187,0 -99.297917,19.369325,0 -99.297473,19.369414,0 -99.296947,19.36931,0 -99.296557,19.369233,0 -99.296238,19.369182,0 -99.295762,19.369105,0 -99.295587,19.369077,0 -99.295313,19.369378,0 -99.295077,19.369585,0 -99.294946,19.369713,0 -99.294771,19.369865,0 -99.294448,19.369924,0 -99.294141,19.370047,0 -99.29408,19.370071,0 -99.293889,19.370147,0 -99.293758,19.370441,0 -99.293648,19.370688,0 -99.293416,19.371207,0 -99.293233,19.371917,0 -99.293155,19.372022,0 -99.292922,19.372337,0 -99.292612,19.37266,0 -99.292299,19.37301,0 -99.292238,19.373079,0 -99.292055,19.373284,0 -99.291831,19.373397,0 -99.291643,19.373491,0 -99.291176,19.373487,0 -99.291137,19.373841,0 -99.29107,19.374021,0 -99.290769,19.374317,0 -99.290614,19.375023,0 -99.290126,19.375008,0 -99.290026,19.375006,0 -99.289798,19.374999,0 -99.289715,19.374997,0 -99.289572,19.37519,0 -99.289271,19.375165,0 -99.288947,19.375139,0 -99.288769,19.375125,0 -99.288645,19.375115,0 -99.288283,19.375527,0 -99.288107,19.375727,0 -99.288052,19.37579,0 -99.287846,19.376268,0 -99.287808,19.376356,0 -99.287668,19.376682,0 -99.286909,19.376502,0 -99.286396,19.376434,0 -99.286223,19.37643,0 -99.286135,19.376432,0 -99.285697,19.376439,0 -99.285708,19.377247,0 -99.285669,19.377631,0 -99.285072,19.377999,0 -99.285111,19.378869,0 -99.285044,19.379051,0 -99.284846,19.379111,0 -99.284676,19.37935,0 -99.284569,19.379688,0 -99.284461,19.379761,0 -99.284231,19.379792,0 -99.283811,19.379668,0 -99.283771,19.379978,0 -99.283298,19.38044,0 -99.28283,19.381404,0 -99.282665,19.381415,0 -99.281847,19.381471,0 -99.281773,19.381476,0 -99.280529,19.382043,0 -99.280187,19.382199,0 -99.280035,19.382268,0 -99.279522,19.382807,0 -99.279121,19.383229,0 -99.278715,19.383539,0 -99.278474,19.383724,0 -99.276043,19.385582,0 -99.276069,19.385192,0 -99.275671,19.3855,0 -99.273685,19.387037,0 -99.273603,19.38724,0 -99.273215,19.387587,0 -99.273002,19.388352,0 -99.272975,19.38855,0 -99.272906,19.389022,0 -99.272776,19.38938,0 -99.272432,19.389678,0 -99.271837,19.389736,0 -99.27104,19.389931,0 -99.270293,19.390096,0 -99.270224,19.390112,0 -99.269771,19.390267,0 -99.26957,19.390384,0 -99.269538,19.390632,0 -99.269591,19.390787,0 -99.269619,19.391007,0 -99.269477,19.391362,0 -99.269253,19.391563,0 -99.268994,19.39168,0 -99.268562,19.391935,0 -99.268312,19.392135,0 -99.268106,19.392651,0 -99.268098,19.39297,0 -99.268072,19.393316,0 -99.268067,19.393393,0 -99.268051,19.39361,0 -99.267974,19.394091,0 -99.267386,19.394747,0 -99.267237,19.394912,0 -99.266748,19.395549,0 -99.266439,19.39608,0 -99.266284,19.396624,0 -99.266115,19.397345,0 -99.265761,19.39819,0 -99.265381,19.398684,0 -99.265077,19.398951,0 -99.264956,19.398959,0 -99.26486,19.398852,0 -99.264722,19.398759,0 -99.264589,19.398714,0 -99.264404,19.398689,0 -99.264252,19.398695,0 -99.264096,19.398693,0 -99.264009,19.398762,0 -99.263993,19.398899,0 -99.263993,19.399013,0 -99.264072,19.399231,0 -99.263916,19.399427,0 -99.26356,19.399503,0 -99.263188,19.399535,0 -99.262756,19.399665,0 -99.262411,19.399709,0 -99.262156,19.399666,0 -99.262065,19.399594,0 -99.261883,19.399348,0 -99.261825,19.3993,0 -99.261741,19.39927,0 -99.261621,19.399269,0 -99.261304,19.399329,0 -99.26114,19.399647,0 -99.260909,19.399958,0 -99.260453,19.400251,0 -99.259871,19.40054,0 -99.259482,19.400932,0 -99.259267,19.401185,0 -99.259074,19.401463,0 -99.259226,19.401765,0 -99.259042,19.402484,0 -99.258941,19.403277,0 -99.258825,19.403749,0 -99.258679,19.40406,0 -99.25813,19.404763,0 -99.257884,19.404843,0 -99.257698,19.404848,0 -99.257723,19.404679,0 -99.257724,19.404509,0 -99.257779,19.404285,0 -99.258005,19.403964,0 -99.258243,19.40309,0 -99.258269,19.402684,0 -99.258234,19.402526,0 -99.258154,19.402428,0 -99.25778,19.401791,0 -99.257663,19.401593,0 -99.257622,19.401525,0 -99.257376,19.40112,0 -99.256979,19.400432,0 -99.256936,19.400457,0 -99.256892,19.400482,0 -99.256806,19.400575,0 -99.256673,19.40072,0 -99.256529,19.401139,0 -99.256383,19.401522,0 -99.256187,19.402038,0 -99.256138,19.402179,0 -99.256122,19.402222,0 -99.256013,19.402536,0 -99.256028,19.403125,0 -99.256034,19.403393,0 -99.256038,19.403561,0 -99.255808,19.403572,0 -99.25531,19.404128,0 -99.254857,19.404554,0 -99.254347,19.404863,0 -99.253717,19.405011,0 -99.253337,19.405095,0 -99.252839,19.405739,0 -99.252217,19.406043,0 -99.251669,19.406233,0 -99.250942,19.406416,0 -99.250571,19.406699,0 -99.250343,19.406991,0 -99.250071,19.407233,0 -99.249743,19.40737,0 -99.249414,19.40752,0 -99.249182,19.407729,0 -99.248955,19.40802,0 -99.248679,19.408267,0 -99.248516,19.408473,0 -99.248312,19.408649,0 -99.247971,19.40878,0 -99.247532,19.408814,0 -99.246619,19.409078,0 -99.246062,19.409284,0 -99.245024,19.40967,0 -99.244226,19.409942,0 -99.243991,19.410205,0 -99.2437,19.410527,0 -99.243362,19.41072,0 -99.243015,19.410804,0 -99.242681,19.411057,0 -99.242331,19.411302,0 -99.241881,19.411481,0 -99.24083,19.411918,0 -99.240165,19.412139,0 -99.239912,19.412194,0 -99.239623,19.412204,0 -99.238918,19.412042,0 -99.238638,19.412012,0 -99.2384,19.412007,0 -99.238105,19.41208,0 -99.237614,19.412202,0 -99.237305,19.41236,0 -99.237047,19.412555,0 -99.236915,19.412707,0 -99.236748,19.413079,0 -99.236497,19.413596,0 -99.236203,19.414085,0 -99.235934,19.414497,0 -99.23567,19.415013,0 -99.235574,19.415242,0 -99.235447,19.415436,0 -99.23495,19.415749,0 -99.234627,19.415971,0 -99.234505,19.416397,0 -99.234384,19.416586,0 -99.234253,19.416688,0 -99.234061,19.416764,0 -99.233893,19.416768,0 -99.233763,19.416723,0 -99.233613,19.416585,0 -99.233442,19.417222,0 -99.233384,19.417483,0 -99.233379,19.41756,0 -99.233363,19.417798,0 -99.233235,19.417839,0 -99.233191,19.418047,0 -99.23316,19.418158,0 -99.233122,19.418272,0 -99.23306,19.418388,0 -99.233069,19.418483,0 -99.233091,19.418586,0 -99.233056,19.41866,0 -99.232991,19.418894,0 -99.232971,19.419023,0 -99.232987,19.419263,0 -99.232974,19.419395,0 -99.232911,19.41943,0 -99.232635,19.41938,0 -99.232546,19.419391,0 -99.232466,19.419421,0 -99.232417,19.419474,0 -99.232376,19.419567,0 -99.232357,19.419685,0 -99.232357,19.419793,0 -99.232105,19.419873,0 -99.231817,19.41999,0 -99.231676,19.420165,0 -99.231626,19.420306,0 -99.23157,19.4206,0 -99.231559,19.420737,0 -99.231507,19.420756,0 -99.231307,19.42081,0 -99.231216,19.420858,0 -99.231113,19.420934,0 -99.231061,19.420979,0 -99.231025,19.42107,0 -99.230969,19.421261,0 -99.230958,19.421367,0 -99.230926,19.421547,0 -99.230891,19.421637,0 -99.230843,19.421707,0 -99.23077,19.421734,0 -99.230664,19.421743,0 -99.230533,19.421761,0 -99.23039,19.421798,0 -99.230286,19.42181,0 -99.230098,19.421826,0 -99.229762,19.421995,0 -99.229683,19.422103,0 -99.229542,19.42216,0 -99.229384,19.422205,0 -99.229363,19.422237,0 -99.229169,19.422459,0 -99.228969,19.422624,0 -99.228869,19.422729,0 -99.228739,19.422977,0 -99.228652,19.423193,0 -99.228495,19.423326,0 -99.228457,19.423419,0 -99.228303,19.423511,0 -99.228166,19.423537,0 -99.228069,19.423543,0 -99.227939,19.423566,0 -99.227875,19.423604,0 -99.227852,19.423645,0 -99.227855,19.423679,0 -99.227862,19.423793,0 -99.227849,19.423974,0 -99.227832,19.424062,0 -99.227786,19.424129,0 -99.227729,19.424183,0 -99.227639,19.424221,0 -99.227538,19.42425,0 -99.227421,19.424253,0 -99.227189,19.424257,0 -99.227017,19.42432,0 -99.226796,19.424539,0 -99.2267,19.424666,0 -99.226331,19.425238,0 -99.22607,19.425828,0 -99.225871,19.426226,0 -99.225705,19.42641,0 -99.225463,19.426587,0 -99.22516,19.426714,0 -99.224847,19.426849,0 -99.22464,19.426966,0 -99.224468,19.42708,0 -99.224322,19.427018,0 -99.223784,19.42681,0 -99.223245,19.426565,0 -99.222804,19.426368,0 -99.222772,19.426386,0 -99.222668,19.426581,0 -99.222562,19.426714,0 -99.222328,19.426946,0 -99.222274,19.427023,0 -99.22232,19.42713,0 -99.222552,19.427317,0 -99.222703,19.427664,0 -99.222869,19.428112,0 -99.222956,19.428473,0 -99.223,19.428613,0 -99.22302,19.428738,0 -99.223106,19.429066,0 -99.223153,19.429183,0 -99.22321,19.429307,0 -99.223286,19.429414,0 -99.223378,19.429505,0 -99.223553,19.429623,0 -99.223713,19.429706,0 -99.224299,19.430008,0 -99.224431,19.430077,0 -99.224768,19.430251,0 -99.225175,19.430461,0 -99.226508,19.431073,0 -99.226622,19.431154,0 -99.226731,19.431246,0 -99.226818,19.431338,0 -99.22686,19.431444,0 -99.226872,19.431586,0 -99.226802,19.431892,0 -99.226665,19.432271,0 -99.226416,19.432764,0 -99.226158,19.433719,0 -99.226152,19.433859,0 -99.226171,19.433965,0 -99.226225,19.434061,0 -99.226296,19.434131,0 -99.226393,19.434209,0 -99.22702,19.434549,0 -99.227209,19.43466,0 -99.227338,19.434789,0 -99.22743,19.434945,0 -99.227493,19.43509,0 -99.227503,19.435231,0 -99.227284,19.435867,0 -99.227164,19.436213,0 -99.227113,19.436822,0 -99.227739,19.437422,0 -99.228131,19.437799,0 -99.228152,19.438016,0 -99.22811,19.43821,0 -99.228062,19.438322,0 -99.227963,19.438444,0 -99.227851,19.438559,0 -99.223584,19.441564,0 -99.221965,19.442687,0 -99.220938,19.443434,0 -99.220583,19.443675,0 -99.220136,19.443811,0 -99.219737,19.443847,0 -99.219506,19.443868,0 -99.218689,19.443973,0 -99.21818,19.444058,0 -99.218133,19.444112,0 -99.218154,19.444156,0 -99.218216,19.444235,0 -99.218305,19.444299,0 -99.219226,19.444774,0 -99.219409,19.444906,0 -99.219536,19.445017,0 -99.219638,19.44512,0 -99.219761,19.44525,0 -99.219853,19.445361,0 -99.219977,19.445557,0 -99.22006,19.445759,0 -99.220113,19.445971,0 -99.220149,19.446116,0 -99.220147,19.446272,0 -99.220146,19.446441,0 -99.220136,19.447277,0 -99.220128,19.447987,0 -99.220116,19.448998,0 -99.219955,19.451549,0 -99.219959,19.451879,0 -99.219963,19.452154,0 -99.219973,19.45288,0 -99.219772,19.452884,0 -99.219196,19.452941,0 -99.219014,19.452972,0 -99.218852,19.452999,0 -99.218523,19.453054,0 -99.2182,19.453218,0 -99.218136,19.45325,0 -99.218089,19.453274,0 -99.217915,19.453362,0 -99.217365,19.453671,0 -99.216978,19.454067,0 -99.216954,19.454092,0 -99.216767,19.454284,0 -99.216421,19.454714,0 -99.216274,19.454898,0 -99.216077,19.455158,0 -99.215975,19.455293,0 -99.215728,19.455618,0 -99.215285,19.456224,0 -99.215253,19.456311,0 -99.215221,19.456396,0 -99.215202,19.456446,0 -99.215166,19.456543,0 -99.214856,19.457371,0 -99.214248,19.458559,0 -99.214224,19.458674,0 -99.214045,19.459518,0 -99.213939,19.460406,0 -99.212631,19.462451,0 -99.212964,19.462622,0 -99.213544,19.462919,0 -99.212393,19.466379,0 -99.212148,19.467114,0 -99.211942,19.467079,0 -99.211785,19.467082,0 -99.211729,19.467138,0 -99.211639,19.467406,0 -99.211537,19.467993,0 -99.211435,19.468001,0 -99.211372,19.468036,0 -99.210961,19.468268,0 -99.210723,19.468481,0 -99.210565,19.468658,0 -99.210451,19.468786,0 -99.209912,19.469382,0 -99.208901,19.470057,0 -99.208863,19.470082,0 -99.208705,19.470034,0 -99.208693,19.470031,0 -99.208212,19.469884,0 -99.207686,19.469724,0 -99.207174,19.469568,0 -99.206825,19.471215,0 -99.207773,19.471471,0 -99.207967,19.471523,0 -99.208349,19.471626,0 -99.208369,19.471632,0 -99.208956,19.47179,0 -99.209236,19.471865,0 -99.209635,19.471973,0 -99.210033,19.47208,0 -99.210784,19.472283,0 -99.210815,19.472291,0 -99.211413,19.472452,0 -99.212045,19.472623,0 -99.212628,19.47278,0 -99.213293,19.472959,0 -99.213561,19.473032,0 -99.213879,19.473117,0 -99.214216,19.473208,0 -99.214485,19.473281,0 -99.214878,19.473387,0 -99.215168,19.473465,0 -99.21554,19.473565,0 -99.215863,19.473652,0 -99.216173,19.473736,0 -99.216877,19.473926,0 -99.217504,19.474095,0 -99.21817,19.474274,0 -99.218847,19.474457,0 -99.219511,19.474636,0 -99.220158,19.47481,0 -99.220558,19.474918,0 -99.221115,19.475068,0 -99.22092,19.475908,0 -99.22071,19.476812,0 -99.2205,19.477718,0 -99.220359,19.478155,0 -99.220337,19.478223,0 -99.220048,19.47912,0 -99.219772,19.479975,0 -99.219663,19.480314,0 -99.219456,19.480903,0 -99.219138,19.481808,0 -99.218829,19.482686,0 -99.218607,19.483315,0 -99.218519,19.483566,0 -99.218338,19.484081,0 -99.218156,19.484597,0 -99.218046,19.484912,0 -99.217499,19.486451,0 -99.217312,19.486978,0 -99.217163,19.487397,0 -99.217158,19.487412,0 -99.216858,19.488258,0 -99.21654,19.489153,0 -99.21645,19.489407,0 -99.216279,19.489888,0 -99.21618,19.490166,0 -99.216007,19.490692,0 -99.215717,19.491569,0 -99.215698,19.491625,0 -99.215447,19.492385,0 -99.215387,19.492568,0 -99.215203,19.493124,0 -99.214982,19.493793,0 -99.214824,19.494272,0 -99.214607,19.494928,0 -99.214372,19.495638,0 -99.214116,19.496413,0 -99.213891,19.497095,0 -99.213839,19.497252,0 -99.213684,19.49772,0 -99.213501,19.498275,0 -99.213463,19.498409,0 -99.212865,19.500522,0 -99.212498,19.501762,0 -99.21232,19.502371,0 -99.212235,19.502661,0 -99.211992,19.503511,0 -99.211966,19.503636,0 -99.211684,19.504997,0 -99.211445,19.506723,0 -99.211377,19.507212,0 -99.211219,19.507812,0 -99.211162,19.50803,0 -99.211052,19.508445,0 -99.21078,19.509085,0 -99.210698,19.50935,0 -99.210687,19.509383,0 -99.210633,19.509557,0 -99.210475,19.510072,0 -99.210372,19.51054,0 -99.210323,19.51067,0 -99.210241,19.510892,0 -99.210164,19.511139,0 -99.210066,19.511273,0 -99.209987,19.511378,0 -99.209944,19.511436,0 -99.209802,19.511603,0 -99.209692,19.511732,0 -99.209629,19.511815,0 -99.209496,19.511992,0 -99.209406,19.51215,0 -99.209382,19.512192,0 -99.209316,19.512307,0 -99.209258,19.512409,0 -99.209195,19.512468,0 -99.209073,19.512583,0 -99.20897,19.512681,0 -99.208524,19.512959,0 -99.208144,19.513195,0 -99.208095,19.513218,0 -99.207129,19.51367,0 -99.207016,19.513731,0 -99.206598,19.51396,0 -99.206174,19.514192,0 -99.205919,19.514331,0 -99.20581,19.514406,0 -99.205523,19.514604,0 -99.205237,19.5148,0 -99.20514,19.514858,0 -99.204961,19.514964,0 -99.204672,19.515136,0 -99.204335,19.515034,0 -99.203907,19.514905,0 -99.203532,19.514791,0 -99.202941,19.514613,0 -99.20294,19.514613,0 -99.202735,19.51455,0 -99.202584,19.514505,0 -99.20258,19.514503,0 -99.201897,19.514297,0 -99.201888,19.514294,0 -99.201705,19.514239,0 -99.200975,19.514018,0 -99.2008,19.513965,0 -99.200296,19.513813,0 -99.200173,19.513776,0 -99.200159,19.513771,0 -99.200103,19.513755,0 -99.199969,19.513714,0 -99.199388,19.513538,0 -99.199175,19.513474,0 -99.199058,19.513439,0 -99.1988,19.51336,0 -99.198645,19.513314,0 -99.196942,19.512799,0 -99.19672,19.512732,0 -99.196623,19.512702,0 -99.194034,19.511919,0 -99.194006,19.511911,0 -99.192031,19.511313,0 -99.191898,19.511273,0 -99.191498,19.51058,0 -99.190675,19.51041,0 -99.188953,19.510056,0 -99.188929,19.510051,0 -99.188552,19.509973,0 -99.188431,19.509949,0 -99.187383,19.509519,0 -99.187,19.509362,0 -99.186986,19.509357,0 -99.186562,19.509159,0 -99.186167,19.508976,0 -99.185385,19.508613,0 -99.185221,19.508537,0 -99.185129,19.508507,0 -99.184617,19.508339,0 -99.184251,19.508218,0 -99.183828,19.508079,0 -99.183479,19.507965,0 -99.183076,19.507832,0 -99.1827,19.507709,0 -99.182451,19.507563,0 -99.182447,19.507561,0 -99.182307,19.507479,0 -99.182291,19.50747,0 -99.181916,19.50749,0 -99.177499,19.506314,0 -99.177412,19.506291,0 -99.177369,19.50628,0 -99.17705,19.506195,0 -99.176738,19.50642,0 -99.176624,19.506502,0 -99.176072,19.506901,0 -99.176026,19.506949,0 -99.175538,19.507456,0 -99.175403,19.507485,0 -99.175365,19.507493,0 -99.175184,19.507531,0 -99.174875,19.507597,0 -99.17404,19.50795,0 -99.173713,19.508162,0 -99.173666,19.508192,0 -99.173565,19.508257,0 -99.173043,19.508587,0 -99.172599,19.508427,0 -99.171604,19.508067,0 -99.171292,19.507954,0 -99.170878,19.507805,0 -99.170414,19.507637,0 -99.169956,19.507406,0 -99.169535,19.507193,0 -99.169143,19.506995,0 -99.169109,19.506978,0 -99.1688,19.506822,0 -99.168689,19.506766,0 -99.167371,19.506215,0 -99.167313,19.506191,0 -99.167078,19.506092,0 -99.166316,19.505829,0 -99.165855,19.505669,0 -99.165377,19.505503,0 -99.16494,19.505352,0 -99.164411,19.505169,0 -99.163938,19.505005,0 -99.163456,19.504852,0 -99.16299,19.504703,0 -99.162898,19.504673,0 -99.162559,19.504565,0 -99.162068,19.504408,0 -99.161617,19.504265,0 -99.161138,19.504112,0 -99.160697,19.503971,0 -99.160269,19.503835,0 -99.160214,19.503817,0 -99.159734,19.503664,0 -99.159252,19.50351,0 -99.157181,19.502849,0 -99.157702,19.504207,0 -99.157752,19.504339,0 -99.15788,19.504671,0 -99.158357,19.505917,0 -99.158437,19.506126,0 -99.158844,19.507188,0 -99.159049,19.507722,0 -99.15905,19.507723,0 -99.15946,19.508795,0 -99.159511,19.508927,0 -99.15961,19.509183,0 -99.160188,19.510693,0 -99.160666,19.511939,0 -99.160841,19.512396,0 -99.160847,19.512411,0 -99.160964,19.512716,0 -99.161069,19.51299,0 -99.161257,19.51348,0 -99.161775,19.514831,0 -99.162234,19.516029,0 -99.162302,19.516206,0 -99.16248,19.51667,0 -99.162889,19.517736,0 -99.162975,19.517961,0 -99.164734,19.518992,0 -99.165959,19.51971,0 -99.166411,19.519975,0 -99.166817,19.520213,0 -99.167261,19.520473,0 -99.167309,19.520501,0 -99.167782,19.520778,0 -99.167783,19.520779,0 -99.16823,19.52104,0 -99.168648,19.521285,0 -99.169088,19.521543,0 -99.169504,19.521787,0 -99.169963,19.522055,0 -99.170439,19.522242,0 -99.170521,19.522274,0 -99.170847,19.522402,0 -99.170891,19.522416,0 -99.171376,19.522577,0 -99.171807,19.52272,0 -99.171827,19.522727,0 -99.172291,19.52288,0 -99.172562,19.52297,0 -99.172771,19.523034,0 -99.172999,19.523104,0 -99.173235,19.523176,0 -99.173705,19.52332,0 -99.174182,19.523466,0 -99.174313,19.52364,0 -99.174388,19.523741,0 -99.174631,19.524065,0 -99.17445,19.524256,0 -99.174206,19.524514,0 -99.173994,19.524717,0 -99.173761,19.524938,0 -99.173459,19.525227,0 -99.173143,19.525528,0 -99.173071,19.525596,0 -99.172361,19.526273,0 -99.17214,19.526477,0 -99.171938,19.526663,0 -99.171367,19.527189,0 -99.171757,19.527479,0 -99.172115,19.527738,0 -99.17259,19.528083,0 -99.17261,19.528098,0 -99.172992,19.52837,0 -99.173454,19.528701,0 -99.173834,19.528983,0 -99.174372,19.529381,0 -99.175264,19.530032,0 -99.175361,19.530095,0 -99.175523,19.529845,0 -99.175765,19.529472,0 -99.176154,19.528874,0 -99.176264,19.52893,0 -99.176616,19.529109,0 -99.177046,19.529328,0 -99.176279,19.530643,0 -99.176349,19.530716,0 -99.176264,19.531049,0 -99.176064,19.531832,0 -99.176011,19.532036,0 -99.175424,19.531977,0 -99.174954,19.531878,0 -99.174526,19.531711,0 -99.17407,19.531572,0 -99.17265,19.530984,0 -99.172373,19.530869,0 -99.172334,19.530855,0 -99.171914,19.530711,0 -99.171471,19.530558,0 -99.170423,19.530198,0 -99.170381,19.530183,0 -99.169979,19.530045,0 -99.169864,19.530005,0 -99.169147,19.529759,0 -99.168745,19.52962,0 -99.168612,19.529575,0 -99.168004,19.529365,0 -99.167672,19.529251,0 -99.167436,19.529185,0 -99.166716,19.528985,0 -99.166253,19.528857,0 -99.165813,19.528735,0 -99.16524,19.528576,0 -99.164569,19.52839,0 -99.164167,19.528279,0 -99.16302,19.527964,0 -99.162785,19.527899,0 -99.162606,19.52785,0 -99.162193,19.527737,0 -99.162123,19.527717,0 -99.161766,19.52762,0 -99.161658,19.52759,0 -99.16116,19.527453,0 -99.161031,19.527418,0 -99.160701,19.527327,0 -99.160348,19.52723,0 -99.159858,19.527095,0 -99.159558,19.527013,0 -99.159159,19.526903,0 -99.159014,19.527057,0 -99.158829,19.527254,0 -99.157316,19.527878,0 -99.156798,19.528091,0 -99.157145,19.528257,0 -99.158341,19.528751,0 -99.158599,19.528858,0 -99.158517,19.528964,0 -99.158433,19.529073,0 -99.158309,19.529235,0 -99.157401,19.530417,0 -99.157371,19.530456,0 -99.157192,19.530689,0 -99.156907,19.53106,0 -99.156663,19.531379,0 -99.156494,19.531598,0 -99.156132,19.53207,0 -99.155847,19.53244,0 -99.156984,19.533071,0 -99.157844,19.533549,0 -99.158513,19.533921,0 -99.158045,19.535289,0 -99.157934,19.535424,0 -99.157919,19.535443,0 -99.157335,19.536153,0 -99.157066,19.536481,0 -99.156688,19.536941,0 -99.156045,19.537722,0 -99.155318,19.538608,0 -99.154647,19.539424,0 -99.154108,19.54008,0 -99.153957,19.540306,0 -99.153948,19.540319,0 -99.153573,19.540878,0 -99.153333,19.541237,0 -99.153252,19.541366,0 -99.153234,19.541393,0 -99.152931,19.541874,0 -99.152645,19.542328,0 -99.152393,19.542726,0 -99.152257,19.542942,0 -99.152092,19.543202,0 -99.152076,19.543228,0 -99.152074,19.543232,0 -99.151962,19.543409,0 -99.151635,19.543944,0 -99.151422,19.544294,0 -99.151217,19.54463,0 -99.151085,19.544846,0 -99.15152,19.545052,0 -99.152921,19.545716,0 -99.153026,19.545766,0 -99.154182,19.546313,0 -99.154381,19.546407,0 -99.154668,19.546543,0 -99.155333,19.546858,0 -99.155354,19.546869,0 -99.155402,19.54689,0 -99.155851,19.547088,0 -99.156555,19.547398,0 -99.157001,19.547595,0 -99.157575,19.547848,0 -99.158065,19.548064,0 -99.158188,19.548118,0 -99.158646,19.54832,0 -99.158545,19.548749,0 -99.158529,19.548821,0 -99.159253,19.548956,0 -99.15938,19.54898,0 -99.159349,19.549088,0 -99.159207,19.549166,0 -99.159208,19.549202,0 -99.159272,19.549214,0 -99.159508,19.54923,0 -99.159678,19.549219,0 -99.159765,19.549175,0 -99.159989,19.549127,0 -99.160075,19.549108,0 -99.1609,19.549261,0 -99.159282,19.551883,0 -99.158092,19.553691,0 -99.157569,19.555047,0 -99.157761,19.555951,0 -99.158047,19.556493,0 -99.158096,19.557351,0 -99.156144,19.560154,0 -99.154238,19.561376,0 -99.153333,19.561558,0 -99.152809,19.561965,0 -99.151616,19.561378,0 -99.150901,19.56052,0 -99.149186,19.562013,0 -99.148996,19.562374,0 -99.146805,19.564635,0 -99.145996,19.565901,0 -99.145893,19.567456,0 -99.14589,19.567491,0 -99.145807,19.568748,0 -99.14476,19.570827,0 -99.143665,19.572184,0 -99.143457,19.572347,0 -99.140389,19.574752,0 -99.139568,19.575395,0 -99.139142,19.578468,0 -99.137904,19.581135,0 -99.134841,19.583909,0 -99.13376,19.584888,0 -99.133761,19.586244,0 -99.13071,19.58715,0 -99.128363,19.588007,0 -99.126993,19.588508,0 -99.123706,19.592757,0 -99.122149,19.592476,0 -99.120784,19.59223,0 -99.119649,19.592026,0 -99.119462,19.591992,0 -99.117888,19.590592,0 -99.117887,19.590763,0 -99.116894,19.590791,0 -99.1159,19.590819,0 -99.114907,19.590847,0 -99.113867,19.590876,0 -99.112827,19.590905,0 -99.111787,19.590935,0 -99.110746,19.590964,0 -99.109706,19.590993,0 -99.108666,19.591022,0 -99.107626,19.591051,0 -99.106586,19.59108,0 -99.106399,19.591086,0 -99.106371,19.591084,0 -99.106119,19.590989,0 -99.105931,19.590897,0 -99.105545,19.590619,0 -99.105274,19.590436,0 -99.104853,19.590113,0 -99.104543,19.589953,0 -99.104073,19.589585,0 -99.103497,19.589265,0 -99.103022,19.588944,0 -99.102702,19.588784,0 -99.102397,19.588714,0 -99.102092,19.588692,0 -99.101491,19.588622,0 -99.100993,19.58853,0 -99.100436,19.588485,0 -99.100208,19.588485,0 -99.099976,19.588508,0 -99.099719,19.588575,0 -99.099443,19.588646,0 -99.098654,19.588922,0 -99.098373,19.589012,0 -99.097816,19.589173,0 -99.097443,19.589288,0 -99.097002,19.589379,0 -99.096513,19.589472,0 -99.096159,19.589562,0 -99.09567,19.589563,0 -99.095414,19.58954,0 -99.095065,19.58954,0 -99.094658,19.589518,0 -99.094295,19.589563,0 -99.093942,19.589609,0 -99.093491,19.589679,0 -99.093118,19.589724,0 -99.092803,19.589792,0 -99.092527,19.58984,0 -99.09229,19.589885,0 -99.092038,19.589863,0 -99.091607,19.589793,0 -99.091573,19.589793,0 -99.091171,19.589771,0 -99.09091,19.589723,0 -99.090343,19.589586,0 -99.090038,19.589541,0 -99.089564,19.589448,0 -99.088912,19.589345,0 -99.088261,19.589241,0 -99.088012,19.590093,0 -99.087762,19.590945,0 -99.087549,19.591999,0 -99.08738,19.592841,0 -99.087187,19.593794,0 -99.087009,19.594677,0 -99.086858,19.595425,0 -99.086724,19.596087,0 -99.086599,19.596707,0 -99.086502,19.597186,0 -99.088695,19.598435,0 -99.089945,19.599148,0 -99.090627,19.599537,0 -99.091148,19.599834,0 -99.09153,19.600052,0 -99.092205,19.600436,0 -99.091322,19.602822,0 -99.091081,19.603396,0 -99.090917,19.603925,0 -99.090301,19.606414,0 -99.089684,19.608903,0 -99.089468,19.609662,0 -99.089376,19.610189,0 -99.088887,19.610319,0 -99.088624,19.610309,0 -99.088405,19.610596,0 -99.087996,19.611328,0 -99.08725,19.612705,0 -99.086433,19.614118,0 -99.086393,19.614208,0 -99.08628,19.614465,0 -99.08597,19.615013,0 -99.085766,19.615375,0 -99.085603,19.615666,0 -99.085775,19.615771,0 -99.08596,19.615909,0 -99.085898,19.616037,0 -99.085875,19.616059,0 -99.085814,19.616117,0 -99.085701,19.616165,0 -99.085624,19.616213,0 -99.085654,19.616355,0 -99.085673,19.616443,0 -99.085649,19.616545,0 -99.085515,19.616679,0 -99.085497,19.616696,0 -99.08542,19.61676,0 -99.085222,19.616921,0 -99.085061,19.617052,0 -99.084895,19.617187,0 -99.084758,19.617299,0 -99.084597,19.617431,0 -99.084461,19.617541,0 -99.084253,19.617711,0 -99.084132,19.617809,0 -99.08395,19.617957,0 -99.083743,19.618126,0 -99.083641,19.618209,0 -99.083427,19.618384,0 -99.083321,19.61847,0 -99.083104,19.618647,0 -99.083011,19.618723,0 -99.082801,19.618894,0 -99.0827,19.618976,0 -99.082523,19.619121,0 -99.082391,19.619254,0 -99.082915,19.620242,0 -99.08313,19.620666,0 -99.083082,19.620745,0 -99.083042,19.620809,0 -99.082967,19.62094,0 -99.082697,19.62141,0 -99.082162,19.62234,0 -99.082069,19.622502,0 -99.081958,19.622698,0 -99.081893,19.62282,0 -99.081831,19.622934,0 -99.081658,19.623254,0 -99.081468,19.62319,0 -99.081268,19.623527,0 -99.08044,19.62501,0 -99.080011,19.625764,0 -99.079787,19.626174,0 -99.079697,19.62631,0 -99.07957,19.626317,0 -99.079564,19.626669,0 -99.079508,19.62677,0 -99.079351,19.627054,0 -99.079153,19.627393,0 -99.077812,19.629791,0 -99.077709,19.629975,0 -99.077421,19.63049,0 -99.077128,19.631013,0 -99.076826,19.631552,0 -99.076548,19.63205,0 -99.076172,19.632721,0 -99.075934,19.633164,0 -99.075888,19.63325,0 -99.07577,19.633469,0 -99.075278,19.634383,0 -99.075049,19.634861,0 -99.074892,19.635188,0 -99.074453,19.636202,0 -99.074339,19.636306,0 -99.074305,19.63637,0 -99.074292,19.636485,0 -99.074262,19.636683,0 -99.074178,19.636802,0 -99.074056,19.638682,0 -99.073944,19.639809,0 -99.073768,19.639912,0 -99.073853,19.640082,0 -99.073657,19.643187,0 -99.07363,19.643612,0 -99.073556,19.644793,0 -99.073483,19.645045,0 -99.073431,19.645226,0 -99.073388,19.646038,0 -99.073344,19.646852,0 -99.073285,19.647957,0 -99.073236,19.648855,0 -99.073121,19.649803,0 -99.073077,19.650173,0 -99.073073,19.65072,0 -99.073145,19.650644,0 -99.073173,19.65063,0 -99.073188,19.650674,0 -99.07319,19.650678,0 -99.0732,19.650781,0 -99.073204,19.650963,0 -99.073169,19.651074,0 -99.073119,19.651172,0 -99.073063,19.651302,0 -99.073192,19.65151,0 -99.073195,19.651515,0 -99.073239,19.65165,0 -99.073098,19.651634,0 -99.072971,19.651617,0 -99.072946,19.651596,0 -99.07291,19.65227,0 -99.072824,19.65324,0 -99.072769,19.653856,0 -99.072687,19.654822,0 -99.072597,19.655873,0 -99.072587,19.655987,0 -99.07247,19.657105,0 -99.072416,19.657186,0 -99.07181,19.657311,0 -99.071171,19.657441,0 -99.070554,19.657568,0 -99.069984,19.657684,0 -99.069295,19.657825,0 -99.069176,19.65785,0 -99.069094,19.657803,0 -99.06894,19.657875,0 -99.068859,19.657913,0 -99.068808,19.657938,0 -99.068488,19.657998,0 -99.068317,19.65803,0 -99.068111,19.658071,0 -99.066765,19.658338,0 -99.066461,19.658398,0 -99.066112,19.658466,0 -99.066069,19.658474,0 -99.065701,19.658545,0 -99.065376,19.658607,0 -99.065304,19.658621,0 -99.064916,19.658697,0 -99.064892,19.658701,0 -99.063698,19.658933,0 -99.063178,19.659039,0 -99.062635,19.659149,0 -99.061523,19.659325,0 -99.060832,19.65946,0 -99.059506,19.659719,0 -99.059411,19.659738,0 -99.058455,19.659924,0 -99.057499,19.66011,0 -99.056543,19.660296,0 -99.055587,19.660482,0 -99.055318,19.660532,0 -99.054355,19.660709,0 -99.053392,19.660886,0 -99.0532,19.661852,0 -99.053019,19.662767,0 -99.052839,19.663682,0 -99.052658,19.664596,0 -99.052477,19.665511,0 -99.052296,19.666426,0 -99.052115,19.667341,0 -99.051934,19.668256,0 -99.051753,19.669171,0 -99.051572,19.670085,0 -99.051391,19.671,0 -99.05121,19.671915,0 -99.051029,19.67283,0 -99.050848,19.673745,0 -99.050667,19.67466,0 -99.050486,19.675575,0 -99.050305,19.676489,0 -99.050124,19.677404,0 -99.049943,19.678319,0 -99.049762,19.679234,0 -99.048703,19.678987,0 -99.047977,19.678836,0 -99.047985,19.678721,0 -99.047914,19.678682,0 -99.046174,19.67827,0 -99.046166,19.678313,0 -99.046115,19.678502,0 -99.046108,19.678532,0 -99.046055,19.678731,0 -99.046051,19.678751,0 -99.045997,19.678961,0 -99.045938,19.679189,0 -99.045894,19.67936,0 -99.045881,19.679407,0 -99.045821,19.679626,0 -99.04582,19.679643,0 -99.045705,19.680084,0 -99.045534,19.680742,0 -99.045369,19.681378,0 -99.045202,19.682024,0 -99.04503,19.682696,0 -99.044859,19.683375,0 -99.044701,19.683967,0 -99.044783,19.684115,0 -99.044676,19.684171,0 -99.044374,19.685332,0 -99.044204,19.685988,0 -99.044032,19.686641,0 -99.043856,19.6873,0 -99.043684,19.687958,0 -99.04356,19.688427,0 -99.04351,19.688617,0 -99.043338,19.689274,0 -99.045186,19.689709,0 -99.045275,19.689768,0 -99.047125,19.6902,0 -99.046865,19.691211,0 -99.046604,19.692223,0 -99.04637,19.693133,0 -99.046135,19.694042,0 -99.045901,19.694952,0 -99.045667,19.695862,0 -99.045432,19.696772,0 -99.045198,19.697682,0 -99.044946,19.698661,0 -99.044694,19.69964,0 -99.043702,19.699489,0 -99.042709,19.699338,0 -99.041717,19.699187,0 -99.040725,19.699036,0 -99.039732,19.698885,0 -99.03874,19.698734,0 -99.037747,19.698584,0 -99.036755,19.698433,0 -99.036018,19.699126,0 -99.035282,19.699819,0 -99.034545,19.700512,0 -99.033808,19.701206,0 -99.033071,19.701899,0 -99.032993,19.701925,0 -99.033072,19.702853,0 -99.033151,19.703781,0 -99.03323,19.704709,0 -99.033309,19.705637,0 -99.033387,19.706566,0 -99.033466,19.707494,0 -99.033545,19.708422,0 -99.033624,19.70935,0 -99.033703,19.710278,0 -99.033782,19.711207,0 -99.03386,19.712135,0 -99.033939,19.713063,0 -99.034018,19.713991,0 -99.034097,19.714919,0 -99.034176,19.715847,0 -99.034255,19.716776,0 -99.034334,19.717704,0 -99.034412,19.718632,0 -99.034491,19.71956,0 -99.03457,19.720488,0 -99.034649,19.721417,0 -99.034728,19.722345,0 -99.034807,19.723273,0 -99.034885,19.724201,0 -99.034964,19.725129,0 -99.035043,19.726057,0 -99.035092,19.727394,0 -99.035141,19.72873,0 -99.035102,19.728732,0 -99.03415,19.728799,0 -99.033782,19.728826,0 -99.033464,19.728849,0 -99.033101,19.728874,0 -99.032754,19.7289,0 -99.032051,19.72895,0 -99.031712,19.728973,0 -99.031377,19.728996,0 -99.03106,19.729019,0 -99.030731,19.729041,0 -99.030406,19.729067,0 -99.029723,19.729115,0 -99.029336,19.729142,0 -99.029005,19.729165,0 -99.028636,19.729199,0 -99.028295,19.729233,0 -99.027963,19.72925,0 -99.0276,19.729279,0 -99.027235,19.7293,0 -99.026903,19.729321,0 -99.026531,19.729353,0 -99.026184,19.729375,0 -99.025866,19.729394,0 -99.025503,19.729424,0 -99.025158,19.729451,0 -99.024794,19.729474,0 -99.024459,19.729501,0 -99.024085,19.729524,0 -99.023712,19.729561,0 -99.023377,19.729579,0 -99.023024,19.729604,0 -99.022855,19.729616,0 -99.022678,19.729564,0 -99.022334,19.729474,0 -99.021905,19.72937,0 -99.021431,19.729249,0 -99.020906,19.729123,0 -99.019908,19.728874,0 -99.018909,19.728626,0 -99.01791,19.728378,0 -99.016912,19.72813,0 -99.01672,19.728087,0 -99.015297,19.727729,0 -99.015229,19.727713,0 -99.014234,19.727468,0 -99.013661,19.727568,0 -99.012686,19.727341,0 -99.011711,19.727114,0 -99.010735,19.726886,0 -99.00976,19.726659,0 -99.008785,19.726432,0 -99.007809,19.726204,0 -99.006834,19.725977,0 -99.005859,19.725749,0 -99.004889,19.725516,0 -99.003919,19.725283,0 -99.002949,19.72505,0 -99.001979,19.724817,0 -99.001009,19.724584,0 -99.00004,19.724351,0 -98.99907,19.724118,0 -98.9981,19.723885,0 -98.99713,19.723652,0 -98.99616,19.723419,0 -98.99519,19.723186,0 -98.994176,19.722937,0 -98.993162,19.722689,0 -98.992148,19.722441,0 -98.991134,19.722192,0 -98.99012,19.721944,0 -98.989106,19.721695,0 -98.988419,19.72236,0 -98.987732,19.723024,0 -98.987044,19.723689,0 -98.986357,19.724353,0 -98.985669,19.725018,0 -98.984982,19.725682,0 -98.984295,19.726347,0 -98.983607,19.727011,0 -98.98292,19.727675,0 -98.982232,19.72834,0 -98.981579,19.729034,0 -98.980925,19.729729,0 -98.980272,19.730423,0 -98.979618,19.731118,0 -98.978965,19.731813,0 -98.978311,19.732507,0 -98.977658,19.733202,0 -98.977387,19.734095,0 -98.977116,19.734988,0 -98.976845,19.735881,0 -98.976574,19.736774,0 -98.976612,19.736942,0 -98.976528,19.737221,0 -98.976356,19.737392,0 -98.975922,19.738685,0 -98.975627,19.739721,0 -98.975332,19.740757,0 -98.975066,19.741775,0 -98.974799,19.742794,0 -98.974532,19.743812,0 -98.974266,19.744831,0 -98.973978,19.745736,0 -98.973661,19.746734,0 -98.973606,19.747427,0 -98.973485,19.747782,0 -98.973552,19.748746,0 -98.973619,19.74971,0 -98.973686,19.750674,0 -98.973871,19.751723,0 -98.974016,19.75249,0 -98.974341,19.753366,0 -98.974757,19.755043,0 -98.975003,19.755102,0 -98.975225,19.756182,0 -98.975447,19.757263,0 -98.975669,19.758343,0 -98.976831,19.758633,0 -98.977993,19.758923,0 -98.978947,19.759178,0 -98.979901,19.759434,0 -98.980947,19.759715,0 -98.981994,19.759995,0 -98.98304,19.760276,0 -98.984086,19.760557,0 -98.985133,19.760837,0 -98.986093,19.761095,0 -98.987053,19.761352,0 -98.988013,19.761609,0 -98.988481,19.761737,0 -98.989207,19.761936,0 -98.990198,19.762206,0 -98.991189,19.762477,0 -98.992725,19.763034,0 -98.993184,19.7632,0 -98.993356,19.763263,0 -98.993822,19.763451,0 -98.994305,19.763646,0 -98.994532,19.76373,0 -98.995606,19.76413,0 -98.99668,19.764529,0 -98.997754,19.764928,0 -98.998829,19.765328,0 -99.000072,19.765806,0 -99.000277,19.765889,0 -99.001616,19.766429,0 -99.002672,19.766834,0 -99.003729,19.767239,0 -99.004786,19.767644,0 -99.005842,19.76805,0 -99.00603,19.768122,0 -99.006358,19.768223,0 -99.007331,19.768538,0 -99.008304,19.768853,0 -99.009737,19.769316,0 -99.010721,19.769635,0 -99.011706,19.769953,0 -99.01269,19.770271,0 -99.013675,19.77059,0 -99.014659,19.770908,0 -99.015644,19.771226,0 -99.016628,19.771545,0 -99.01749,19.771823,0 -99.017949,19.771388,0 -99.018174,19.771656,0 -99.0186,19.772121,0 -99.018972,19.772529,0 -99.019819,19.773441,0 -99.020647,19.774334,0 -99.021041,19.774758,0 -99.021459,19.775209,0 -99.022264,19.776113,0 -99.022669,19.77653,0 -99.02305,19.776922,0 -99.023104,19.776878,0 -99.023172,19.776948,0 -99.023874,19.777703,0 -99.024576,19.778459,0 -99.025279,19.779214,0 -99.024878,19.77918,0 -99.024639,19.779126,0 -99.024199,19.77898,0 -99.023587,19.778792,0 -99.02288,19.778575,0 -99.022345,19.778411,0 -99.021967,19.778295,0 -99.021241,19.778071,0 -99.020449,19.777828,0 -99.019033,19.777392,0 -99.018048,19.777079,0 -99.017063,19.776766,0 -99.016078,19.776453,0 -99.014722,19.776022,0 -99.013378,19.775595,0 -99.012033,19.775168,0 -99.011081,19.774852,0 -99.010129,19.774536,0 -99.009177,19.77422,0 -99.008225,19.773903,0 -99.007687,19.773726,0 -99.007652,19.773841,0 -99.007207,19.775294,0 -99.006811,19.776512,0 -99.006394,19.778113,0 -99.006952,19.778262,0 -99.008273,19.778619,0 -99.009595,19.778976,0 -99.009515,19.779253,0 -99.009288,19.780039,0 -99.008979,19.781109,0 -99.008647,19.782335,0 -99.008528,19.782773,0 -99.008314,19.783561,0 -99.008974,19.784703,0 -99.009634,19.785844,0 -99.009571,19.786071,0 -99.00967,19.786228,0 -99.00968,19.786245,0 -99.009895,19.786419,0 -99.009496,19.787249,0 -99.009102,19.788115,0 -99.008349,19.789735,0 -99.007922,19.790677,0 -99.007494,19.791618,0 -99.006308,19.790924,0 -99.005123,19.790229,0 -99.004262,19.789711,0 -99.0034,19.789192,0 -99.002539,19.788673,0 -99.002428,19.788606,0 -99.002017,19.788384,0 -99.001201,19.787931,0 -99.000562,19.787564,0 -99.000515,19.78754,0 -98.999585,19.787064,0 -98.998655,19.786588,0 -98.998555,19.786639,0 -98.998316,19.786696,0 -98.998293,19.7867,0 -98.99797,19.787414,0 -98.997818,19.78775,0 -98.997881,19.788294,0 -98.996915,19.78834,0 -98.995896,19.788389,0 -98.995102,19.788427,0 -98.994409,19.788461,0 -98.993861,19.788487,0 -98.992817,19.788537,0 -98.992393,19.788557,0 -98.991456,19.788602,0 -98.991091,19.78862,0 -98.990694,19.788639,0 -98.990363,19.788655,0 -98.989605,19.789249,0 -98.98945,19.789396,0 -98.989357,19.789508,0 -98.989243,19.789633,0 -98.989204,19.789814,0 -98.989064,19.78993,0 -98.988611,19.790228,0 -98.988318,19.790473,0 -98.98823,19.790673,0 -98.988003,19.790888,0 -98.987716,19.790995,0 -98.986849,19.79173,0 -98.98585,19.792571,0 -98.984851,19.793411,0 -98.983623,19.794557,0 -98.982636,19.795485,0 -98.981968,19.796189,0 -98.981301,19.796893,0 -98.980633,19.797597,0 -98.979966,19.798301,0 -98.979299,19.799005,0 -98.978631,19.799708,0 -98.977964,19.800412,0 -98.977296,19.801116,0 -98.976629,19.80182,0 -98.975962,19.802524,0 -98.975294,19.803227,0 -98.974627,19.803931,0 -98.973959,19.804635,0 -98.973572,19.804998,0 -98.972845,19.805725,0 -98.972117,19.806452,0 -98.97139,19.807179,0 -98.970877,19.80797,0 -98.970872,19.807977,0 -98.970244,19.808649,0 -98.970198,19.808697,0 -98.970205,19.8087,0 -98.970364,19.808761,0 -98.974986,19.811987,0 -98.976331,19.812965,0 -98.976399,19.813048,0 -98.977595,19.813949,0 -98.977609,19.814262,0 -98.977631,19.814274,0 -98.978296,19.814634,0 -98.978382,19.814681,0 -98.978473,19.814729,0 -98.979233,19.815126,0 -98.980215,19.815557,0 -98.981155,19.815994,0 -98.982096,19.816431,0 -98.983036,19.816868,0 -98.984106,19.817365,0 -98.985176,19.817862,0 -98.986069,19.818303,0 -98.986962,19.818743,0 -98.988104,19.819253,0 -98.989246,19.819763,0 -98.989482,19.819909,0 -98.99059,19.820433,0 -98.991699,19.820958,0 -98.991706,19.820961,0 -98.992807,19.821483,0 -98.993332,19.821725,0 -98.995016,19.822495,0 -98.995716,19.822844,0 -98.996688,19.823332,0 -98.997661,19.82382,0 -99.0002,19.824951,0 -99.008201,19.828402,0 -99.008288,19.828531,0 -99.002171,19.832137,0 -99.002109,19.83219,0 -99.002019,19.832498,0 -99.000055,19.833332,0 -99.000152,19.834179,0 -99.001004,19.835447,0 -99.001205,19.835753,0 -99.001311,19.835,0 -99.008324,19.846935,0 -99.009645,19.849186,0 -99.010308,19.850323,0 -99.010472,19.850385,0 -99.010445,19.850558,0 -99.010673,19.850947,0 -99.011344,19.852093,0 -99.011941,19.853066,0 -99.012306,19.853733,0 -99.015618,19.859386,0 -99.017032,19.859703,0 -99.01683,19.861453,0 -99.018675,19.861863,0 -99.018417,19.86368,0 -99.020391,19.864107,0 -99.020174,19.865863,0 -99.020042,19.866803,0 -99.020581,19.867683,0 -99.006119,19.874024,0 -99.000166,19.876663,0 -98.998839,19.877269,0 -98.993391,19.879638,0 -98.991254,19.88058,0 -98.989225,19.881444,0 -98.987558,19.88218,0 -98.971404,19.889337,0 -98.966006,19.891657,0 -98.961625,19.888806,0 -98.960852,19.888304,0 -98.960739,19.88823,0 -98.96002,19.887762,0 -98.959723,19.887569,0 -98.958566,19.886816,0 -98.958453,19.886743,0 -98.958032,19.886473,0 -98.958014,19.886463,0 -98.957966,19.886439,0 -98.957652,19.886233,0 -98.957356,19.88604,0 -98.956989,19.885808,0 -98.956693,19.88562,0 -98.956559,19.885536,0 -98.95612,19.885258,0 -98.955985,19.885173,0 -98.955975,19.885166,0 -98.955611,19.885673,0 -98.955555,19.88575,0 -98.95539,19.88598,0 -98.955372,19.886005,0 -98.955089,19.886397,0 -98.954953,19.886587,0 -98.954867,19.886706,0 -98.9548,19.886799,0 -98.954679,19.886967,0 -98.954668,19.886982,0 -98.954311,19.887479,0 -98.953547,19.88854,0 -98.954525,19.889159,0 -98.955748,19.889946,0 -98.95725,19.890913,0 -98.957578,19.891124,0 -98.958294,19.891585,0 -98.958661,19.891821,0 -98.961403,19.893612,0 -98.961446,19.893641,0 -98.959203,19.89461,0 -98.957811,19.89521,0 -98.957542,19.895326,0 -98.957036,19.895544,0 -98.956807,19.895643,0 -98.955059,19.896396,0 -98.955216,19.897205,0 -98.9553,19.897634,0 -98.955373,19.898012,0 -98.955444,19.898373,0 -98.955512,19.898723,0 -98.955602,19.899183,0 -98.955654,19.899454,0 -98.955748,19.899935,0 -98.956243,19.902477,0 -98.956352,19.903036,0 -98.956581,19.904268,0 -98.95675,19.905174,0 -98.956829,19.905601,0 -98.956684,19.905291,0 -98.956154,19.905507,0 -98.953402,19.906628,0 -98.953199,19.906711,0 -98.952723,19.906715,0 -98.953483,19.911551,0 -98.956112,19.928184,0 -98.956248,19.928143,0 -98.957024,19.927358,0 -98.958257,19.926086,0 -98.960445,19.925058,0 -98.960458,19.925663,0 -98.961281,19.92587,0 -98.962326,19.926396,0 -98.962192,19.927433,0 -98.961983,19.927391,0 -98.961826,19.929175,0 -98.963821,19.929535,0 -98.965033,19.929719,0 -98.965291,19.929624,0 -98.966106,19.929841,0 -98.965988,19.930731,0 -98.96657,19.931409,0 -98.968333,19.933809,0 -98.969966,19.932699,0 -98.970131,19.932862,0 -98.972506,19.935907,0 -98.972798,19.935956,0 -98.983165,19.938613,0 -98.983049,19.940714,0 -98.983069,19.940993,0 -98.983104,19.941484,0 -98.983206,19.941986,0 -98.984117,19.94502,0 -98.984669,19.946268,0 -98.984691,19.946318,0 -98.985364,19.945519,0 -98.994619,19.943305,0 -98.999089,19.94201,0 -98.999779,19.941825,0 -98.999615,19.942795,0 -98.998614,19.945906,0 -98.998614,19.947216,0 -98.998171,19.948289,0 -98.997595,19.948872,0 -98.995768,19.956165,0 -98.995623,19.956892,0 -98.981176,19.954721,0 -98.967616,19.971529,0 -98.967396,19.971785,0 -98.967248,19.971983,0 -98.967047,19.972233,0 -98.966832,19.97269,0 -98.966644,19.973099,0 -98.966531,19.973454,0 -98.966418,19.973667,0 -98.966324,19.973862,0 -98.966219,19.973995,0 -98.965954,19.974018,0 -98.965567,19.974006,0 -98.965398,19.973949,0 -98.96524,19.973938,0 -98.964805,19.974063,0 -98.964406,19.974143,0 -98.964019,19.974143,0 -98.962649,19.974384,0 -98.96196,19.974543,0 -98.961501,19.974658,0 -98.960957,19.974829,0 -98.960522,19.97492,0 -98.960171,19.974977,0 -98.959627,19.975034,0 -98.959288,19.975216,0 -98.959047,19.975388,0 -98.958769,19.975582,0 -98.958593,19.975709,0 -98.958101,19.975799,0 -98.957714,19.97586,0 -98.957095,19.975677,0 -98.955682,19.975722,0 -98.952225,19.974129,0 -98.948549,19.974018,0 -98.948659,19.974775,0 -98.948255,19.975266,0 -98.945752,19.975174,0 -98.944742,19.975052,0 -98.944144,19.975739,0 -98.943332,19.976783,0 -98.94287,19.977988,0 -98.94273,19.979073,0 -98.94302,19.980673,0 -98.943487,19.982554,0 -98.943759,19.984978,0 -98.943603,19.986888,0 -98.943276,19.989129,0 -98.943117,19.993371,0 -98.942809,19.996253,0 -98.942568,19.998512,0 -98.942132,20.000623,0 -98.942646,20.001936,0 -98.943157,20.0028,0 -98.943596,20.003878,0 -98.943804,20.004417,0 -98.943996,20.004939,0 -98.944388,20.005119,0 -98.94487,20.005356,0 -98.945274,20.00572,0 -98.945717,20.00632,0 -98.945928,20.00692,0 -98.946121,20.007193,0 -98.946371,20.00723,0 -98.946679,20.007193,0 -98.946891,20.007539,0 -98.947141,20.007903,0 -98.947314,20.008285,0 -98.947487,20.008992,0 -98.947167,20.009334,0 -98.94722,20.009811,0 -98.94428,20.017292,0 -98.945069,20.018768,0 -98.944928,20.019622,0 -98.944787,20.02014,0 -98.944701,20.020471,0 -98.945135,20.023046,0 -98.945595,20.023298,0 -98.945502,20.023838,0 -98.945594,20.024023,0 -98.945817,20.024041,0 -98.946078,20.024301,0 -98.946073,20.024683,0 -98.946575,20.025024,0 -98.946701,20.025563,0 -98.946474,20.025715,0 -98.946717,20.025878,0 -98.946493,20.026525,0 -98.946628,20.02668,0 -98.946655,20.027475,0 -98.946894,20.027625,0 -98.947003,20.027779,0 -98.947194,20.027771,0 -98.947307,20.027954,0 -98.947238,20.028169,0 -98.947576,20.028211,0 -98.94768,20.028566,0 -98.947997,20.028639,0 -98.947953,20.028921,0 -98.948056,20.028999,0 -98.947937,20.029568,0 -98.948392,20.02941,0 -98.948703,20.029339,0 -98.949457,20.029614,0 -98.949634,20.029691,0 -98.949694,20.029744,0 -98.949747,20.03005,0 -98.949939,20.030061,0 -98.950327,20.029872,0 -98.950906,20.029886,0 -98.951056,20.029808,0 -98.951557,20.02911,0 -98.951837,20.028611,0 -98.953702,20.030531,0 -98.954282,20.031128,0 -98.955163,20.027836,0 -98.955251,20.027833,0 -98.955722,20.027905,0 -98.956212,20.028024,0 -98.956631,20.027964,0 -98.956637,20.027983,0 -98.956887,20.028053,0 -98.957352,20.028318,0 -98.957824,20.028533,0 -98.95838,20.028772,0 -98.958875,20.028869,0 -98.95927,20.029004,0 -98.959568,20.028752,0 -98.959854,20.028629,0 -98.960191,20.028629,0 -98.96058,20.028752,0 -98.960719,20.028945,0 -98.960736,20.029109,0 -98.960653,20.02908,0 -98.960241,20.031623,0 -98.96237,20.031594,0 -98.962792,20.031047,0 -98.961765,20.030712,0 -98.962796,20.030518,0 -98.963012,20.03076,0 -98.963029,20.031,0 -98.963464,20.031199,0 -98.963977,20.031238,0 -98.963898,20.031347,0 -98.964043,20.031578,0 -98.964053,20.031769,0 -98.963472,20.031825,0 -98.96317,20.031887,0 -98.962757,20.031979,0 -98.962355,20.032021,0 -98.961963,20.032108,0 -98.961462,20.032148,0 -98.961174,20.032181,0 -98.960602,20.032238,0 -98.9603,20.032389,0 -98.959878,20.032601,0 -98.959078,20.037458,0 -98.959061,20.037458,0 -98.958883,20.03764,0 -98.958808,20.037936,0 -98.958555,20.038315,0 -98.958406,20.038442,0 -98.958361,20.038667,0 -98.958406,20.038976,0 -98.95854,20.039328,0 -98.958688,20.039565,0 -98.95873,20.03957,0 -98.959016,20.039595,0 -98.959404,20.039525,0 -98.959761,20.039469,0 -98.960014,20.039455,0 -98.960461,20.039399,0 -98.960449,20.039798,0 -98.960374,20.040063,0 -98.96043,20.040292,0 -98.960543,20.040451,0 -98.960804,20.040751,0 -98.961103,20.040945,0 -98.961496,20.041104,0 -98.961907,20.041457,0 -98.962019,20.041652,0 -98.962241,20.041786,0 -98.96248,20.042052,0 -98.962699,20.042346,0 -98.962823,20.042554,0 -98.962999,20.042715,0 -98.963532,20.043154,0 -98.963643,20.043263,0 -98.963907,20.043205,0 -98.96441,20.043071,0 -98.964467,20.042917,0 -98.964611,20.042745,0 -98.964812,20.042564,0 -98.964985,20.042465,0 -98.965119,20.042375,0 -98.965358,20.042338,0 -98.965559,20.042348,0 -98.965866,20.042438,0 -98.966099,20.042743,0 -98.966348,20.042993,0 -98.966518,20.043214,0 -98.966657,20.043349,0 -98.966776,20.043497,0 -98.966871,20.043676,0 -98.966986,20.043786,0 -98.967053,20.043894,0 -98.967206,20.044007,0 -98.967395,20.044097,0 -98.967659,20.044208,0 -98.968262,20.044399,0 -98.968682,20.044555,0 -98.969043,20.044839,0 -98.969373,20.045094,0 -98.969794,20.045278,0 -98.970019,20.045406,0 -98.970275,20.045747,0 -98.97029,20.046144,0 -98.970275,20.04647,0 -98.97032,20.046683,0 -98.970395,20.04691,0 -98.97068,20.047094,0 -98.970921,20.047208,0 -98.971479,20.04744,0 -98.971779,20.047611,0 -98.972641,20.048178,0 -98.972928,20.048477,0 -98.973154,20.048777,0 -98.973396,20.049133,0 -98.973622,20.049574,0 -98.973911,20.050306,0 -98.974167,20.05069,0 -98.974635,20.051075,0 -98.975163,20.051688,0 -98.97545,20.052086,0 -98.975767,20.052443,0 -98.976204,20.052813,0 -98.976566,20.053013,0 -98.977038,20.053277,0 -98.977626,20.053633,0 -98.978049,20.053776,0 -98.978486,20.053904,0 -98.97921,20.054118,0 -98.979784,20.054631,0 -98.979965,20.055072,0 -98.980116,20.055514,0 -98.980221,20.055713,0 -98.980402,20.05597,0 -98.980583,20.056212,0 -98.980825,20.056412,0 -98.981387,20.056718,0 -98.981896,20.056862,0 -98.982064,20.05743,0 -98.98191,20.057764,0 -98.982244,20.058331,0 -98.982479,20.058703,0 -98.983059,20.058949,0 -98.983791,20.059195,0 -98.984996,20.059903,0 -98.985219,20.060229,0 -98.98555,20.060778,0 -98.986294,20.061135,0 -98.986641,20.061057,0 -98.986744,20.061188,0 -98.986853,20.06121,0 -98.986907,20.061397,0 -98.987094,20.061555,0 -98.987441,20.061825,0 -98.987988,20.062386,0 -98.98835,20.062671,0 -98.988637,20.062927,0 -98.988878,20.063354,0 -98.988969,20.06387,0 -98.989291,20.064494,0 -98.989386,20.064715,0 -98.989493,20.064994,0 -98.989519,20.065362,0 -98.989436,20.065924,0 -98.989277,20.0663,0 -98.989121,20.066694,0 -98.989051,20.067012,0 -98.98897,20.067862,0 -98.988978,20.068262,0 -98.989003,20.068217,0 -98.989159,20.067935,0 -98.989392,20.06752,0 -98.989629,20.067124,0 -98.989817,20.066723,0 -98.989977,20.066453,0 -98.990111,20.06636,0 -98.990274,20.066457,0 -98.990365,20.06661,0 -98.990561,20.066818,0 -98.990954,20.066948,0 -98.991243,20.06697,0 -98.991358,20.06673,0 -98.991774,20.06624,0 -98.992074,20.065847,0 -98.992328,20.065917,0 -98.992563,20.065747,0 -98.992761,20.064743,0 -98.992923,20.063943,0 -98.993147,20.063141,0 -98.993601,20.062916,0 -98.994842,20.061403,0 -98.995626,20.060125,0 -98.995579,20.059662,0 -98.996334,20.058375,0 -98.996838,20.058075,0 -98.999198,20.054166,0 -99.00011,20.053343,0 -99.00116,20.052394,0 -99.005644,20.053205,0 -99.006023,20.0514,0 -99.008158,20.042361,0 -99.009,20.03891,0 -99.009777,20.03893,0 -99.010292,20.036293,0 -99.010362,20.03614,0 -99.010479,20.035886,0 -99.010498,20.035479,0 -99.010435,20.035274,0 -99.010423,20.035232,0 -99.009895,20.035231,0 -99.009657,20.035218,0 -99.009454,20.035202,0 -99.009311,20.035146,0 -99.007829,20.033866,0 -99.007867,20.033733,0 -99.00794,20.033119,0 -99.007662,20.033053,0 -99.00786,20.03113,0 -99.007524,20.0311,0 -99.006688,20.031025,0 -99.005936,20.030933,0 -99.005617,20.032779,0 -99.004769,20.032673,0 -99.005098,20.030835,0 -99.005467,20.028964,0 -99.005267,20.028944,0 -99.005643,20.027389,0 -99.005961,20.026354,0 -99.006517,20.025077,0 -99.006985,20.023994,0 -99.007152,20.023696,0 -99.007835,20.022064,0 -99.00845,20.020871,0 -99.008748,20.020208,0 -99.009678,20.017976,0 -99.009921,20.017729,0 -99.012734,20.012031,0 -99.013281,20.010925,0 -99.013391,20.01003,0 -99.013508,20.009206,0 -99.013978,20.005645,0 -99.01367,20.000518,0 -99.013524,20.000391,0 -99.01351,20.000266,0 -99.013503,20.00021,0 -99.014158,19.999286,0 -99.013543,19.998877,0 -99.014068,19.998058,0 -99.013746,19.997874,0 -99.013338,19.997653,0 -99.013502,19.997621,0 -99.014022,19.996865,0 -99.014181,19.996946,0 -99.014763,19.996155,0 -99.015336,19.996315,0 -99.016236,19.996778,0 -99.016456,19.996482,0 -99.016888,19.995893,0 -99.017305,19.996204,0 -99.017516,19.995785,0 -99.017634,19.995937,0 -99.017968,19.995535,0 -99.018976,19.993755,0 -99.018075,19.993403,0 -99.018151,19.993027,0 -99.01831,19.99262,0 -99.018479,19.992339,0 -99.018904,19.992008,0 -99.018874,19.991993,0 -99.018915,19.991965,0 -99.0179,19.991479,0 -99.018267,19.990627,0 -99.018624,19.989794,0 -99.019362,19.990119,0 -99.020346,19.990562,0 -99.020551,19.989967,0 -99.020958,19.988765,0 -99.021555,19.987005,0 -99.020671,19.986609,0 -99.019835,19.986204,0 -99.019013,19.985835,0 -99.018234,19.985452,0 -99.017388,19.985007,0 -99.016507,19.984614,0 -99.015645,19.984194,0 -99.01514,19.983979,0 -99.014536,19.984307,0 -99.013206,19.985066,0 -99.013095,19.985013,0 -99.013268,19.984932,0 -99.01397,19.983416,0 -99.013095,19.982958,0 -99.012229,19.982564,0 -99.011335,19.982159,0 -99.011256,19.982122,0 -99.011487,19.981932,0 -99.012507,19.981516,0 -99.013177,19.981382,0 -99.013712,19.981332,0 -99.013717,19.98128,0 -99.013859,19.981305,0 -99.013896,19.98122,0 -99.013728,19.981134,0 -99.013764,19.980679,0 -99.01335,19.980664,0 -99.014238,19.977724,0 -99.014049,19.977707,0 -99.013423,19.97765,0 -99.008715,19.977226,0 -99.007764,19.979227,0 -99.007547,19.979163,0 -99.007493,19.978966,0 -99.007247,19.977094,0 -99.007044,19.977076,0 -99.006794,19.976039,0 -99.00412,19.964952,0 -99.006838,19.965017,0 -99.010038,19.965017,0 -99.012608,19.964794,0 -99.013369,19.964546,0 -99.014025,19.964496,0 -99.015703,19.964496,0 -99.016607,19.96453,0 -99.022157,19.964507,0 -99.027656,19.964559,0 -99.02841,19.965488,0 -99.028862,19.96603,0 -99.030041,19.96737,0 -99.031057,19.96845,0 -99.03107,19.968481,0 -99.031291,19.968788,0 -99.031925,19.969682,0 -99.032368,19.970305,0 -99.033621,19.97117,0 -99.034513,19.971772,0 -99.034289,19.973212,0 -99.034026,19.974907,0 -99.033947,19.97542,0 -99.033626,19.977486,0 -99.033481,19.978417,0 -99.033339,19.979332,0 -99.033281,19.979427,0 -99.033275,19.979437,0 -99.033108,19.981771,0 -99.033093,19.982364,0 -99.032996,19.986087,0 -99.032892,19.990088,0 -99.032778,19.990634,0 -99.031909,19.990719,0 -99.031592,19.990496,0 -99.030687,19.990545,0 -99.031021,19.990958,0 -99.030957,19.991567,0 -99.030434,19.991543,0 -99.030417,19.991776,0 -99.030452,19.992187,0 -99.030374,19.992232,0 -99.03009,19.992541,0 -99.029859,19.993007,0 -99.030179,19.993167,0 -99.030211,19.993225,0 -99.031548,19.996101,0 -99.031937,19.996634,0 -99.030247,19.999636,0 -99.028916,19.999244,0 -99.028512,20.000102,0 -99.028049,20.000264,0 -99.027423,20.001648,0 -99.030833,20.002913,0 -99.030971,20.003667,0 -99.030727,20.005172,0 -99.030484,20.008028,0 -99.03036,20.008913,0 -99.030627,20.011152,0 -99.030897,20.012553,0 -99.031343,20.014854,0 -99.035442,20.014319,0 -99.035373,20.013633,0 -99.035984,20.012982,0 -99.036008,20.012705,0 -99.036793,20.012817,0 -99.037974,20.012826,0 -99.038841,20.012883,0 -99.039879,20.012798,0 -99.040027,20.012549,0 -99.040529,20.012335,0 -99.040523,20.01203,0 -99.041372,20.011876,0 -99.041222,20.011484,0 -99.04143,20.011135,0 -99.04197,20.01104,0 -99.042329,20.011634,0 -99.042917,20.011295,0 -99.043381,20.011309,0 -99.048777,20.008087,0 -99.04943,20.007697,0 -99.050399,20.003031,0 -99.050698,20.003176,0 -99.050776,20.00264,0 -99.051035,20.002808,0 -99.051237,20.002596,0 -99.050817,20.002407,0 -99.050962,20.002092,0 -99.051033,20.002017,0 -99.051243,20.001802,0 -99.0509,20.001627,0 -99.05113,20.001138,0 -99.051657,20.001287,0 -99.051875,20.001285,0 -99.052004,20.001432,0 -99.052212,20.001341,0 -99.051368,20.000296,0 -99.050974,19.999645,0 -99.050805,19.999677,0 -99.050571,19.999858,0 -99.050391,19.999761,0 -99.050104,19.999761,0 -99.04972,19.99997,0 -99.049464,19.999878,0 -99.049675,19.999683,0 -99.049978,19.999548,0 -99.049893,19.999337,0 -99.050025,19.999263,0 -99.050145,19.998801,0 -99.049473,19.998356,0 -99.049214,19.998888,0 -99.049299,19.999452,0 -99.049155,19.999824,0 -99.048931,19.999825,0 -99.049066,19.999553,0 -99.049017,19.999423,0 -99.048755,19.999337,0 -99.048454,19.99934,0 -99.04829,19.999071,0 -99.048396,19.99863,0 -99.048259,19.998364,0 -99.048015,19.998218,0 -99.047662,19.997668,0 -99.047366,19.99737,0 -99.047358,19.997083,0 -99.047239,19.996893,0 -99.047243,19.996825,0 -99.047299,19.996682,0 -99.047557,19.996463,0 -99.047428,19.996258,0 -99.047415,19.996034,0 -99.047706,19.995979,0 -99.047662,19.99568,0 -99.047743,19.995523,0 -99.047623,19.995299,0 -99.047648,19.99516,0 -99.047872,19.995096,0 -99.047878,19.995013,0 -99.047791,19.994917,0 -99.048673,19.994112,0 -99.049703,19.993498,0 -99.049904,19.993378,0 -99.049911,19.993216,0 -99.050453,19.992916,0 -99.05097,19.99257,0 -99.051293,19.992353,0 -99.055664,19.990668,0 -99.056788,19.990236,0 -99.056912,19.990307,0 -99.057026,19.990372,0 -99.057786,19.989004,0 -99.057904,19.989025,0 -99.058171,19.988747,0 -99.058501,19.988405,0 -99.05824,19.98818,0 -99.058199,19.988109,0 -99.058149,19.988056,0 -99.058132,19.987929,0 -99.058119,19.987859,0 -99.058108,19.987823,0 -99.058097,19.987785,0 -99.058097,19.987638,0 -99.058036,19.987506,0 -99.057927,19.987285,0 -99.057742,19.986978,0 -99.057718,19.986937,0 -99.057598,19.986737,0 -99.057579,19.986705,0 -99.057487,19.98658,0 -99.057407,19.986473,0 -99.057234,19.986095,0 -99.057139,19.985908,0 -99.057008,19.985651,0 -99.056965,19.985566,0 -99.056853,19.985426,0 -99.056844,19.985418,0 -99.05667,19.985254,0 -99.056528,19.985114,0 -99.056423,19.98504,0 -99.056101,19.984668,0 -99.057612,19.982449,0 -99.057758,19.982286,0 -99.057767,19.982276,0 -99.057867,19.982103,0 -99.058165,19.980728,0 -99.058418,19.979449,0 -99.05849,19.97925,0 -99.058551,19.97909,0 -99.058614,19.978611,0 -99.058669,19.978565,0 -99.058735,19.978508,0 -99.058798,19.978455,0 -99.058796,19.978335,0 -99.05879,19.977852,0 -99.058932,19.977289,0 -99.058972,19.977115,0 -99.059027,19.976878,0 -99.059036,19.976832,0 -99.059232,19.975835,0 -99.059359,19.975185,0 -99.059483,19.974599,0 -99.059576,19.973996,0 -99.060619,19.974135,0 -99.060678,19.974143,0 -99.060711,19.974151,0 -99.060738,19.974196,0 -99.060986,19.97459,0 -99.061386,19.975224,0 -99.061949,19.976124,0 -99.062784,19.977443,0 -99.063319,19.978288,0 -99.063632,19.978783,0 -99.06468,19.980438,0 -99.065353,19.981501,0 -99.067499,19.984892,0 -99.06756,19.984989,0 -99.067496,19.985521,0 -99.066162,19.996441,0 -99.065059,20.002136,0 -99.063945,20.009104,0 -99.063841,20.014194,0 -99.066209,20.016159,0 -99.066949,20.017446,0 -99.06832,20.018025,0 -99.069744,20.018055,0 -99.070944,20.018018,0 -99.074135,20.017919,0 -99.074478,20.018068,0 -99.078324,20.0183,0 -99.078995,20.019853,0 -99.079514,20.020443,0 -99.079094,20.021647,0 -99.079396,20.024463,0 -99.079673,20.026212,0 -99.08545,20.032488,0 -99.089351,20.034349,0 -99.093397,20.032022,0 -99.095093,20.031487,0 -99.095805,20.03064,0 -99.101642,20.032032,0 -99.101705,20.032034,0 -99.103869,20.030899,0 -99.10908,20.030533,0 -99.112519,20.029204,0 -99.118153,20.029304,0 -99.125909,20.031714,0 -99.127506,20.031451,0 -99.128695,20.03006,0 -99.130877,20.028242,0 -99.131213,20.028087,0 -99.133129,20.027516,0 -99.133993,20.027325,0 -99.135214,20.027086,0 -99.138289,20.028183,0 -99.139137,20.028077,0 -99.142135,20.02708,0 -99.142383,20.02705,0 -99.142513,20.026973,0 -99.143692,20.026281,0 -99.143955,20.02622,0 -99.144512,20.026178,0 -99.144992,20.026248,0 -99.145317,20.02651,0 -99.145814,20.026649,0 -99.146679,20.027313,0 -99.146816,20.027615,0 -99.147433,20.027758,0 -99.147982,20.027552,0 -99.150398,20.027502,0 -99.150681,20.027241,0 -99.151202,20.027047,0 -99.151387,20.026927,0 -99.151503,20.026728,0 -99.153565,20.026069,0 -99.153953,20.026097,0 -99.154863,20.025993,0 -99.15506,20.025926,0 -99.156477,20.026123,0 -99.158603,20.027188,0 -99.159321,20.017028,0 -99.159412,20.016845,0 -99.159639,20.016336,0 -99.159895,20.015782,0 -99.161366,20.012426,0 -99.167374,20.012873,0 -99.167873,20.003513,0 -99.168753,20.002617,0 -99.17635,19.999559,0 -99.180001,19.998089,0 -99.178813,19.995868,0 -99.177942,19.994379,0 -99.177217,19.993139,0 -99.179387,19.992441,0 -99.180938,19.992149,0 -99.18137,19.991865,0 -99.18186,19.991274,0 -99.182212,19.990647,0 -99.182362,19.990416,0 -99.182701,19.990276,0 -99.183051,19.990091,0 -99.183216,19.9901,0 -99.183502,19.990221,0 -99.183855,19.990419,0 -99.184508,19.990504,0 -99.185891,19.990859,0 -99.186508,19.991213,0 -99.186916,19.991379,0 -99.187378,19.991571,0 -99.187772,19.991802,0 -99.188075,19.991933,0 -99.188307,19.992084,0 -99.188567,19.99231,0 -99.18871,19.992525,0 -99.188947,19.992733,0 -99.189088,19.992919,0 -99.189301,19.993178,0 -99.189455,19.993349,0 -99.189548,19.993541,0 -99.189663,19.993664,0 -99.190053,19.993963,0 -99.190169,19.993831,0 -99.190279,19.993538,0 -99.190372,19.993173,0 -99.19036,19.99285,0 -99.190328,19.992537,0 -99.19027,19.992261,0 -99.190269,19.992257,0 -99.190264,19.992253,0 -99.190103,19.992122,0 -99.189916,19.992025,0 -99.189685,19.991932,0 -99.189605,19.991876,0 -99.189551,19.991827,0 -99.189594,19.991477,0 -99.18993,19.991171,0 -99.190495,19.990907,0 -99.190746,19.990666,0 -99.190811,19.990394,0 -99.190666,19.99011,0 -99.190136,19.989834,0 -99.189471,19.98959,0 -99.189193,19.989529,0 -99.188944,19.989452,0 -99.189202,19.988841,0 -99.189261,19.988503,0 -99.189281,19.988292,0 -99.189285,19.988081,0 -99.189224,19.987883,0 -99.18921,19.987497,0 -99.18931,19.987429,0 -99.189409,19.98735,0 -99.189512,19.987271,0 -99.189659,19.987158,0 -99.189787,19.986998,0 -99.189831,19.986907,0 -99.189859,19.98677,0 -99.189859,19.986638,0 -99.189811,19.986497,0 -99.189754,19.986384,0 -99.189666,19.986281,0 -99.189593,19.986183,0 -99.189505,19.98608,0 -99.18942,19.985967,0 -99.189316,19.98583,0 -99.189264,19.985709,0 -99.1893,19.985473,0 -99.189392,19.98514,0 -99.189337,19.984906,0 -99.189206,19.98482,0 -99.189817,19.984481,0 -99.189917,19.984425,0 -99.190384,19.984203,0 -99.190665,19.984074,0 -99.190908,19.984074,0 -99.19164,19.984668,0 -99.192371,19.985263,0 -99.192903,19.985457,0 -99.193458,19.985504,0 -99.194017,19.98549,0 -99.194402,19.98548,0 -99.194411,19.98548,0 -99.194725,19.985472,0 -99.194773,19.985461,0 -99.195669,19.985247,0 -99.196464,19.985007,0 -99.196919,19.984827,0 -99.197213,19.983622,0 -99.197427,19.982402,0 -99.19754,19.981552,0 -99.197695,19.981301,0 -99.197777,19.980915,0 -99.197726,19.979773,0 -99.197717,19.979189,0 -99.197751,19.978676,0 -99.197751,19.978648,0 -99.19775,19.978268,0 -99.197942,19.978017,0 -99.197862,19.97778,0 -99.19749,19.976198,0 -99.19751,19.975893,0 -99.197824,19.97575,0 -99.198257,19.97677,0 -99.198368,19.977811,0 -99.198868,19.977694,0 -99.199918,19.976803,0 -99.200032,19.97645,0 -99.200614,19.975443,0 -99.201068,19.974669,0 -99.201841,19.973679,0 -99.201818,19.973206,0 -99.202022,19.972754,0 -99.202431,19.972302,0 -99.202854,19.971623,0 -99.203409,19.970966,0 -99.204338,19.970491,0 -99.205472,19.969937,0 -99.205727,19.969708,0 -99.205719,19.969571,0 -99.206484,19.968688,0 -99.206477,19.968631,0 -99.206559,19.968606,0 -99.206569,19.968684,0 -99.206581,19.968841,0 -99.206736,19.968975,0 -99.206771,19.969131,0 -99.207087,19.969008,0 -99.207514,19.968826,0 -99.208004,19.968675,0 -99.208224,19.96861,0 -99.208536,19.968518,0 -99.20868,19.968271,0 -99.209462,19.968068,0 -99.209594,19.967865,0 -99.210027,19.967696,0 -99.209832,19.967282,0 -99.209809,19.967233,0 -99.209713,19.967244,0 -99.209022,19.966421,0 -99.20892,19.96637,0 -99.209907,19.965919,0 -99.209647,19.965466,0 -99.211183,19.964622,0 -99.211117,19.964331,0 -99.211295,19.963841,0 -99.211456,19.963452,0 -99.21157,19.963311,0 -99.211839,19.963379,0 -99.212891,19.963647,0 -99.212586,19.964564,0 -99.212346,19.965358,0 -99.212478,19.965479,0 -99.212505,19.96554,0 -99.214066,19.963596,0 -99.213873,19.963359,0 -99.214155,19.96283,0 -99.214589,19.961813,0 -99.214675,19.961452,0 -99.21434,19.961398,0 -99.214788,19.960189,0 -99.214961,19.960223,0 -99.215014,19.959834,0 -99.214291,19.959399,0 -99.213792,19.959133,0 -99.213388,19.958979,0 -99.21316,19.958925,0 -99.213125,19.958845,0 -99.213112,19.958813,0 -99.213075,19.958727,0 -99.215394,19.954614,0 -99.220064,19.953291,0 -99.224942,19.951908,0 -99.22547,19.9517,0 -99.227761,19.951068,0 -99.226048,19.950042,0 -99.225946,19.949881,0 -99.224629,19.946278,0 -99.224552,19.945881,0 -99.223451,19.940274,0 -99.223153,19.940187,0 -99.223005,19.940194,0 -99.221317,19.935189,0 -99.219676,19.930389,0 -99.218573,19.927242,0 -99.217739,19.926921,0 -99.217414,19.926809,0 -99.215668,19.926098,0 -99.212654,19.924818,0 -99.211519,19.924288,0 -99.21118,19.925483,0 -99.210961,19.926275,0 -99.210838,19.926704,0 -99.210754,19.926983,0 -99.210518,19.927839,0 -99.210239,19.92882,0 -99.209829,19.93027,0 -99.209417,19.931778,0 -99.209216,19.932436,0 -99.208251,19.932311,0 -99.207992,19.932277,0 -99.206881,19.932132,0 -99.206928,19.93107,0 -99.206977,19.929936,0 -99.207019,19.929073,0 -99.206529,19.928532,0 -99.205603,19.927501,0 -99.206605,19.926341,0 -99.207073,19.925793,0 -99.206638,19.924956,0 -99.210729,19.914475,0 -99.212276,19.914817,0 -99.212636,19.914897,0 -99.212579,19.913986,0 -99.213507,19.914195,0 -99.213562,19.915102,0 -99.214082,19.915217,0 -99.21555,19.914703,0 -99.214983,19.913053,0 -99.215245,19.912604,0 -99.215433,19.912533,0 -99.215715,19.912408,0 -99.21596,19.912265,0 -99.216129,19.912123,0 -99.216298,19.912016,0 -99.216486,19.911998,0 -99.21673,19.912051,0 -99.217126,19.912157,0 -99.21752,19.912104,0 -99.217746,19.911997,0 -99.217953,19.911765,0 -99.218141,19.911694,0 -99.218677,19.911484,0 -99.219158,19.91139,0 -99.219492,19.90505,0 -99.220767,19.902742,0 -99.220197,19.90239,0 -99.223925,19.901998,0 -99.222471,19.899539,0 -99.222244,19.899156,0 -99.222139,19.898986,0 -99.220446,19.896245,0 -99.217649,19.891718,0 -99.217467,19.891424,0 -99.218288,19.88907,0 -99.218617,19.888474,0 -99.219407,19.886981,0 -99.219874,19.885578,0 -99.220317,19.88483,0 -99.220669,19.884236,0 -99.222319,19.882221,0 -99.223529,19.88064,0 -99.223884,19.880205,0 -99.224968,19.878882,0 -99.228349,19.875416,0 -99.2283,19.875047,0 -99.228381,19.874967,0 -99.229322,19.874033,0 -99.230003,19.874453,0 -99.230505,19.874866,0 -99.231159,19.875495,0 -99.231665,19.876014,0 -99.232165,19.876739,0 -99.232277,19.876677,0 -99.2325,19.876552,0 -99.233715,19.875911,0 -99.233997,19.875797,0 -99.234282,19.876077,0 -99.23441,19.876259,0 -99.234455,19.876404,0 -99.234547,19.876739,0 -99.234717,19.876855,0 -99.235025,19.87684,0 -99.235179,19.876767,0 -99.235255,19.876563,0 -99.235255,19.876345,0 -99.235362,19.876156,0 -99.235501,19.875981,0 -99.235623,19.875705,0 -99.235715,19.875297,0 -99.235803,19.874797,0 -99.235756,19.874463,0 -99.235695,19.874246,0 -99.235679,19.874,0 -99.235895,19.873594,0 -99.235948,19.873494,0 -99.236372,19.875083,0 -99.24143,19.875262,0 -99.245669,19.869529,0 -99.247961,19.859785,0 -99.25288,19.860642,0 -99.252906,19.860405,0 -99.2531,19.860165,0 -99.253353,19.860094,0 -99.253741,19.85991,0 -99.253846,19.859712,0 -99.254024,19.859472,0 -99.254173,19.859345,0 -99.254427,19.859288,0 -99.254696,19.859085,0 -99.263421,19.859065,0 -99.266508,19.859057,0 -99.266515,19.859074,0 -99.26668,19.859143,0 -99.266882,19.859282,0 -99.267158,19.859403,0 -99.267488,19.859472,0 -99.268203,19.859644,0 -99.268955,19.859712,0 -99.269469,19.859555,0 -99.270092,19.859173,0 -99.270971,19.858565,0 -99.27152,19.857536,0 -99.271885,19.856669,0 -99.272384,19.855879,0 -99.272612,19.855445,0 -99.272955,19.854849,0 -99.273297,19.854172,0 -99.273525,19.853576,0 -99.273897,19.853305,0 -99.274412,19.85306,0 -99.274944,19.85311,0 -99.275383,19.852901,0 -99.276025,19.851487,0 -99.276267,19.850607,0 -99.276412,19.849531,0 -99.276781,19.84806,0 -99.276861,19.847755,0 -99.277101,19.847895,0 -99.277671,19.845608,0 -99.278174,19.843413,0 -99.278421,19.842738,0 -99.278159,19.842232,0 -99.278257,19.842004,0 -99.278392,19.841691,0 -99.278719,19.840409,0 -99.2803,19.841723,0 -99.281342,19.842589,0 -99.281614,19.842609,0 -99.282534,19.841981,0 -99.282674,19.841885,0 -99.282904,19.841727,0 -99.283636,19.841723,0 -99.283781,19.841455,0 -99.284219,19.841201,0 -99.284316,19.840787,0 -99.284755,19.840698,0 -99.285118,19.840624,0 -99.285847,19.839634,0 -99.286321,19.837158,0 -99.287386,19.836964,0 -99.296944,19.835222,0 -99.298163,19.833461,0 -99.299263,19.831872,0 -99.301146,19.829153,0 -99.300577,19.828907,0 -99.30057,19.828824,0 -99.300293,19.828508,0 -99.300314,19.82845,0 -99.300874,19.827286,0 -99.300965,19.82722,0 -99.301976,19.827801,0 -99.302468,19.827044,0 -99.30313,19.826661,0 -99.303416,19.825911,0 -99.303893,19.825261,0 -99.304749,19.82324,0 -99.305379,19.823366,0 -99.30555,19.82337,0 -99.305817,19.823282,0 -99.306092,19.823036,0 -99.306246,19.822743,0 -99.306127,19.822366,0 -99.306088,19.821956,0 -99.306181,19.821431,0 -99.306004,19.821139,0 -99.305903,19.820594,0 -99.306974,19.820512,0 -99.307744,19.819998,0 -99.308557,19.8193,0 -99.308335,19.818738,0 -99.308007,19.818754,0 -99.307978,19.818454,0 -99.308788,19.818212,0 -99.308564,19.817424,0 -99.309888,19.816058,0 -99.310208,19.815173,0 -99.310442,19.814702,0 -99.311401,19.814223,0 -99.31165,19.814198,0 -99.311923,19.814162,0 -99.311675,19.813446,0 -99.311659,19.813404,0 -99.311415,19.813526,0 -99.311206,19.813695,0 -99.311073,19.813876,0 -99.310936,19.813963,0 -99.31068,19.814109,0 -99.310602,19.814166,0 -99.310221,19.814362,0 -99.310123,19.814326,0 -99.310111,19.813982,0 -99.308952,19.814193,0 -99.308938,19.814478,0 -99.308609,19.814461,0 -99.308647,19.81394,0 -99.308389,19.813685,0 -99.308435,19.812809,0 -99.30815,19.812735,0 -99.308049,19.813652,0 -99.307969,19.81448,0 -99.307719,19.814544,0 -99.307715,19.814521,0 -99.307798,19.81279,0 -99.307329,19.813036,0 -99.307214,19.81307,0 -99.307162,19.813034,0 -99.307028,19.813027,0 -99.306945,19.813026,0 -99.306905,19.812976,0 -99.306934,19.812919,0 -99.306993,19.812913,0 -99.307176,19.812861,0 -99.307338,19.812802,0 -99.307479,19.812694,0 -99.307599,19.812572,0 -99.307761,19.812505,0 -99.307937,19.812439,0 -99.308055,19.812407,0 -99.30818,19.812368,0 -99.308291,19.812287,0 -99.308474,19.812269,0 -99.308614,19.812196,0 -99.308719,19.812073,0 -99.308788,19.811929,0 -99.308929,19.811801,0 -99.309136,19.811575,0 -99.309192,19.811413,0 -99.3093,19.811294,0 -99.30939,19.811208,0 -99.30941,19.811087,0 -99.309399,19.811012,0 -99.309413,19.810953,0 -99.309458,19.810802,0 -99.309555,19.810698,0 -99.309644,19.810568,0 -99.309627,19.810412,0 -99.309718,19.810378,0 -99.309864,19.810286,0 -99.310028,19.810163,0 -99.310181,19.810003,0 -99.31034,19.809843,0 -99.310516,19.809677,0 -99.310754,19.809451,0 -99.310983,19.809289,0 -99.311131,19.8092,0 -99.311189,19.809203,0 -99.31125,19.8092,0 -99.311366,19.809057,0 -99.311466,19.808811,0 -99.311462,19.808781,0 -99.311354,19.808622,0 -99.311355,19.80858,0 -99.31136,19.808513,0 -99.311352,19.808457,0 -99.311308,19.808446,0 -99.311235,19.808468,0 -99.311202,19.808376,0 -99.311186,19.808311,0 -99.311114,19.80824,0 -99.311091,19.808297,0 -99.31097,19.807916,0 -99.310981,19.807873,0 -99.310991,19.807808,0 -99.311057,19.807744,0 -99.311088,19.807671,0 -99.311099,19.807545,0 -99.311135,19.807468,0 -99.311107,19.807365,0 -99.311166,19.80724,0 -99.311125,19.807121,0 -99.311234,19.80696,0 -99.311296,19.806734,0 -99.311388,19.806529,0 -99.311523,19.806416,0 -99.311719,19.806358,0 -99.31191,19.80638,0 -99.311968,19.80637,0 -99.312067,19.806155,0 -99.312217,19.80573,0 -99.312398,19.805587,0 -99.312459,19.805454,0 -99.312674,19.805228,0 -99.312554,19.804841,0 -99.312198,19.80459,0 -99.312164,19.804543,0 -99.312183,19.804437,0 -99.311985,19.804109,0 -99.311391,19.803626,0 -99.31104,19.803119,0 -99.310751,19.802761,0 -99.310456,19.802553,0 -99.310124,19.802356,0 -99.309693,19.802118,0 -99.309252,19.801694,0 -99.308861,19.801421,0 -99.30885,19.801296,0 -99.308935,19.801174,0 -99.30902,19.801148,0 -99.309177,19.800874,0 -99.309157,19.800679,0 -99.308992,19.800434,0 -99.308953,19.80044,0 -99.308663,19.800442,0 -99.308435,19.800384,0 -99.307971,19.799946,0 -99.307825,19.799303,0 -99.307056,19.798714,0 -99.306601,19.797694,0 -99.313861,19.796345,0 -99.314101,19.796695,0 -99.314966,19.796189,0 -99.315594,19.795559,0 -99.31636,19.796365,0 -99.31638,19.796382,0 -99.316654,19.79599,0 -99.31687,19.795671,0 -99.317203,19.795827,0 -99.317852,19.796111,0 -99.318407,19.796345,0 -99.318793,19.796392,0 -99.319039,19.796367,0 -99.319157,19.796348,0 -99.319355,19.796285,0 -99.319882,19.796058,0 -99.320515,19.795833,0 -99.321584,19.795751,0 -99.321648,19.795749,0 -99.322301,19.795006,0 -99.323149,19.79528,0 -99.322583,19.794237,0 -99.322601,19.794233,0 -99.323143,19.793905,0 -99.322967,19.793613,0 -99.323587,19.793173,0 -99.323881,19.792888,0 -99.324181,19.793535,0 -99.32448,19.793183,0 -99.325582,19.793095,0 -99.326364,19.793214,0 -99.326913,19.793656,0 -99.327265,19.793865,0 -99.328352,19.794956,0 -99.328401,19.794985,0 -99.328373,19.795539,0 -99.32899,19.795828,0 -99.329713,19.796181,0 -99.330794,19.796681,0 -99.331346,19.796702,0 -99.332173,19.796888,0 -99.33294,19.796918,0 -99.333264,19.797064,0 -99.333682,19.797183,0 -99.334467,19.79727,0 -99.334559,19.797425,0 -99.334922,19.797509,0 -99.335241,19.797565,0 -99.33551,19.797674,0 -99.335664,19.797865,0 -99.335798,19.798065,0 -99.33585,19.798278,0 -99.335897,19.798491,0 -99.335707,19.798575,0 -99.335528,19.798591,0 -99.335395,19.798598,0 -99.335214,19.79873,0 -99.335109,19.798897,0 -99.335191,19.79915,0 -99.335212,19.799353,0 -99.335305,19.799641,0 -99.33545,19.799704,0 -99.335746,19.799682,0 -99.335999,19.799655,0 -99.336096,19.799681,0 -99.336173,19.799728,0 -99.336214,19.799811,0 -99.336224,19.800001,0 -99.336235,19.800179,0 -99.33618,19.800328,0 -99.336098,19.800406,0 -99.335759,19.800387,0 -99.335626,19.800424,0 -99.335568,19.800517,0 -99.335605,19.800789,0 -99.335729,19.801019,0 -99.335894,19.801265,0 -99.336266,19.801484,0 -99.336757,19.801648,0 -99.337141,19.801659,0 -99.337499,19.801575,0 -99.337813,19.801546,0 -99.337917,19.801591,0 -99.338052,19.801689,0 -99.338222,19.801891,0 -99.338339,19.802005,0 -99.338512,19.802047,0 -99.338654,19.802028,0 -99.33876,19.801961,0 -99.338844,19.801884,0 -99.338813,19.801589,0 -99.338813,19.801347,0 -99.338845,19.801106,0 -99.339022,19.800974,0 -99.339222,19.800697,0 -99.339329,19.800408,0 -99.339347,19.80005,0 -99.339382,19.799608,0 -99.339435,19.799318,0 -99.339434,19.798791,0 -99.339703,19.798433,0 -99.339739,19.798109,0 -99.339738,19.797786,0 -99.339809,19.797394,0 -99.339864,19.796998,0 -99.339936,19.796658,0 -99.339881,19.796386,0 -99.339808,19.795909,0 -99.340023,19.795552,0 -99.340053,19.795425,0 -99.340142,19.795039,0 -99.340309,19.794316,0 -99.340994,19.794502,0 -99.341173,19.79463,0 -99.3413,19.794937,0 -99.341444,19.79514,0 -99.341571,19.795481,0 -99.341758,19.795831,0 -99.342449,19.795993,0 -99.341762,19.794293,0 -99.342608,19.794102,0 -99.342902,19.795008,0 -99.342682,19.795698,0 -99.342769,19.796052,0 -99.342748,19.796132,0 -99.342858,19.796116,0 -99.345011,19.795511,0 -99.344975,19.795271,0 -99.344967,19.795221,0 -99.344955,19.795145,0 -99.344983,19.794937,0 -99.345061,19.794341,0 -99.345374,19.793954,0 -99.345559,19.793483,0 -99.345735,19.793128,0 -99.345649,19.792787,0 -99.344968,19.792733,0 -99.344676,19.79268,0 -99.344634,19.792672,0 -99.344632,19.792655,0 -99.344574,19.792236,0 -99.344481,19.791749,0 -99.344285,19.791444,0 -99.344319,19.791209,0 -99.34434,19.790918,0 -99.34442,19.790446,0 -99.344437,19.790343,0 -99.344574,19.789855,0 -99.344576,19.78985,0 -99.344573,19.78984,0 -99.344443,19.789291,0 -99.344619,19.788902,0 -99.34511,19.788585,0 -99.345443,19.788292,0 -99.345848,19.788168,0 -99.34597,19.788131,0 -99.346124,19.787864,0 -99.346113,19.787754,0 -99.346101,19.787624,0 -99.345815,19.787436,0 -99.344436,19.787157,0 -99.34416,19.787309,0 -99.343809,19.787166,0 -99.34395,19.786838,0 -99.344438,19.786461,0 -99.344988,19.786054,0 -99.345561,19.785325,0 -99.345619,19.78526,0 -99.345944,19.784894,0 -99.345999,19.784683,0 -99.34578,19.784449,0 -99.345551,19.784249,0 -99.344875,19.783893,0 -99.344001,19.783416,0 -99.343265,19.78294,0 -99.343042,19.782785,0 -99.342959,19.782693,0 -99.34267,19.782374,0 -99.342969,19.782265,0 -99.343233,19.782315,0 -99.343471,19.78236,0 -99.343733,19.782236,0 -99.344033,19.78199,0 -99.343857,19.78144,0 -99.343781,19.781044,0 -99.343653,19.780731,0 -99.34364,19.780699,0 -99.34348,19.780502,0 -99.343952,19.780254,0 -99.344113,19.780156,0 -99.344517,19.779908,0 -99.344555,19.779516,0 -99.34456,19.779455,0 -99.345378,19.779298,0 -99.34605,19.77935,0 -99.346998,19.77898,0 -99.347649,19.778443,0 -99.348549,19.777931,0 -99.34928,19.777666,0 -99.350277,19.777365,0 -99.350763,19.776767,0 -99.350825,19.776732,0 -99.35136,19.776425,0 -99.351531,19.775801,0 -99.352425,19.775868,0 -99.352441,19.776233,0 -99.352774,19.777584,0 -99.354978,19.778019,0 -99.355106,19.779322,0 -99.35581,19.780101,0 -99.357059,19.781217,0 -99.357791,19.781568,0 -99.358253,19.781337,0 -99.358714,19.781129,0 -99.35915,19.781185,0 -99.359445,19.781266,0 -99.359737,19.781288,0 -99.360004,19.781127,0 -99.360612,19.781263,0 -99.361091,19.781151,0 -99.361638,19.781249,0 -99.362897,19.780476,0 -99.365139,19.780535,0 -99.366091,19.780433,0 -99.367442,19.780093,0 -99.368163,19.780658,0 -99.368857,19.781016,0 -99.369624,19.781516,0 -99.37061,19.781845,0 -99.371168,19.781456,0 -99.371599,19.780911,0 -99.372079,19.780065,0 -99.372474,19.779726,0 -99.372564,19.778954,0 -99.372698,19.778791,0 -99.37296,19.778657,0 -99.37331,19.778508,0 -99.373675,19.778323,0 -99.373806,19.778156,0 -99.373898,19.777952,0 -99.373862,19.777801,0 -99.373775,19.777762,0 -99.373536,19.777688,0 -99.37324,19.777672,0 -99.373011,19.777729,0 -99.372779,19.777488,0 -99.372824,19.777184,0 -99.372984,19.776907,0 -99.373333,19.776677,0 -99.373661,19.776528,0 -99.373868,19.776379,0 -99.37394,19.776158,0 -99.373918,19.775925,0 -99.374218,19.775776,0 -99.374445,19.775559,0 -99.374823,19.775412,0 -99.375336,19.775257,0 -99.37574,19.775298,0 -99.376211,19.775446,0 -99.376481,19.775594,0 -99.376884,19.775508,0 -99.377198,19.775253,0 -99.377399,19.774934,0 -99.3776,19.774488,0 -99.378165,19.774227,0 -99.378591,19.773908,0 -99.378994,19.773696,0 -99.379195,19.773398,0 -99.379463,19.773101,0 -99.379799,19.772718,0 -99.380336,19.772293,0 -99.382343,19.771255,0 -99.382445,19.771204,0 -99.382657,19.771733,0 -99.383032,19.771416,0 -99.383712,19.772799,0 -99.383605,19.772906,0 -99.384646,19.77508,0 -99.384223,19.775638,0 -99.384299,19.775902,0 -99.38577,19.77707,0 -99.386639,19.776128,0 -99.386769,19.775895,0 -99.387826,19.777339,0 -99.388254,19.77692,0 -99.389877,19.776588,0 -99.389059,19.776319,0 -99.388566,19.77589,0 -99.388418,19.775006,0 -99.389164,19.774998,0 -99.389614,19.775284,0 -99.390629,19.775422,0 -99.391343,19.775187,0 -99.391556,19.775002,0 -99.390618,19.774851,0 -99.390003,19.774556,0 -99.389913,19.774202,0 -99.390468,19.77396,0 -99.391464,19.773929,0 -99.391862,19.773126,0 -99.39168,19.772902,0 -99.391881,19.77248,0 -99.392278,19.772405,0 -99.392558,19.771853,0 -99.39247,19.771687,0 -99.392459,19.771508,0 -99.393139,19.771831,0 -99.393787,19.771651,0 -99.394268,19.771522,0 -99.394684,19.771213,0 -99.395216,19.77105,0 -99.395281,19.77084,0 -99.394899,19.770732,0 -99.39523,19.770142,0 -99.395846,19.770382,0 -99.396334,19.769383,0 -99.396838,19.769953,0 -99.397265,19.769783,0 -99.397604,19.769173,0 -99.397905,19.768807,0 -99.398213,19.768035,0 -99.39837,19.767687,0 -99.399281,19.768193,0 -99.399435,19.768815,0 -99.399955,19.768763,0 -99.399783,19.768424,0 -99.400347,19.768261,0 -99.400326,19.767561,0 -99.401344,19.76734,0 -99.400875,19.766416,0 -99.401428,19.766081,0 -99.401818,19.766201,0 -99.401903,19.766103,0 -99.402039,19.765946,0 -99.401518,19.765587,0 -99.401421,19.765205,0 -99.401769,19.764475,0 -99.401599,19.764125,0 -99.402404,19.76401,0 -99.402464,19.763585,0 -99.402745,19.763278,0 -99.403258,19.763007,0 -99.403263,19.762618,0 -99.403494,19.762438,0 -99.403811,19.762334,0 -99.404014,19.762074,0 -99.404019,19.761674,0 -99.40398,19.761277,0 -99.403683,19.761069,0 -99.403788,19.760621,0 -99.404429,19.76073,0 -99.404557,19.760579,0 -99.404115,19.760339,0 -99.404367,19.759621,0 -99.40477,19.759354,0 -99.404617,19.758432,0 -99.404831,19.758125,0 -99.405261,19.757969,0 -99.405761,19.757382,0 -99.406312,19.757242,0 -99.406435,19.756928,0 -99.406511,19.756485,0 -99.406418,19.755982,0 -99.407012,19.755744,0 -99.40697,19.754949,0 -99.406665,19.754784,0 -99.406551,19.754285,0 -99.407211,19.75396,0 -99.407074,19.753366,0 -99.407371,19.753126,0 -99.407763,19.752441,0 -99.4083,19.75241,0 -99.40906,19.752061,0 -99.409159,19.751683,0 -99.40845,19.751576,0 -99.408061,19.751335,0 -99.408686,19.750923,0 -99.409415,19.750137,0 -99.409761,19.750028,0 -99.409894,19.749362,0 -99.410431,19.747776,0 -99.411621,19.747722,0 -99.411361,19.747114,0 -99.412206,19.745592,0 -99.412201,19.744639,0 -99.411961,19.743675,0 -99.41308,19.742739,0 -99.412189,19.741724,0 -99.413188,19.741234,0 -99.412645,19.74105,0 -99.412549,19.740192,0 -99.413442,19.740291,0 -99.412645,19.73934,0 -99.413958,19.739073,0 -99.413294,19.73845,0 -99.41412,19.738209,0 -99.414067,19.73785,0 -99.414916,19.736863,0 -99.414082,19.736524,0 -99.414316,19.735663,0 -99.415085,19.736097,0 -99.415799,19.735666,0 -99.415282,19.735091,0 -99.415456,19.734515,0 -99.415818,19.733486,0 -99.414597,19.733181,0 -99.415025,19.732796,0 -99.41488,19.732607,0 -99.414134,19.7326,0 -99.414756,19.731785,0 -99.415188,19.731908,0 -99.414935,19.73093,0 -99.415728,19.730447,0 -99.415148,19.729443,0 -99.415852,19.728231,0 -99.415251,19.727613,0 -99.415445,19.726845,0 -99.416374,19.726377,0 -99.416565,19.725776,0 -99.417326,19.725824,0 -99.417575,19.725441,0 -99.417071,19.725173,0 -99.41715,19.72485,0 -99.417094,19.72453,0 -99.417027,19.724141,0 -99.416775,19.723935,0 -99.416946,19.723693,0 -99.416877,19.723256,0 -99.41731,19.723099,0 -99.417254,19.722815,0 -99.417088,19.722563,0 -99.417208,19.72191,0 -99.417626,19.72143,0 -99.417921,19.720685,0 -99.417719,19.720533,0 -99.417267,19.720421,0 -99.417026,19.720271,0 -99.416906,19.719087,0 -99.417081,19.718835,0 -99.417529,19.718694,0 -99.417648,19.718327,0 -99.417498,19.718058,0 -99.417906,19.717412,0 -99.418665,19.717448,0 -99.418936,19.717241,0 -99.418851,19.717159,0 -99.419037,19.716617,0 -99.419693,19.716439,0 -99.419767,19.716249,0 -99.420106,19.716384,0 -99.420376,19.716229,0 -99.420253,19.716098,0 -99.420307,19.715695,0 -99.420552,19.715549,0 -99.420635,19.71516,0 -99.420639,19.71507,0 -99.420537,19.714896,0 -99.420227,19.714889,0 -99.419844,19.714423,0 -99.41983,19.714193,0 -99.419652,19.713944,0 -99.419636,19.713384,0 -99.42009,19.712711,0 -99.420356,19.712277,0 -99.420509,19.711988,0 -99.420437,19.711697,0 -99.420278,19.711554,0 -99.420373,19.711154,0 -99.420323,19.711008,0 -99.420405,19.710782,0 -99.420774,19.710725,0 -99.420944,19.710436,0 -99.421294,19.710359,0 -99.421345,19.710194,0 -99.421181,19.709724,0 -99.420991,19.709724,0 -99.420846,19.709494,0 -99.420927,19.709191,0 -99.420664,19.708785,0 -99.421046,19.708213,0 -99.420969,19.707784,0 -99.420948,19.707687,0 -99.420782,19.707431,0 -99.420947,19.707102,0 -99.420966,19.706688,0 -99.420945,19.706261,0 -99.420847,19.705839,0 -99.42121,19.705658,0 -99.42139,19.705531,0 -99.421312,19.705249,0 -99.421112,19.70503,0 -99.420828,19.704793,0 -99.421081,19.70454,0 -99.421019,19.704259,0 -99.421156,19.703814,0 -99.421428,19.703417,0 -99.421677,19.703324,0 -99.421622,19.702913,0 -99.421506,19.702631,0 -99.421064,19.702332,0 -99.420682,19.702215,0 -99.420622,19.701869,0 -99.420426,19.701625,0 -99.420702,19.701257,0 -99.421014,19.701119,0 -99.421156,19.70088,0 -99.421174,19.70041,0 -99.419822,19.700018,0 -99.419426,19.699211,0 -99.419329,19.698525,0 -99.419434,19.698469,0 -99.419736,19.698867,0 -99.419838,19.698932,0 -99.420163,19.698952,0 -99.420505,19.698727,0 -99.420503,19.698191,0 -99.4207,19.698074,0 -99.42079,19.697978,0 -99.420989,19.697326,0 -99.421138,19.696931,0 -99.421362,19.69694,0 -99.421574,19.697042,0 -99.422262,19.696546,0 -99.421976,19.696222,0 -99.422222,19.695479,0 -99.422522,19.695344,0 -99.422359,19.694509,0 -99.422174,19.694098,0 -99.42242,19.693755,0 -99.422206,19.693082,0 -99.422526,19.692228,0 -99.422708,19.6918,0 -99.422766,19.691433,0 -99.422712,19.691097,0 -99.422837,19.691072,0 -99.422997,19.691363,0 -99.422969,19.691728,0 -99.423095,19.692431,0 -99.423065,19.693452,0 -99.4232,19.693702,0 -99.42366,19.694945,0 -99.424071,19.69507,0 -99.424207,19.695137,0 -99.424371,19.695084,0 -99.424687,19.69414,0 -99.424456,19.693826,0 -99.424684,19.693405,0 -99.424823,19.692898,0 -99.424992,19.692461,0 -99.426194,19.691273,0 -99.426164,19.691062,0 -99.426332,19.691027,0 -99.426412,19.690974,0 -99.426738,19.690501,0 -99.426839,19.690205,0 -99.4269,19.68975,0 -99.426656,19.689672,0 -99.426572,19.68945,0 -99.426447,19.68892,0 -99.426449,19.688413,0 -99.426348,19.687949,0 -99.425717,19.687873,0 -99.425068,19.687796,0 -99.424884,19.687774,0 -99.424782,19.687762,0 -99.424737,19.687756,0 -99.424347,19.68771,0 -99.423975,19.687665,0 -99.422826,19.687527,0 -99.421677,19.68739,0 -99.420527,19.687252,0 -99.419378,19.687115,0 -99.419232,19.687097,0 -99.419421,19.686736,0 -99.419457,19.686626,0 -99.419614,19.686061,0 -99.419801,19.685302,0 -99.419836,19.685161,0 -99.419891,19.684561,0 -99.420047,19.682861,0 -99.42006,19.682746,0 -99.420131,19.68211,0 -99.420151,19.681755,0 -99.420221,19.681297,0 -99.420273,19.680956,0 -99.42053,19.680919,0 -99.420614,19.680783,0 -99.420719,19.680211,0 -99.420808,19.679765,0 -99.420829,19.679654,0 -99.420849,19.679542,0 -99.420865,19.679452,0 -99.420884,19.679383,0 -99.420924,19.67921,0 -99.420966,19.678988,0 -99.421035,19.67859,0 -99.421133,19.677875,0 -99.42114,19.677763,0 -99.421216,19.677435,0 -99.421228,19.677374,0 -99.421298,19.676944,0 -99.421316,19.676828,0 -99.421328,19.676751,0 -99.421339,19.676713,0 -99.42135,19.676687,0 -99.42138,19.676623,0 -99.421438,19.676531,0 -99.421497,19.676454,0 -99.421664,19.676513,0 -99.421841,19.676576,0 -99.422008,19.676635,0 -99.422178,19.676696,0 -99.423168,19.677045,0 -99.423338,19.677107,0 -99.42379,19.677274,0 -99.423853,19.677333,0 -99.424052,19.677226,0 -99.42437,19.677069,0 -99.424481,19.677013,0 -99.4246,19.676919,0 -99.424725,19.676547,0 -99.424762,19.676254,0 -99.424903,19.676289,0 -99.425116,19.676275,0 -99.425193,19.676271,0 -99.425283,19.6765,0 -99.425895,19.676345,0 -99.425887,19.676273,0 -99.426049,19.67627,0 -99.426034,19.676216,0 -99.426715,19.676172,0 -99.426916,19.675768,0 -99.426898,19.674961,0 -99.426924,19.67361,0 -99.426886,19.67254,0 -99.426828,19.671602,0 -99.426519,19.671132,0 -99.425545,19.671072,0 -99.425066,19.671084,0 -99.425071,19.669975,0 -99.423621,19.66939,0 -99.423278,19.669421,0 -99.42283,19.669426,0 -99.422731,19.669424,0 -99.422275,19.669411,0 -99.422332,19.669156,0 -99.422363,19.668967,0 -99.422392,19.668786,0 -99.422399,19.668745,0 -99.422416,19.668639,0 -99.422443,19.66847,0 -99.422457,19.668386,0 -99.422477,19.668264,0 -99.422508,19.668073,0 -99.422516,19.668022,0 -99.422541,19.667872,0 -99.422553,19.6678,0 -99.422635,19.667292,0 -99.422695,19.666927,0 -99.422752,19.666573,0 -99.422865,19.665877,0 -99.422937,19.665438,0 -99.423065,19.66465,0 -99.423072,19.664605,0 -99.423185,19.663909,0 -99.42325,19.663514,0 -99.423261,19.663446,0 -99.423333,19.663001,0 -99.423496,19.662,0 -99.423599,19.661368,0 -99.42373,19.660558,0 -99.424003,19.658881,0 -99.424031,19.658593,0 -99.424134,19.657972,0 -99.424149,19.657879,0 -99.424329,19.656793,0 -99.42449,19.655818,0 -99.424652,19.654844,0 -99.424865,19.653556,0 -99.425161,19.652693,0 -99.42518,19.652603,0 -99.42519,19.652552,0 -99.425289,19.652086,0 -99.425425,19.651437,0 -99.425499,19.651087,0 -99.426771,19.651306,0 -99.426864,19.651322,0 -99.428069,19.65153,0 -99.428119,19.651539,0 -99.428541,19.651612,0 -99.429847,19.651837,0 -99.430179,19.651895,0 -99.430518,19.651953,0 -99.430737,19.651991,0 -99.430952,19.652028,0 -99.431033,19.652042,0 -99.43123,19.652076,0 -99.431351,19.652097,0 -99.431487,19.65212,0 -99.432433,19.652283,0 -99.43338,19.652447,0 -99.434326,19.65261,0 -99.435273,19.652773,0 -99.435392,19.652794,0 -99.435914,19.652884,0 -99.435994,19.652898,0 -99.436492,19.652984,0 -99.436596,19.653002,0 -99.437716,19.653195,0 -99.438836,19.653388,0 -99.439956,19.653581,0 -99.440188,19.653621,0 -99.441411,19.653832,0 -99.442634,19.654043,0 -99.443858,19.654254,0 -99.444274,19.654326,0 -99.445329,19.654508,0 -99.446385,19.65469,0 -99.44744,19.654872,0 -99.448495,19.655054,0 -99.44955,19.655236,0 -99.450605,19.655418,0 -99.45166,19.6556,0 -99.451822,19.654706,0 -99.451983,19.653811,0 -99.452144,19.652917,0 -99.452306,19.652023,0 -99.452467,19.651129,0 -99.452629,19.650235,0 -99.45279,19.64934,0 -99.452952,19.648446,0 -99.453113,19.647552,0 -99.453274,19.646658,0 -99.453436,19.645764,0 -99.453597,19.644869,0 -99.453759,19.643975,0 -99.45392,19.643081,0 -99.454081,19.642187,0 -99.454243,19.641293,0 -99.454404,19.640398,0 -99.454565,19.639504,0 -99.454727,19.63861,0 -99.454888,19.637716,0 -99.45505,19.636822,0 -99.455211,19.635927,0 -99.455351,19.635153,0 -99.455462,19.634536,0 -99.4556,19.633772,0 -99.455709,19.633166,0 -99.455872,19.632263,0 -99.456035,19.631361,0 -99.456198,19.630459,0 -99.456361,19.629557,0 -99.456524,19.628654,0 -99.456668,19.627853,0 -99.456976,19.62615,0 -99.457171,19.625069,0 -99.457346,19.624099,0 -99.45752,19.62313,0 -99.457695,19.622161,0 -99.45787,19.621192,0 -99.458045,19.620223,0 -99.45822,19.619254,0 -99.458395,19.618285,0 -99.45857,19.617316,0 -99.458745,19.616346,0 -99.458919,19.615377,0 -99.459896,19.615464,0 -99.460872,19.61555,0 -99.461849,19.615637,0 -99.462825,19.615723,0 -99.463801,19.61581,0 -99.464778,19.615896,0 -99.465754,19.615983,0 -99.46673,19.616069,0 -99.467707,19.616156,0 -99.468683,19.616242,0 -99.469707,19.616447,0 -99.470643,19.616636,0 -99.47205,19.616196,0 -99.4734,19.615799,0 -99.474798,19.615543,0 -99.475693,19.61531,0 -99.47817,19.614702,0 -99.479864,19.614445,0 -99.481331,19.614256,0 -99.4832,19.614065,0 -99.48442,19.613967,0 -99.485364,19.613917,0 -99.486647,19.613891,0 -99.488434,19.613861,0 -99.490502,19.613899,0 -99.491597,19.613941,0 -99.492692,19.614028,0 -99.493593,19.614046,0 -99.494484,19.613999,0 -99.495399,19.614016,0 -99.496819,19.614195,0 -99.49869,19.614441,0 -99.500686,19.614684,0 -99.502344,19.614953,0 -99.504035,19.615221,0 -99.505862,19.615399,0 -99.507165,19.615509,0 -99.507902,19.615619,0 -99.508633,19.615708,0 -99.509811,19.615842,0 -99.510751,19.615907,0 -99.511526,19.616041,0 -99.511759,19.61604,0 -99.512465,19.615923,0 -99.513264,19.615828,0 -99.51399,19.615733,0 -99.514706,19.615593,0 -99.515418,19.615539,0 -99.516915,19.615413,0 -99.517963,19.615214,0 -99.51902,19.615061,0 -99.521128,19.614865,0 -99.52319,19.615204,0 -99.523624,19.615175,0 -99.524533,19.615275,0 -99.524644,19.614931,0 -99.524929,19.614046,0 -99.525214,19.613161,0 -99.525498,19.612277,0 -99.525783,19.611392,0 -99.526068,19.610507,0 -99.526353,19.609622,0 -99.526638,19.608738,0 -99.526923,19.607853,0 -99.527207,19.606968,0 -99.527492,19.606084,0 -99.527777,19.605199,0 -99.528062,19.604314,0 -99.528879,19.60353,0 -99.529696,19.602746,0 -99.530513,19.601962,0 -99.531478,19.601767,0 -99.532444,19.601571,0 -99.533409,19.601376,0 -99.533524,19.600406,0 -99.533639,19.599435,0 -99.533754,19.598465,0 -99.533976,19.598317,0 -99.53366,19.59791,0 -99.53333,19.597402,0 -99.533059,19.596737,0 -99.532909,19.596161,0 -99.532844,19.595748,0 -99.532704,19.595195,0 -99.532586,19.594714,0 -99.532429,19.594344,0 -99.532187,19.593219,0 -99.532036,19.592666,0 -99.531972,19.592231,0 -99.531874,19.59177,0 -99.531751,19.591379,0 -99.531647,19.591012,0 -99.531582,19.590691,0 -99.531482,19.590413,0 -99.531368,19.590161,0 -99.531053,19.589613,0 -99.530952,19.58936,0 -99.530793,19.58904,0 -99.530551,19.58874,0 -99.530406,19.588625,0 -99.530125,19.58835,0 -99.529888,19.588005,0 -99.529608,19.58766,0 -99.529173,19.58704,0 -99.528844,19.586696,0 -99.528462,19.586304,0 -99.528327,19.586074,0 -99.527994,19.585523,0 -99.527583,19.584971,0 -99.527467,19.584788,0 -99.52737,19.584603,0 -99.527047,19.584076,0 -99.526771,19.583661,0 -99.526535,19.583341,0 -99.526254,19.582858,0 -99.526061,19.582558,0 -99.5258,19.582075,0 -99.523592,19.581797,0 -99.523374,19.581637,0 -99.523079,19.581338,0 -99.522799,19.581016,0 -99.522321,19.580348,0 -99.521871,19.579683,0 -99.521494,19.579223,0 -99.521083,19.578809,0 -99.520496,19.578218,0 -99.51985,19.577683,0 -99.519531,19.577361,0 -99.519023,19.576901,0 -99.518675,19.576557,0 -99.518264,19.576097,0 -99.517727,19.57543,0 -99.517215,19.574717,0 -99.516988,19.574372,0 -99.516548,19.573845,0 -99.517943,19.573755,0 -99.520898,19.57369,0 -99.52162,19.573668,0 -99.522322,19.573623,0 -99.523126,19.573555,0 -99.523935,19.573464,0 -99.524391,19.573443,0 -99.524447,19.571929,0 -99.524477,19.571355,0 -99.524337,19.570827,0 -99.524299,19.570253,0 -99.52429,19.569632,0 -99.524219,19.569081,0 -99.52405,19.5686,0 -99.523997,19.568209,0 -99.523825,19.567268,0 -99.523715,19.566348,0 -99.523547,19.565522,0 -99.523359,19.564626,0 -99.523015,19.562216,0 -99.522683,19.560676,0 -99.522266,19.557831,0 -99.521907,19.555787,0 -99.52167,19.554317,0 -99.521432,19.552847,0 -99.521134,19.551493,0 -99.521053,19.550759,0 -99.520881,19.54984,0 -99.521174,19.54828,0 -99.522401,19.541485,0 -99.521723,19.541187,0 -99.521385,19.541118,0 -99.521108,19.541093,0 -99.520794,19.541002,0 -99.520411,19.540863,0 -99.520136,19.540726,0 -99.519802,19.540609,0 -99.519129,19.540266,0 -99.51867,19.540057,0 -99.518234,19.539873,0 -99.517856,19.539781,0 -99.517614,19.539734,0 -99.51729,19.539643,0 -99.516876,19.539551,0 -99.516419,19.539433,0 -99.515988,19.539341,0 -99.51512,19.539247,0 -99.514792,19.539295,0 -99.514341,19.539274,0 -99.513877,19.539253,0 -99.513508,19.539254,0 -99.512971,19.53921,0 -99.512225,19.539189,0 -99.511784,19.539121,0 -99.511126,19.5391,0 -99.510404,19.539034,0 -99.510211,19.53899,0 -99.509509,19.538969,0 -99.509141,19.53897,0 -99.508603,19.538949,0 -99.508051,19.538883,0 -99.507441,19.538814,0 -99.506927,19.538725,0 -99.506321,19.538544,0 -99.505672,19.538316,0 -99.505201,19.538159,0 -99.504697,19.538,0 -99.504033,19.537749,0 -99.503689,19.537634,0 -99.502986,19.537338,0 -99.502535,19.537134,0 -99.501395,19.536427,0 -99.500817,19.536016,0 -99.500697,19.535693,0 -99.500431,19.535325,0 -99.500212,19.535028,0 -99.500144,19.534845,0 -99.500095,19.534477,0 -99.50005,19.533743,0 -99.500146,19.533352,0 -99.500257,19.53303,0 -99.500465,19.532594,0 -99.50072,19.532019,0 -99.501077,19.531216,0 -99.501459,19.530641,0 -99.502652,19.528987,0 -99.50328,19.528228,0 -99.503638,19.527768,0 -99.504213,19.527055,0 -99.504638,19.52655,0 -99.504754,19.526297,0 -99.504889,19.526091,0 -99.504957,19.52586,0 -99.504908,19.525585,0 -99.504704,19.52531,0 -99.504534,19.525023,0 -99.504438,19.524861,0 -99.504364,19.524737,0 -99.504027,19.524336,0 -99.50369,19.523934,0 -99.502801,19.52288,0 -99.502156,19.522124,0 -99.501399,19.52132,0 -99.500691,19.52068,0 -99.500398,19.520405,0 -99.499692,19.519739,0 -99.498863,19.518984,0 -99.498131,19.518295,0 -99.49766,19.517722,0 -99.49717,19.517057,0 -99.496472,19.516576,0 -99.496321,19.516461,0 -99.496181,19.516371,0 -99.496074,19.516324,0 -99.495939,19.516324,0 -99.495416,19.516509,0 -99.495063,19.516532,0 -99.494569,19.516649,0 -99.494041,19.516603,0 -99.493479,19.516374,0 -99.49313,19.516169,0 -99.492747,19.515847,0 -99.492262,19.515412,0 -99.491942,19.515045,0 -99.491539,19.514517,0 -99.491097,19.5139,0 -99.490651,19.513234,0 -99.490122,19.512522,0 -99.489806,19.512019,0 -99.48937,19.511537,0 -99.489362,19.511524,0 -99.487626,19.511539,0 -99.486363,19.511518,0 -99.485419,19.51152,0 -99.484387,19.511475,0 -99.482494,19.511456,0 -99.481041,19.511595,0 -99.48079,19.511664,0 -99.480659,19.511757,0 -99.480509,19.511895,0 -99.480451,19.512123,0 -99.48036,19.512444,0 -99.48021,19.512813,0 -99.480143,19.513134,0 -99.480147,19.51332,0 -99.480096,19.513316,0 -99.479452,19.513244,0 -99.477806,19.512458,0 -99.476816,19.512002,0 -99.475769,19.511495,0 -99.475103,19.511141,0 -99.47417,19.510684,0 -99.473238,19.510228,0 -99.472306,19.509771,0 -99.471373,19.509315,0 -99.470441,19.508858,0 -99.469509,19.508402,0 -99.468576,19.507945,0 -99.467644,19.507488,0 -99.46679,19.50707,0 -99.465935,19.506651,0 -99.46508,19.506233,0 -99.464226,19.505814,0 -99.463371,19.505396,0 -99.462516,19.504977,0 -99.461662,19.504558,0 -99.460807,19.50414,0 -99.459953,19.503721,0 -99.459098,19.503303,0 -99.458243,19.502884,0 -99.457389,19.502465,0 -99.457188,19.502426,0 -99.456875,19.502299,0 -99.456866,19.50199,0 -99.456419,19.501608,0 -99.455632,19.50127,0 -99.454844,19.500931,0 -99.454334,19.500757,0 -99.453824,19.500582,0 -99.453368,19.500245,0 -99.452912,19.499908,0 -99.452415,19.499562,0 -99.451918,19.499215,0 -99.45153,19.498879,0 -99.451142,19.498544,0 -99.450846,19.498209,0 -99.45055,19.497874,0 -99.450127,19.497319,0 -99.449704,19.496744,0 -99.449398,19.496144,0 -99.449298,19.495879,0 -99.449198,19.495614,0 -99.44915,19.495441,0 -99.449103,19.495268,0 -99.449045,19.495188,0 -99.448988,19.495108,0 -99.44802,19.494827,0 -99.447053,19.494546,0 -99.446669,19.494441,0 -99.446255,19.494327,0 -99.445676,19.494168,0 -99.444997,19.493982,0 -99.444333,19.4938,0 -99.443817,19.493658,0 -99.442688,19.493348,0 -99.441525,19.493029,0 -99.439348,19.492431,0 -99.435918,19.49149,0 -99.432881,19.490657,0 -99.432985,19.490555,0 -99.433998,19.490321,0 -99.43566,19.489781,0 -99.436694,19.489444,0 -99.437728,19.489108,0 -99.438762,19.488771,0 -99.439796,19.488435,0 -99.440831,19.488098,0 -99.441865,19.487762,0 -99.440647,19.486725,0 -99.439459,19.485668,0 -99.438224,19.48457,0 -99.437272,19.483657,0 -99.436564,19.483001,0 -99.435856,19.482345,0 -99.435148,19.481689,0 -99.43444,19.481034,0 -99.43329,19.479949,0 -99.432952,19.47963,0 -99.432002,19.478731,0 -99.431273,19.477993,0 -99.430544,19.477255,0 -99.429937,19.47652,0 -99.429329,19.475785,0 -99.428722,19.47505,0 -99.428114,19.474315,0 -99.427423,19.473582,0 -99.426732,19.472848,0 -99.426041,19.472115,0 -99.42535,19.471382,0 -99.424658,19.470648,0 -99.423967,19.469915,0 -99.422785,19.468664,0 -99.422115,19.467939,0 -99.421444,19.467215,0 -99.421009,19.466204,0 -99.420574,19.465192,0 -99.420138,19.464181,0 -99.419648,19.46325,0 -99.419159,19.462318,0 -99.418669,19.461386,0 -99.417978,19.460717,0 -99.417286,19.460048,0 -99.416595,19.45938,0 -99.415903,19.458711,0 -99.415212,19.458042,0 -99.41452,19.457373,0 -99.413828,19.456705,0 -99.412827,19.456248,0 -99.412585,19.456233,0 -99.412204,19.456087,0 -99.411584,19.455427,0 -99.411416,19.454709,0 -99.411365,19.452976,0 -99.411062,19.45165,0 -99.41054,19.450826,0 -99.410019,19.450002,0 -99.409497,19.449178,0 -99.408753,19.448187,0 -99.408743,19.448158,0 </coordinates> </LinearRing> </outerBoundaryIs> </Polygon> </Placemark> <Placemark> <name>Equipo 2</name> <styleUrl>#poly-FFD600-1000-150-nodesc</styleUrl> <Polygon> <outerBoundaryIs> <LinearRing> <tessellate>1</tessellate> <coordinates> -98.664681,19.660405,0 -98.664617,19.66007,0 -98.664689,19.659316,0 -98.66481,19.658586,0 -98.664757,19.657714,0 -98.664357,19.657032,0 -98.66356,19.65654,0 -98.662887,19.656189,0 -98.662488,19.655814,0 -98.662038,19.655297,0 -98.661216,19.654781,0 -98.659949,19.654415,0 -98.659962,19.654319,0 -98.65976,19.65433,0 -98.659453,19.654136,0 -98.658121,19.653967,0 -98.658076,19.653749,0 -98.657979,19.653745,0 -98.655546,19.650472,0 -98.654812,19.651184,0 -98.653107,19.654315,0 -98.652933,19.654219,0 -98.65226,19.653608,0 -98.65196,19.653209,0 -98.651942,19.653163,0 -98.651335,19.653307,0 -98.650966,19.653439,0 -98.650703,19.653339,0 -98.650581,19.653022,0 -98.650634,19.652657,0 -98.650565,19.652175,0 -98.650302,19.652058,0 -98.649925,19.651878,0 -98.649701,19.651678,0 -98.649446,19.651425,0 -98.649262,19.65127,0 -98.648918,19.650981,0 -98.648548,19.651007,0 -98.64818,19.651056,0 -98.647916,19.651122,0 -98.647654,19.65101,0 -98.647565,19.650972,0 -98.647338,19.650722,0 -98.64716,19.650547,0 -98.646788,19.650326,0 -98.646444,19.650149,0 -98.645649,19.649732,0 -98.644874,19.649286,0 -98.644568,19.649268,0 -98.644187,19.648831,0 -98.643814,19.648838,0 -98.643554,19.649186,0 -98.642904,19.649201,0 -98.641941,19.64949,0 -98.641608,19.64949,0 -98.641434,19.649802,0 -98.64149,19.649997,0 -98.641252,19.650229,0 -98.641041,19.650411,0 -98.640952,19.650627,0 -98.640829,19.65086,0 -98.64067,19.651075,0 -98.640424,19.651457,0 -98.640072,19.651673,0 -98.639721,19.651822,0 -98.639622,19.651974,0 -98.639736,19.651975,0 -98.63932,19.652825,0 -98.639297,19.652935,0 -98.639233,19.653002,0 -98.638978,19.653525,0 -98.638769,19.653398,0 -98.638708,19.653414,0 -98.638494,19.65354,0 -98.638293,19.653704,0 -98.638109,19.654078,0 -98.637822,19.654275,0 -98.637376,19.654173,0 -98.63698,19.654244,0 -98.636991,19.654225,0 -98.636507,19.654265,0 -98.636305,19.654523,0 -98.636195,19.65467,0 -98.635809,19.655059,0 -98.635645,19.655228,0 -98.635182,19.65543,0 -98.634949,19.655538,0 -98.634541,19.655526,0 -98.634031,19.655515,0 -98.6332,19.655506,0 -98.632978,19.65553,0 -98.632691,19.655724,0 -98.632054,19.655936,0 -98.631628,19.655976,0 -98.631139,19.656119,0 -98.63071,19.656248,0 -98.63034,19.656408,0 -98.629495,19.656736,0 -98.629375,19.656677,0 -98.629197,19.656462,0 -98.628885,19.656079,0 -98.62877,19.656059,0 -98.628422,19.65625,0 -98.628184,19.656574,0 -98.627731,19.656436,0 -98.627502,19.656125,0 -98.627436,19.656045,0 -98.626749,19.655807,0 -98.626367,19.655677,0 -98.625487,19.655598,0 -98.625114,19.65556,0 -98.624844,19.655725,0 -98.624773,19.655765,0 -98.624449,19.655838,0 -98.624306,19.656133,0 -98.623137,19.656781,0 -98.622221,19.65766,0 -98.622191,19.657991,0 -98.622345,19.658372,0 -98.622057,19.659081,0 -98.621324,19.660356,0 -98.621185,19.660597,0 -98.62087,19.660862,0 -98.620546,19.661025,0 -98.619901,19.661072,0 -98.619671,19.661164,0 -98.619692,19.661173,0 -98.620269,19.6614,0 -98.620423,19.661459,0 -98.620663,19.661508,0 -98.621201,19.661764,0 -98.62195,19.662567,0 -98.622087,19.662698,0 -98.622818,19.663143,0 -98.623321,19.663451,0 -98.623716,19.663532,0 -98.624426,19.663676,0 -98.6246,19.66371,0 -98.625066,19.66311,0 -98.625936,19.663088,0 -98.627511,19.663468,0 -98.627915,19.663535,0 -98.627912,19.66356,0 -98.627762,19.665141,0 -98.628665,19.665295,0 -98.630145,19.666698,0 -98.630027,19.66731,0 -98.630937,19.667232,0 -98.63106,19.667364,0 -98.63143,19.667562,0 -98.631786,19.667562,0 -98.631919,19.667591,0 -98.632097,19.667858,0 -98.632127,19.667868,0 -98.632393,19.667957,0 -98.632926,19.668168,0 -98.633044,19.668492,0 -98.633222,19.66859,0 -98.634079,19.668073,0 -98.634281,19.668206,0 -98.63452,19.668587,0 -98.63477,19.669276,0 -98.634947,19.669964,0 -98.635198,19.6704,0 -98.635257,19.670639,0 -98.635494,19.670765,0 -98.635672,19.670555,0 -98.635806,19.670289,0 -98.636192,19.670065,0 -98.637146,19.669462,0 -98.637588,19.669029,0 -98.63793,19.668973,0 -98.638373,19.669222,0 -98.638717,19.669819,0 -98.638871,19.670358,0 -98.639201,19.670618,0 -98.639616,19.670816,0 -98.639897,19.671083,0 -98.639704,19.671349,0 -98.639466,19.671588,0 -98.639494,19.672234,0 -98.639315,19.672781,0 -98.639018,19.673117,0 -98.638467,19.67369,0 -98.638141,19.673958,0 -98.637799,19.674168,0 -98.63722,19.674559,0 -98.637012,19.674868,0 -98.636151,19.675035,0 -98.635434,19.675027,0 -98.634974,19.675138,0 -98.634589,19.674941,0 -98.63416,19.674617,0 -98.633523,19.674405,0 -98.632841,19.674137,0 -98.632544,19.674178,0 -98.632237,19.674526,0 -98.632047,19.675152,0 -98.632214,19.675919,0 -98.632228,19.676382,0 -98.632005,19.676634,0 -98.631352,19.677007,0 -98.631085,19.677443,0 -98.631019,19.677716,0 -98.630741,19.677996,0 -98.630349,19.678343,0 -98.630107,19.679026,0 -98.63005,19.679674,0 -98.629894,19.680685,0 -98.62993,19.681193,0 -98.629892,19.681596,0 -98.629834,19.682612,0 -98.629558,19.684018,0 -98.629243,19.684988,0 -98.629272,19.685537,0 -98.6294,19.686238,0 -98.629464,19.686815,0 -98.629373,19.687276,0 -98.629057,19.687958,0 -98.628616,19.688795,0 -98.627725,19.68933,0 -98.626557,19.690099,0 -98.626034,19.690483,0 -98.625535,19.690901,0 -98.62511,19.691375,0 -98.625201,19.691953,0 -98.625311,19.692566,0 -98.62524,19.692772,0 -98.625207,19.693066,0 -98.625218,19.694121,0 -98.625177,19.694528,0 -98.625066,19.695073,0 -98.624844,19.695682,0 -98.624069,19.696133,0 -98.623915,19.696408,0 -98.62402,19.696893,0 -98.624388,19.697158,0 -98.624455,19.697363,0 -98.625138,19.698004,0 -98.627314,19.700032,0 -98.626821,19.700862,0 -98.629015,19.70269,0 -98.629943,19.703462,0 -98.629714,19.703568,0 -98.629918,19.704114,0 -98.630793,19.704704,0 -98.630735,19.705373,0 -98.63089,19.70603,0 -98.630901,19.707087,0 -98.630847,19.707185,0 -98.630102,19.707746,0 -98.629965,19.707845,0 -98.629949,19.707917,0 -98.629472,19.709615,0 -98.629434,19.709721,0 -98.629733,19.709726,0 -98.629996,19.709998,0 -98.629996,19.710084,0 -98.630181,19.710188,0 -98.630217,19.710249,0 -98.63046,19.710329,0 -98.630627,19.710548,0 -98.63084,19.710727,0 -98.63085,19.71082,0 -98.630965,19.710899,0 -98.630994,19.71099,0 -98.631201,19.711103,0 -98.631183,19.711356,0 -98.63118,19.711408,0 -98.631279,19.711462,0 -98.63143,19.711388,0 -98.631498,19.711574,0 -98.631427,19.71161,0 -98.631548,19.711671,0 -98.631644,19.711669,0 -98.631882,19.711857,0 -98.631891,19.712119,0 -98.63212,19.712352,0 -98.632258,19.7124,0 -98.632247,19.712633,0 -98.632426,19.712952,0 -98.632372,19.713139,0 -98.632476,19.713293,0 -98.632334,19.713792,0 -98.630131,19.715716,0 -98.630026,19.716104,0 -98.630287,19.716853,0 -98.633462,19.714965,0 -98.63346,19.71599,0 -98.630854,19.717719,0 -98.631459,19.718665,0 -98.631692,19.719131,0 -98.631792,19.719646,0 -98.631804,19.720198,0 -98.632013,19.720831,0 -98.632251,19.721333,0 -98.632527,19.721679,0 -98.632648,19.721822,0 -98.632795,19.722165,0 -98.632924,19.722236,0 -98.632807,19.722326,0 -98.632569,19.722492,0 -98.632254,19.72266,0 -98.63199,19.722912,0 -98.631811,19.722981,0 -98.631657,19.722974,0 -98.631548,19.72275,0 -98.631632,19.722286,0 -98.631565,19.722188,0 -98.631616,19.72199,0 -98.631586,19.721663,0 -98.631525,19.72148,0 -98.631189,19.721364,0 -98.630644,19.721322,0 -98.629201,19.722645,0 -98.628765,19.722572,0 -98.628576,19.722359,0 -98.628394,19.722314,0 -98.628192,19.722277,0 -98.627893,19.721822,0 -98.627636,19.721822,0 -98.627349,19.72223,0 -98.627352,19.722386,0 -98.627516,19.722768,0 -98.627446,19.722976,0 -98.627507,19.723394,0 -98.627469,19.723744,0 -98.627515,19.723954,0 -98.626683,19.72444,0 -98.626214,19.724712,0 -98.6263,19.724832,0 -98.626268,19.724859,0 -98.626932,19.725647,0 -98.625742,19.726609,0 -98.624703,19.727424,0 -98.624461,19.726495,0 -98.62378,19.725574,0 -98.62318,19.726023,0 -98.622909,19.726298,0 -98.621495,19.727047,0 -98.621284,19.727125,0 -98.621236,19.727066,0 -98.620995,19.726772,0 -98.619808,19.726932,0 -98.619072,19.727267,0 -98.616226,19.728541,0 -98.615985,19.729309,0 -98.615899,19.729483,0 -98.61518,19.729415,0 -98.613977,19.729146,0 -98.612903,19.728725,0 -98.611992,19.728378,0 -98.611162,19.727878,0 -98.610634,19.7276,0 -98.609876,19.727062,0 -98.609312,19.726513,0 -98.608657,19.725857,0 -98.608136,19.725188,0 -98.608102,19.725075,0 -98.607955,19.725379,0 -98.60768,19.725665,0 -98.607119,19.726974,0 -98.606313,19.728853,0 -98.606056,19.729454,0 -98.605747,19.730174,0 -98.604894,19.732163,0 -98.604561,19.732939,0 -98.603213,19.732647,0 -98.603052,19.734368,0 -98.603185,19.734705,0 -98.603769,19.735366,0 -98.603875,19.735967,0 -98.603631,19.738949,0 -98.603584,19.740263,0 -98.603576,19.740365,0 -98.603179,19.744642,0 -98.603141,19.745116,0 -98.602927,19.747788,0 -98.602792,19.747733,0 -98.602677,19.749462,0 -98.602486,19.751535,0 -98.601732,19.7517,0 -98.601587,19.752828,0 -98.601958,19.752749,0 -98.602401,19.752655,0 -98.602409,19.753657,0 -98.602388,19.75424,0 -98.602302,19.754972,0 -98.602089,19.756151,0 -98.601902,19.756731,0 -98.601706,19.757309,0 -98.601146,19.758272,0 -98.600586,19.759235,0 -98.600026,19.760197,0 -98.599465,19.76116,0 -98.599277,19.761386,0 -98.599416,19.761489,0 -98.598839,19.762473,0 -98.598262,19.763458,0 -98.597684,19.764443,0 -98.597107,19.765427,0 -98.596908,19.765744,0 -98.596894,19.765767,0 -98.596867,19.76584,0 -98.599155,19.765244,0 -98.600598,19.764923,0 -98.599425,19.768229,0 -98.60467,19.770642,0 -98.606742,19.771807,0 -98.610457,19.773497,0 -98.611664,19.774129,0 -98.609604,19.777109,0 -98.611302,19.777986,0 -98.611819,19.779566,0 -98.613412,19.781673,0 -98.613429,19.784051,0 -98.612989,19.784407,0 -98.612654,19.784744,0 -98.612453,19.784954,0 -98.612236,19.785269,0 -98.611951,19.786022,0 -98.612234,19.786368,0 -98.612729,19.786455,0 -98.613021,19.786358,0 -98.612854,19.786643,0 -98.614024,19.786987,0 -98.61612,19.78763,0 -98.617476,19.788051,0 -98.618412,19.787783,0 -98.619586,19.787289,0 -98.620483,19.787022,0 -98.622017,19.786404,0 -98.624066,19.785683,0 -98.625261,19.785183,0 -98.624314,19.790064,0 -98.624287,19.790197,0 -98.623614,19.793602,0 -98.623562,19.793889,0 -98.625911,19.794529,0 -98.627149,19.794983,0 -98.627993,19.795203,0 -98.629737,19.795811,0 -98.630596,19.795598,0 -98.630315,19.795961,0 -98.632165,19.796452,0 -98.632436,19.796413,0 -98.632558,19.796433,0 -98.636139,19.79882,0 -98.636173,19.79885,0 -98.638788,19.80077,0 -98.63885,19.801176,0 -98.63872,19.801231,0 -98.638689,19.801757,0 -98.63877,19.802015,0 -98.638762,19.802108,0 -98.638734,19.802468,0 -98.638592,19.8035,0 -98.638282,19.805532,0 -98.637975,19.807576,0 -98.638354,19.808808,0 -98.638618,19.809231,0 -98.6388,19.809529,0 -98.639115,19.80974,0 -98.639254,19.809926,0 -98.639423,19.810349,0 -98.639512,19.810672,0 -98.639764,19.810873,0 -98.63993,19.811004,0 -98.639913,19.811612,0 -98.639903,19.811964,0 -98.642077,19.81263,0 -98.642355,19.812652,0 -98.642204,19.813509,0 -98.644336,19.814438,0 -98.644419,19.814599,0 -98.643699,19.817523,0 -98.644764,19.817641,0 -98.645229,19.817737,0 -98.645494,19.817889,0 -98.646489,19.818133,0 -98.647327,19.818381,0 -98.646563,19.819547,0 -98.647393,19.819971,0 -98.647389,19.819988,0 -98.646993,19.820882,0 -98.648763,19.821662,0 -98.648894,19.821708,0 -98.648674,19.822661,0 -98.649417,19.823064,0 -98.65026,19.823425,0 -98.650277,19.823474,0 -98.649935,19.82427,0 -98.65163,19.825007,0 -98.65239,19.825314,0 -98.652585,19.825393,0 -98.652557,19.825471,0 -98.652288,19.826287,0 -98.653057,19.826504,0 -98.654426,19.827064,0 -98.655456,19.827551,0 -98.654611,19.828101,0 -98.655238,19.828891,0 -98.65584,19.829603,0 -98.656415,19.830389,0 -98.656862,19.830934,0 -98.657567,19.831702,0 -98.658256,19.832414,0 -98.658522,19.832684,0 -98.658931,19.833018,0 -98.659031,19.833303,0 -98.659335,19.8335,0 -98.65978,19.833907,0 -98.660211,19.834445,0 -98.660659,19.83488,0 -98.660815,19.835031,0 -98.661215,19.834651,0 -98.661384,19.834701,0 -98.661606,19.834787,0 -98.661882,19.834852,0 -98.662204,19.835047,0 -98.662433,19.835008,0 -98.66267,19.835045,0 -98.662949,19.835111,0 -98.66317,19.835194,0 -98.663618,19.835199,0 -98.663992,19.835255,0 -98.664277,19.835204,0 -98.664417,19.835048,0 -98.664527,19.834958,0 -98.664621,19.834885,0 -98.664715,19.834886,0 -98.664824,19.835002,0 -98.664843,19.835134,0 -98.664886,19.835301,0 -98.665017,19.835351,0 -98.66523,19.835389,0 -98.66538,19.835297,0 -98.665535,19.835193,0 -98.665701,19.835099,0 -98.665867,19.834912,0 -98.666055,19.834797,0 -98.666276,19.834693,0 -98.666575,19.834621,0 -98.666844,19.83463,0 -98.667186,19.834673,0 -98.667466,19.834721,0 -98.667768,19.834721,0 -98.668001,19.834685,0 -98.668223,19.834547,0 -98.668437,19.834418,0 -98.668766,19.83431,0 -98.669053,19.834279,0 -98.669406,19.834322,0 -98.669693,19.834395,0 -98.669892,19.834427,0 -98.670231,19.834307,0 -98.670396,19.834199,0 -98.67064,19.834062,0 -98.670853,19.833954,0 -98.671007,19.833812,0 -98.671248,19.833588,0 -98.671592,19.833246,0 -98.671751,19.833111,0 -98.672053,19.832914,0 -98.672385,19.832842,0 -98.672661,19.832779,0 -98.673025,19.832728,0 -98.673302,19.832624,0 -98.673512,19.832478,0 -98.673678,19.832322,0 -98.673832,19.832207,0 -98.674076,19.832166,0 -98.674285,19.832177,0 -98.674519,19.832395,0 -98.674792,19.832396,0 -98.674758,19.83205,0 -98.674623,19.830998,0 -98.674354,19.829708,0 -98.673925,19.828857,0 -98.673683,19.827973,0 -98.673697,19.827264,0 -98.67375,19.82678,0 -98.67401,19.825911,0 -98.674085,19.825277,0 -98.674264,19.824357,0 -98.674275,19.823741,0 -98.674078,19.822954,0 -98.673642,19.821881,0 -98.673547,19.821634,0 -98.673496,19.821586,0 -98.673452,19.821544,0 -98.67344,19.821484,0 -98.674027,19.820726,0 -98.673454,19.820534,0 -98.673433,19.820504,0 -98.673075,19.819473,0 -98.672657,19.817685,0 -98.672477,19.816723,0 -98.672532,19.816635,0 -98.67303,19.81575,0 -98.673585,19.814886,0 -98.674021,19.8142,0 -98.674076,19.814017,0 -98.674818,19.814773,0 -98.675875,19.813184,0 -98.676628,19.813791,0 -98.677209,19.813198,0 -98.678347,19.814147,0 -98.678399,19.814231,0 -98.678601,19.81411,0 -98.67865,19.814081,0 -98.679,19.814285,0 -98.679076,19.814672,0 -98.679427,19.814952,0 -98.683086,19.818424,0 -98.685694,19.820802,0 -98.687075,19.822186,0 -98.688934,19.823778,0 -98.689867,19.824761,0 -98.69056,19.825435,0 -98.691278,19.8261,0 -98.691983,19.826799,0 -98.69269,19.827437,0 -98.694106,19.828772,0 -98.695868,19.830445,0 -98.697641,19.832115,0 -98.697429,19.832448,0 -98.694161,19.835268,0 -98.690811,19.838067,0 -98.689676,19.83901,0 -98.687934,19.840536,0 -98.686772,19.841582,0 -98.684364,19.843643,0 -98.683729,19.844161,0 -98.682495,19.845239,0 -98.681892,19.845763,0 -98.681722,19.845884,0 -98.679746,19.847625,0 -98.678923,19.848351,0 -98.67838,19.849025,0 -98.677883,19.849611,0 -98.677414,19.84999,0 -98.677254,19.850083,0 -98.677253,19.850084,0 -98.677179,19.850127,0 -98.676256,19.850739,0 -98.674747,19.851741,0 -98.673228,19.852749,0 -98.673159,19.852795,0 -98.67184,19.853659,0 -98.671909,19.85389,0 -98.671967,19.854223,0 -98.671599,19.855175,0 -98.6716,19.855176,0 -98.672218,19.855646,0 -98.672086,19.856815,0 -98.672374,19.856972,0 -98.672485,19.857022,0 -98.672413,19.857342,0 -98.672281,19.858028,0 -98.672171,19.858529,0 -98.672235,19.858958,0 -98.672369,19.859504,0 -98.672506,19.860623,0 -98.67205,19.86096,0 -98.672346,19.861313,0 -98.672445,19.861478,0 -98.672518,19.861623,0 -98.672185,19.861902,0 -98.672416,19.862244,0 -98.672659,19.862835,0 -98.672956,19.862726,0 -98.672985,19.862849,0 -98.673029,19.863016,0 -98.673545,19.86285,0 -98.674665,19.862421,0 -98.675564,19.861921,0 -98.675897,19.86177,0 -98.676184,19.86137,0 -98.677353,19.860963,0 -98.680845,19.860651,0 -98.680926,19.860544,0 -98.681051,19.860325,0 -98.681579,19.859398,0 -98.681775,19.858708,0 -98.681933,19.857872,0 -98.682116,19.85712,0 -98.682135,19.857007,0 -98.683023,19.856241,0 -98.682473,19.855858,0 -98.682445,19.855849,0 -98.682796,19.855295,0 -98.683098,19.854949,0 -98.683458,19.854652,0 -98.683729,19.854428,0 -98.68394,19.854217,0 -98.68408,19.854077,0 -98.684421,19.853329,0 -98.684962,19.852437,0 -98.684966,19.851777,0 -98.684745,19.850692,0 -98.685368,19.850549,0 -98.685867,19.85056,0 -98.686459,19.850547,0 -98.68721,19.850523,0 -98.687685,19.850637,0 -98.688438,19.850957,0 -98.688858,19.851157,0 -98.689128,19.851286,0 -98.689742,19.85166,0 -98.690561,19.852159,0 -98.692564,19.853296,0 -98.693567,19.853955,0 -98.694666,19.854887,0 -98.695633,19.85566,0 -98.696146,19.856145,0 -98.696232,19.856213,0 -98.697961,19.857587,0 -98.698132,19.857502,0 -98.698152,19.857519,0 -98.698525,19.857865,0 -98.698745,19.858067,0 -98.699127,19.85842,0 -98.699891,19.856991,0 -98.699946,19.856889,0 -98.700079,19.856799,0 -98.700219,19.856705,0 -98.700414,19.856573,0 -98.702755,19.858601,0 -98.703161,19.857959,0 -98.701017,19.856095,0 -98.700988,19.856063,0 -98.701616,19.855673,0 -98.701634,19.8557,0 -98.703541,19.857356,0 -98.703932,19.856737,0 -98.704273,19.856197,0 -98.704546,19.855764,0 -98.704599,19.855581,0 -98.703445,19.854571,0 -98.703419,19.854539,0 -98.704426,19.854317,0 -98.704473,19.854318,0 -98.704802,19.854295,0 -98.704946,19.854285,0 -98.705014,19.854281,0 -98.705464,19.854493,0 -98.706776,19.855113,0 -98.707283,19.855353,0 -98.708128,19.855752,0 -98.708702,19.854744,0 -98.70925,19.853781,0 -98.711256,19.855104,0 -98.712023,19.854386,0 -98.712573,19.853973,0 -98.712821,19.853802,0 -98.713225,19.854279,0 -98.713505,19.854785,0 -98.714105,19.855503,0 -98.714222,19.855413,0 -98.715047,19.856236,0 -98.716073,19.857188,0 -98.716694,19.858376,0 -98.717128,19.858643,0 -98.717612,19.860435,0 -98.718543,19.862337,0 -98.718627,19.862344,0 -98.718735,19.862289,0 -98.719768,19.8625,0 -98.72195,19.862873,0 -98.723727,19.863173,0 -98.726043,19.863567,0 -98.726951,19.86382,0 -98.727708,19.863971,0 -98.727916,19.864341,0 -98.728648,19.864791,0 -98.729292,19.864973,0 -98.730953,19.865178,0 -98.73123,19.865298,0 -98.732193,19.865737,0 -98.733168,19.866275,0 -98.734513,19.867213,0 -98.735093,19.867406,0 -98.735801,19.867555,0 -98.736336,19.867534,0 -98.736765,19.867597,0 -98.736843,19.867608,0 -98.737187,19.867348,0 -98.737529,19.867122,0 -98.737818,19.866904,0 -98.738186,19.867009,0 -98.738432,19.867078,0 -98.738707,19.867157,0 -98.738844,19.867235,0 -98.73859,19.869417,0 -98.738592,19.869439,0 -98.738743,19.869462,0 -98.739248,19.869554,0 -98.738901,19.871249,0 -98.739494,19.871338,0 -98.739315,19.872225,0 -98.739173,19.87256,0 -98.739672,19.872705,0 -98.741003,19.873293,0 -98.742092,19.873745,0 -98.743214,19.874264,0 -98.743615,19.874409,0 -98.743843,19.874489,0 -98.744232,19.874568,0 -98.745389,19.874941,0 -98.746325,19.875287,0 -98.7465,19.875333,0 -98.750237,19.876572,0 -98.751528,19.876861,0 -98.751969,19.876913,0 -98.752356,19.876982,0 -98.752504,19.876957,0 -98.753579,19.877027,0 -98.753856,19.876955,0 -98.754699,19.87679,0 -98.754776,19.876775,0 -98.755177,19.876686,0 -98.755336,19.876581,0 -98.755919,19.876465,0 -98.756206,19.876387,0 -98.756356,19.876263,0 -98.756777,19.876152,0 -98.757134,19.876103,0 -98.757782,19.875916,0 -98.758855,19.875576,0 -98.760426,19.87515,0 -98.760985,19.875016,0 -98.761253,19.875017,0 -98.761356,19.874988,0 -98.761451,19.874902,0 -98.763172,19.875451,0 -98.764713,19.875878,0 -98.766168,19.876288,0 -98.76731,19.876602,0 -98.769082,19.877533,0 -98.769487,19.877776,0 -98.769929,19.877959,0 -98.770385,19.878194,0 -98.770659,19.878353,0 -98.770998,19.878518,0 -98.772699,19.879081,0 -98.773133,19.879275,0 -98.77361,19.879525,0 -98.774,19.879774,0 -98.774854,19.880279,0 -98.775186,19.880521,0 -98.775567,19.880741,0 -98.776224,19.881092,0 -98.776593,19.881189,0 -98.777011,19.881422,0 -98.777398,19.88166,0 -98.777874,19.881856,0 -98.777821,19.881944,0 -98.779013,19.88258,0 -98.780574,19.883541,0 -98.787505,19.878921,0 -98.793927,19.872084,0 -98.792947,19.87194,0 -98.792123,19.871617,0 -98.791621,19.871244,0 -98.791167,19.870517,0 -98.791166,19.869696,0 -98.791299,19.869376,0 -98.791428,19.868883,0 -98.791159,19.868835,0 -98.789497,19.868543,0 -98.791064,19.865144,0 -98.790212,19.864782,0 -98.790654,19.864313,0 -98.790022,19.863546,0 -98.790793,19.862281,0 -98.789722,19.861887,0 -98.790674,19.860902,0 -98.790982,19.860709,0 -98.791251,19.860488,0 -98.791924,19.859993,0 -98.792335,19.8598,0 -98.792522,19.859407,0 -98.792729,19.859143,0 -98.793042,19.858644,0 -98.793605,19.85781,0 -98.793763,19.85756,0 -98.794042,19.857233,0 -98.794286,19.857063,0 -98.794583,19.856899,0 -98.79485,19.856611,0 -98.795172,19.856415,0 -98.797204,19.857297,0 -98.797196,19.857426,0 -98.79743,19.857611,0 -98.798087,19.857974,0 -98.799037,19.858534,0 -98.799614,19.858891,0 -98.800002,19.859195,0 -98.800292,19.859405,0 -98.80068,19.859678,0 -98.800838,19.859991,0 -98.800943,19.860221,0 -98.801172,19.860496,0 -98.801404,19.860751,0 -98.801698,19.861245,0 -98.801843,19.861244,0 -98.802086,19.861308,0 -98.802299,19.861354,0 -98.802496,19.86141,0 -98.802932,19.861633,0 -98.803114,19.861675,0 -98.803365,19.861771,0 -98.803705,19.861882,0 -98.804133,19.862037,0 -98.804466,19.862198,0 -98.804616,19.862259,0 -98.80483,19.862381,0 -98.805066,19.862557,0 -98.805316,19.86276,0 -98.805658,19.863051,0 -98.805791,19.863346,0 -98.805909,19.863784,0 -98.805996,19.86415,0 -98.806097,19.864487,0 -98.806199,19.864586,0 -98.806527,19.864629,0 -98.806861,19.864675,0 -98.807507,19.864712,0 -98.807991,19.864609,0 -98.808763,19.864466,0 -98.809337,19.864525,0 -98.809594,19.864611,0 -98.809924,19.864734,0 -98.810204,19.864822,0 -98.810463,19.864848,0 -98.810744,19.864959,0 -98.810972,19.865032,0 -98.811233,19.865083,0 -98.811512,19.86517,0 -98.811876,19.86531,0 -98.81242,19.865461,0 -98.812848,19.865605,0 -98.813164,19.865669,0 -98.813676,19.865872,0 -98.813788,19.866449,0 -98.814176,19.867246,0 -98.814826,19.867844,0 -98.81553,19.868149,0 -98.816234,19.868969,0 -98.817135,19.867284,0 -98.820959,19.869562,0 -98.823058,19.870814,0 -98.823364,19.870876,0 -98.827234,19.873273,0 -98.828325,19.87386,0 -98.829305,19.874388,0 -98.829367,19.87442,0 -98.830202,19.874896,0 -98.831151,19.875461,0 -98.831568,19.87571,0 -98.832442,19.876241,0 -98.832489,19.876269,0 -98.838182,19.879421,0 -98.836654,19.88122,0 -98.840088,19.881603,0 -98.841863,19.881629,0 -98.84245,19.881654,0 -98.843228,19.881749,0 -98.844034,19.881988,0 -98.843995,19.882223,0 -98.843563,19.883695,0 -98.842573,19.887013,0 -98.842197,19.888267,0 -98.84156,19.890369,0 -98.841527,19.890446,0 -98.840952,19.892309,0 -98.841191,19.892372,0 -98.851261,19.900605,0 -98.85583,19.90428,0 -98.858627,19.900971,0 -98.861492,19.897762,0 -98.865642,19.89331,0 -98.865896,19.892587,0 -98.866025,19.892653,0 -98.866122,19.892703,0 -98.87062,19.894958,0 -98.870903,19.895106,0 -98.871312,19.89532,0 -98.878061,19.898735,0 -98.878253,19.898976,0 -98.878736,19.899108,0 -98.880757,19.899669,0 -98.880797,19.899715,0 -98.88042,19.900538,0 -98.881575,19.90127,0 -98.88188,19.90059,0 -98.881925,19.900603,0 -98.883162,19.901529,0 -98.883478,19.900819,0 -98.882599,19.900097,0 -98.882707,19.900088,0 -98.882722,19.90004,0 -98.883721,19.900139,0 -98.883901,19.899559,0 -98.884019,19.899598,0 -98.884701,19.899823,0 -98.886351,19.899427,0 -98.88655,19.899152,0 -98.886731,19.898902,0 -98.886767,19.898912,0 -98.8874,19.899094,0 -98.887686,19.899096,0 -98.887778,19.898864,0 -98.887904,19.898703,0 -98.888028,19.898477,0 -98.88812,19.898306,0 -98.888215,19.898119,0 -98.888318,19.897898,0 -98.888463,19.897854,0 -98.88855,19.897862,0 -98.888678,19.897935,0 -98.888765,19.897898,0 -98.888824,19.897915,0 -98.889106,19.89793,0 -98.889278,19.897826,0 -98.889357,19.897634,0 -98.889373,19.897501,0 -98.889561,19.89719,0 -98.889808,19.897073,0 -98.889809,19.897073,0 -98.889845,19.897098,0 -98.890037,19.897234,0 -98.89076,19.896261,0 -98.891634,19.894977,0 -98.892061,19.894376,0 -98.89589,19.895708,0 -98.896079,19.895377,0 -98.896355,19.894969,0 -98.896751,19.894559,0 -98.897195,19.894133,0 -98.895196,19.893347,0 -98.89705,19.892405,0 -98.897173,19.892366,0 -98.897574,19.891184,0 -98.897646,19.890956,0 -98.897789,19.889871,0 -98.897656,19.888604,0 -98.897518,19.887957,0 -98.895712,19.886433,0 -98.896178,19.885806,0 -98.896874,19.88503,0 -98.897444,19.884458,0 -98.89827,19.883605,0 -98.904118,19.88758,0 -98.904731,19.886681,0 -98.905315,19.885771,0 -98.907007,19.88358,0 -98.907747,19.883939,0 -98.907654,19.883154,0 -98.907609,19.882775,0 -98.909204,19.879872,0 -98.911825,19.881017,0 -98.912046,19.880581,0 -98.912276,19.8801,0 -98.909722,19.87897,0 -98.910165,19.878049,0 -98.91274,19.879156,0 -98.912913,19.878802,0 -98.91317,19.878295,0 -98.913414,19.877814,0 -98.913621,19.877369,0 -98.911094,19.876291,0 -98.911432,19.875888,0 -98.913851,19.876924,0 -98.914019,19.876582,0 -98.914236,19.876139,0 -98.914447,19.875719,0 -98.912442,19.874801,0 -98.912888,19.873969,0 -98.914841,19.874884,0 -98.915093,19.874402,0 -98.913128,19.87354,0 -98.913948,19.87235,0 -98.91573,19.873115,0 -98.915978,19.872622,0 -98.916011,19.872555,0 -98.916039,19.872497,0 -98.916193,19.872187,0 -98.914604,19.87144,0 -98.915269,19.870406,0 -98.915424,19.870182,0 -98.916401,19.870621,0 -98.916885,19.870182,0 -98.917481,19.869233,0 -98.916852,19.868956,0 -98.910058,19.865863,0 -98.909484,19.865602,0 -98.90864,19.865402,0 -98.90768,19.864918,0 -98.907062,19.864606,0 -98.905358,19.863617,0 -98.905203,19.863544,0 -98.905617,19.862985,0 -98.90577,19.862778,0 -98.906079,19.862349,0 -98.906885,19.86123,0 -98.907035,19.861015,0 -98.907199,19.86078,0 -98.907411,19.860477,0 -98.907363,19.860034,0 -98.907349,19.859578,0 -98.907375,19.859493,0 -98.907496,19.859088,0 -98.907616,19.858893,0 -98.907726,19.858715,0 -98.90784,19.858531,0 -98.908673,19.857296,0 -98.908789,19.857125,0 -98.908326,19.857375,0 -98.907835,19.857644,0 -98.906963,19.85809,0 -98.906155,19.858486,0 -98.904128,19.859184,0 -98.902978,19.859306,0 -98.904378,19.8575,0 -98.904501,19.857341,0 -98.905962,19.855605,0 -98.906331,19.854388,0 -98.906684,19.853251,0 -98.907478,19.850753,0 -98.907652,19.850796,0 -98.907629,19.850427,0 -98.907855,19.849872,0 -98.907615,19.849011,0 -98.907407,19.84824,0 -98.907466,19.847889,0 -98.907397,19.847848,0 -98.907321,19.847804,0 -98.906869,19.847744,0 -98.906611,19.847704,0 -98.906885,19.846883,0 -98.906859,19.846872,0 -98.905932,19.846738,0 -98.906128,19.84613,0 -98.90567,19.845982,0 -98.906016,19.84513,0 -98.906438,19.84528,0 -98.906723,19.844455,0 -98.907583,19.844607,0 -98.907877,19.843576,0 -98.908929,19.843842,0 -98.909046,19.843851,0 -98.909169,19.843449,0 -98.910989,19.843827,0 -98.912417,19.843184,0 -98.912798,19.843014,0 -98.914403,19.842298,0 -98.914438,19.841567,0 -98.915405,19.841876,0 -98.916323,19.839332,0 -98.917227,19.839649,0 -98.917389,19.839993,0 -98.918163,19.840314,0 -98.922586,19.84187,0 -98.923032,19.842411,0 -98.923371,19.842849,0 -98.923707,19.843008,0 -98.924571,19.842895,0 -98.924954,19.842589,0 -98.925205,19.842671,0 -98.927632,19.843393,0 -98.92819,19.84188,0 -98.928456,19.841193,0 -98.929,19.839782,0 -98.929235,19.83911,0 -98.929694,19.83785,0 -98.92982,19.837499,0 -98.930044,19.836979,0 -98.930098,19.836775,0 -98.930477,19.835826,0 -98.930905,19.83466,0 -98.930927,19.834642,0 -98.932367,19.830969,0 -98.935392,19.826009,0 -98.936024,19.824966,0 -98.938636,19.817568,0 -98.941095,19.812635,0 -98.943276,19.808257,0 -98.945489,19.803802,0 -98.94635,19.804263,0 -98.946685,19.80428,0 -98.947512,19.804527,0 -98.947547,19.804537,0 -98.948253,19.802181,0 -98.948375,19.801854,0 -98.9485,19.801352,0 -98.948759,19.800511,0 -98.949517,19.799972,0 -98.950042,19.799641,0 -98.950652,19.7996,0 -98.951152,19.799687,0 -98.951685,19.799769,0 -98.952367,19.800014,0 -98.953016,19.800161,0 -98.953424,19.79924,0 -98.954052,19.798574,0 -98.954826,19.798684,0 -98.955399,19.79883,0 -98.954683,19.800543,0 -98.95506,19.800747,0 -98.955187,19.800793,0 -98.955331,19.800793,0 -98.9555,19.800818,0 -98.955618,19.800905,0 -98.955709,19.80104,0 -98.95584,19.801102,0 -98.956242,19.801143,0 -98.956688,19.801214,0 -98.957145,19.801312,0 -98.957472,19.801522,0 -98.957668,19.801663,0 -98.957948,19.801797,0 -98.958529,19.802029,0 -98.958751,19.802103,0 -98.958839,19.802282,0 -98.958842,19.802288,0 -98.958947,19.802502,0 -98.959147,19.802768,0 -98.959402,19.802859,0 -98.959729,19.802939,0 -98.959965,19.80284,0 -98.960275,19.802989,0 -98.960508,19.803113,0 -98.96064,19.803259,0 -98.960722,19.803468,0 -98.960722,19.803732,0 -98.961029,19.803861,0 -98.961359,19.803908,0 -98.960917,19.805094,0 -98.962588,19.805744,0 -98.963844,19.806232,0 -98.964161,19.806356,0 -98.964468,19.806475,0 -98.96449,19.806483,0 -98.965737,19.806967,0 -98.967738,19.807743,0 -98.970195,19.808696,0 -98.970198,19.808697,0 -98.970244,19.808649,0 -98.970872,19.807977,0 -98.970877,19.80797,0 -98.97139,19.807179,0 -98.972117,19.806452,0 -98.972845,19.805725,0 -98.973572,19.804998,0 -98.973959,19.804635,0 -98.974627,19.803931,0 -98.975294,19.803227,0 -98.975962,19.802524,0 -98.976629,19.80182,0 -98.977296,19.801116,0 -98.977964,19.800412,0 -98.978631,19.799708,0 -98.979299,19.799005,0 -98.979966,19.798301,0 -98.980633,19.797597,0 -98.981301,19.796893,0 -98.981968,19.796189,0 -98.982636,19.795485,0 -98.983623,19.794557,0 -98.984851,19.793411,0 -98.98585,19.792571,0 -98.986849,19.79173,0 -98.987716,19.790995,0 -98.988003,19.790888,0 -98.98823,19.790673,0 -98.988318,19.790473,0 -98.988611,19.790228,0 -98.989064,19.78993,0 -98.989204,19.789814,0 -98.989243,19.789633,0 -98.989357,19.789508,0 -98.98945,19.789396,0 -98.989605,19.789249,0 -98.990363,19.788655,0 -98.990694,19.788639,0 -98.991091,19.78862,0 -98.991456,19.788602,0 -98.992393,19.788557,0 -98.992817,19.788537,0 -98.993861,19.788487,0 -98.994409,19.788461,0 -98.995102,19.788427,0 -98.995896,19.788389,0 -98.996915,19.78834,0 -98.997881,19.788294,0 -98.997818,19.78775,0 -98.99797,19.787414,0 -98.998293,19.7867,0 -98.998316,19.786696,0 -98.998555,19.786639,0 -98.998655,19.786588,0 -98.999585,19.787064,0 -99.000515,19.78754,0 -99.000562,19.787564,0 -99.001201,19.787931,0 -99.002017,19.788384,0 -99.002428,19.788606,0 -99.002539,19.788673,0 -99.0034,19.789192,0 -99.004262,19.789711,0 -99.005123,19.790229,0 -99.006308,19.790924,0 -99.007494,19.791618,0 -99.007922,19.790677,0 -99.008349,19.789735,0 -99.009102,19.788115,0 -99.009496,19.787249,0 -99.009895,19.786419,0 -99.00968,19.786245,0 -99.00967,19.786228,0 -99.009571,19.786071,0 -99.009634,19.785844,0 -99.008974,19.784703,0 -99.008314,19.783561,0 -99.008528,19.782773,0 -99.008647,19.782335,0 -99.008979,19.781109,0 -99.009288,19.780039,0 -99.009515,19.779253,0 -99.009595,19.778976,0 -99.008273,19.778619,0 -99.006952,19.778262,0 -99.006394,19.778113,0 -99.006811,19.776512,0 -99.007207,19.775294,0 -99.007652,19.773841,0 -99.007687,19.773726,0 -99.008225,19.773903,0 -99.009177,19.77422,0 -99.010129,19.774536,0 -99.011081,19.774852,0 -99.012033,19.775168,0 -99.013378,19.775595,0 -99.014722,19.776022,0 -99.016078,19.776453,0 -99.017063,19.776766,0 -99.018048,19.777079,0 -99.019033,19.777392,0 -99.020449,19.777828,0 -99.021241,19.778071,0 -99.021967,19.778295,0 -99.022345,19.778411,0 -99.02288,19.778575,0 -99.023587,19.778792,0 -99.024199,19.77898,0 -99.024639,19.779126,0 -99.024878,19.77918,0 -99.025279,19.779214,0 -99.024576,19.778459,0 -99.023874,19.777703,0 -99.023172,19.776948,0 -99.023104,19.776878,0 -99.02305,19.776922,0 -99.022669,19.77653,0 -99.022264,19.776113,0 -99.021459,19.775209,0 -99.021041,19.774758,0 -99.020647,19.774334,0 -99.019819,19.773441,0 -99.018972,19.772529,0 -99.0186,19.772121,0 -99.018174,19.771656,0 -99.017949,19.771388,0 -99.01749,19.771823,0 -99.016628,19.771545,0 -99.015644,19.771226,0 -99.014659,19.770908,0 -99.013675,19.77059,0 -99.01269,19.770271,0 -99.011706,19.769953,0 -99.010721,19.769635,0 -99.009737,19.769316,0 -99.008304,19.768853,0 -99.007331,19.768538,0 -99.006358,19.768223,0 -99.00603,19.768122,0 -99.005842,19.76805,0 -99.004786,19.767644,0 -99.003729,19.767239,0 -99.002672,19.766834,0 -99.001616,19.766429,0 -99.000277,19.765889,0 -99.000072,19.765806,0 -98.998829,19.765328,0 -98.997754,19.764928,0 -98.99668,19.764529,0 -98.995606,19.76413,0 -98.994532,19.76373,0 -98.994305,19.763646,0 -98.993822,19.763451,0 -98.993356,19.763263,0 -98.993184,19.7632,0 -98.992725,19.763034,0 -98.991189,19.762477,0 -98.990198,19.762206,0 -98.989207,19.761936,0 -98.988481,19.761737,0 -98.988013,19.761609,0 -98.987053,19.761352,0 -98.986093,19.761095,0 -98.985133,19.760837,0 -98.984086,19.760557,0 -98.98304,19.760276,0 -98.981994,19.759995,0 -98.980947,19.759715,0 -98.979901,19.759434,0 -98.978947,19.759178,0 -98.977993,19.758923,0 -98.976831,19.758633,0 -98.975669,19.758343,0 -98.975447,19.757263,0 -98.975225,19.756182,0 -98.975003,19.755102,0 -98.974757,19.755043,0 -98.974341,19.753366,0 -98.974016,19.75249,0 -98.973871,19.751723,0 -98.973686,19.750674,0 -98.973619,19.74971,0 -98.973552,19.748746,0 -98.973485,19.747782,0 -98.973606,19.747427,0 -98.973661,19.746734,0 -98.973978,19.745736,0 -98.974266,19.744831,0 -98.974532,19.743812,0 -98.974799,19.742794,0 -98.975066,19.741775,0 -98.975332,19.740757,0 -98.975627,19.739721,0 -98.975922,19.738685,0 -98.976356,19.737392,0 -98.976528,19.737221,0 -98.976612,19.736942,0 -98.976574,19.736774,0 -98.976845,19.735881,0 -98.977116,19.734988,0 -98.977387,19.734095,0 -98.977658,19.733202,0 -98.978311,19.732507,0 -98.978965,19.731813,0 -98.979618,19.731118,0 -98.980272,19.730423,0 -98.980925,19.729729,0 -98.981579,19.729034,0 -98.982232,19.72834,0 -98.98292,19.727675,0 -98.983607,19.727011,0 -98.984295,19.726347,0 -98.984982,19.725682,0 -98.985669,19.725018,0 -98.986357,19.724353,0 -98.987044,19.723689,0 -98.987732,19.723024,0 -98.988419,19.72236,0 -98.989106,19.721695,0 -98.99012,19.721944,0 -98.991134,19.722192,0 -98.992148,19.722441,0 -98.993162,19.722689,0 -98.994176,19.722937,0 -98.99519,19.723186,0 -98.99616,19.723419,0 -98.99713,19.723652,0 -98.9981,19.723885,0 -98.99907,19.724118,0 -99.00004,19.724351,0 -99.001009,19.724584,0 -99.001979,19.724817,0 -99.002949,19.72505,0 -99.003919,19.725283,0 -99.004889,19.725516,0 -99.005859,19.725749,0 -99.006834,19.725977,0 -99.007809,19.726204,0 -99.008785,19.726432,0 -99.00976,19.726659,0 -99.010735,19.726886,0 -99.011711,19.727114,0 -99.012686,19.727341,0 -99.013661,19.727568,0 -99.014234,19.727468,0 -99.015229,19.727713,0 -99.015297,19.727729,0 -99.01672,19.728087,0 -99.016912,19.72813,0 -99.01791,19.728378,0 -99.018909,19.728626,0 -99.019908,19.728874,0 -99.020906,19.729123,0 -99.021431,19.729249,0 -99.021905,19.72937,0 -99.022334,19.729474,0 -99.022678,19.729564,0 -99.022855,19.729616,0 -99.023024,19.729604,0 -99.023377,19.729579,0 -99.023712,19.729561,0 -99.024085,19.729524,0 -99.024459,19.729501,0 -99.024794,19.729474,0 -99.025158,19.729451,0 -99.025503,19.729424,0 -99.025866,19.729394,0 -99.026184,19.729375,0 -99.026531,19.729353,0 -99.026903,19.729321,0 -99.027235,19.7293,0 -99.0276,19.729279,0 -99.027963,19.72925,0 -99.028295,19.729233,0 -99.028636,19.729199,0 -99.029005,19.729165,0 -99.029336,19.729142,0 -99.029723,19.729115,0 -99.030406,19.729067,0 -99.030731,19.729041,0 -99.03106,19.729019,0 -99.031377,19.728996,0 -99.031712,19.728973,0 -99.032051,19.72895,0 -99.032754,19.7289,0 -99.033101,19.728874,0 -99.033464,19.728849,0 -99.033782,19.728826,0 -99.03415,19.728799,0 -99.035102,19.728732,0 -99.035141,19.72873,0 -99.035092,19.727394,0 -99.035043,19.726057,0 -99.034964,19.725129,0 -99.034885,19.724201,0 -99.034807,19.723273,0 -99.034728,19.722345,0 -99.034649,19.721417,0 -99.03457,19.720488,0 -99.034491,19.71956,0 -99.034412,19.718632,0 -99.034334,19.717704,0 -99.034255,19.716776,0 -99.034176,19.715847,0 -99.034097,19.714919,0 -99.034018,19.713991,0 -99.033939,19.713063,0 -99.03386,19.712135,0 -99.033782,19.711207,0 -99.033703,19.710278,0 -99.033624,19.70935,0 -99.033545,19.708422,0 -99.033466,19.707494,0 -99.033387,19.706566,0 -99.033309,19.705637,0 -99.03323,19.704709,0 -99.033151,19.703781,0 -99.033072,19.702853,0 -99.032993,19.701925,0 -99.033071,19.701899,0 -99.033808,19.701206,0 -99.034545,19.700512,0 -99.035282,19.699819,0 -99.036018,19.699126,0 -99.036755,19.698433,0 -99.037747,19.698584,0 -99.03874,19.698734,0 -99.039732,19.698885,0 -99.040725,19.699036,0 -99.041717,19.699187,0 -99.042709,19.699338,0 -99.043702,19.699489,0 -99.044694,19.69964,0 -99.044946,19.698661,0 -99.045198,19.697682,0 -99.045432,19.696772,0 -99.045667,19.695862,0 -99.045901,19.694952,0 -99.046135,19.694042,0 -99.04637,19.693133,0 -99.046604,19.692223,0 -99.046865,19.691211,0 -99.047125,19.6902,0 -99.045275,19.689768,0 -99.045186,19.689709,0 -99.043338,19.689274,0 -99.04351,19.688617,0 -99.04356,19.688427,0 -99.043684,19.687958,0 -99.043856,19.6873,0 -99.044032,19.686641,0 -99.044204,19.685988,0 -99.044374,19.685332,0 -99.044676,19.684171,0 -99.044783,19.684115,0 -99.044701,19.683967,0 -99.044859,19.683375,0 -99.04503,19.682696,0 -99.045202,19.682024,0 -99.045369,19.681378,0 -99.045534,19.680742,0 -99.045705,19.680084,0 -99.04582,19.679643,0 -99.045821,19.679626,0 -99.045881,19.679407,0 -99.045894,19.67936,0 -99.045938,19.679189,0 -99.045997,19.678961,0 -99.046051,19.678751,0 -99.046055,19.678731,0 -99.046108,19.678532,0 -99.046115,19.678502,0 -99.046166,19.678313,0 -99.046174,19.67827,0 -99.047914,19.678682,0 -99.047985,19.678721,0 -99.047977,19.678836,0 -99.048703,19.678987,0 -99.049762,19.679234,0 -99.049943,19.678319,0 -99.050124,19.677404,0 -99.050305,19.676489,0 -99.050486,19.675575,0 -99.050667,19.67466,0 -99.050848,19.673745,0 -99.051029,19.67283,0 -99.05121,19.671915,0 -99.051391,19.671,0 -99.051572,19.670085,0 -99.051753,19.669171,0 -99.051934,19.668256,0 -99.052115,19.667341,0 -99.052296,19.666426,0 -99.052477,19.665511,0 -99.052658,19.664596,0 -99.052839,19.663682,0 -99.053019,19.662767,0 -99.0532,19.661852,0 -99.053392,19.660886,0 -99.054355,19.660709,0 -99.055318,19.660532,0 -99.055587,19.660482,0 -99.056543,19.660296,0 -99.057499,19.66011,0 -99.058455,19.659924,0 -99.059411,19.659738,0 -99.059506,19.659719,0 -99.060832,19.65946,0 -99.061523,19.659325,0 -99.062635,19.659149,0 -99.063178,19.659039,0 -99.063698,19.658933,0 -99.064892,19.658701,0 -99.064916,19.658697,0 -99.065304,19.658621,0 -99.065376,19.658607,0 -99.065701,19.658545,0 -99.066069,19.658474,0 -99.066112,19.658466,0 -99.066461,19.658398,0 -99.066765,19.658338,0 -99.068111,19.658071,0 -99.068317,19.65803,0 -99.068488,19.657998,0 -99.068808,19.657938,0 -99.068859,19.657913,0 -99.06894,19.657875,0 -99.069094,19.657803,0 -99.069176,19.65785,0 -99.069295,19.657825,0 -99.069984,19.657684,0 -99.070554,19.657568,0 -99.071171,19.657441,0 -99.07181,19.657311,0 -99.072416,19.657186,0 -99.07247,19.657105,0 -99.072587,19.655987,0 -99.072597,19.655873,0 -99.072687,19.654822,0 -99.072769,19.653856,0 -99.072824,19.65324,0 -99.07291,19.65227,0 -99.072946,19.651596,0 -99.072971,19.651617,0 -99.073098,19.651634,0 -99.073239,19.65165,0 -99.073195,19.651515,0 -99.073192,19.65151,0 -99.073063,19.651302,0 -99.073119,19.651172,0 -99.073169,19.651074,0 -99.073204,19.650963,0 -99.0732,19.650781,0 -99.07319,19.650678,0 -99.073188,19.650674,0 -99.073173,19.65063,0 -99.073145,19.650644,0 -99.073073,19.65072,0 -99.073077,19.650173,0 -99.073121,19.649803,0 -99.073236,19.648855,0 -99.073285,19.647957,0 -99.073344,19.646852,0 -99.073388,19.646038,0 -99.073431,19.645226,0 -99.073483,19.645045,0 -99.073556,19.644793,0 -99.07363,19.643612,0 -99.073657,19.643187,0 -99.073853,19.640082,0 -99.073768,19.639912,0 -99.073944,19.639809,0 -99.074056,19.638682,0 -99.074178,19.636802,0 -99.074262,19.636683,0 -99.074292,19.636485,0 -99.074305,19.63637,0 -99.074339,19.636306,0 -99.074453,19.636202,0 -99.074892,19.635188,0 -99.075049,19.634861,0 -99.075278,19.634383,0 -99.07577,19.633469,0 -99.075888,19.63325,0 -99.075934,19.633164,0 -99.076172,19.632721,0 -99.076548,19.63205,0 -99.076826,19.631552,0 -99.077128,19.631013,0 -99.077421,19.63049,0 -99.077709,19.629975,0 -99.077812,19.629791,0 -99.079153,19.627393,0 -99.079351,19.627054,0 -99.079508,19.62677,0 -99.079564,19.626669,0 -99.07957,19.626317,0 -99.079697,19.62631,0 -99.079787,19.626174,0 -99.080011,19.625764,0 -99.08044,19.62501,0 -99.081268,19.623527,0 -99.081468,19.62319,0 -99.081658,19.623254,0 -99.081831,19.622934,0 -99.081893,19.62282,0 -99.081958,19.622698,0 -99.082069,19.622502,0 -99.082162,19.62234,0 -99.082697,19.62141,0 -99.082967,19.62094,0 -99.083042,19.620809,0 -99.083082,19.620745,0 -99.08313,19.620666,0 -99.082915,19.620242,0 -99.082391,19.619254,0 -99.082523,19.619121,0 -99.0827,19.618976,0 -99.082801,19.618894,0 -99.083011,19.618723,0 -99.083104,19.618647,0 -99.083321,19.61847,0 -99.083427,19.618384,0 -99.083641,19.618209,0 -99.083743,19.618126,0 -99.08395,19.617957,0 -99.084132,19.617809,0 -99.084253,19.617711,0 -99.084461,19.617541,0 -99.084597,19.617431,0 -99.084758,19.617299,0 -99.084895,19.617187,0 -99.085061,19.617052,0 -99.085222,19.616921,0 -99.08542,19.61676,0 -99.085497,19.616696,0 -99.085515,19.616679,0 -99.085649,19.616545,0 -99.085673,19.616443,0 -99.085654,19.616355,0 -99.085624,19.616213,0 -99.085701,19.616165,0 -99.085814,19.616117,0 -99.085875,19.616059,0 -99.085898,19.616037,0 -99.08596,19.615909,0 -99.085775,19.615771,0 -99.085603,19.615666,0 -99.085766,19.615375,0 -99.08597,19.615013,0 -99.08628,19.614465,0 -99.086393,19.614208,0 -99.086433,19.614118,0 -99.08725,19.612705,0 -99.087996,19.611328,0 -99.088405,19.610596,0 -99.088624,19.610309,0 -99.088887,19.610319,0 -99.089376,19.610189,0 -99.089468,19.609662,0 -99.089684,19.608903,0 -99.090301,19.606414,0 -99.090917,19.603925,0 -99.091081,19.603396,0 -99.091322,19.602822,0 -99.092205,19.600436,0 -99.09153,19.600052,0 -99.091148,19.599834,0 -99.090627,19.599537,0 -99.089945,19.599148,0 -99.088695,19.598435,0 -99.086502,19.597186,0 -99.086599,19.596707,0 -99.086724,19.596087,0 -99.086858,19.595425,0 -99.087009,19.594677,0 -99.087187,19.593794,0 -99.08738,19.592841,0 -99.087549,19.591999,0 -99.087762,19.590945,0 -99.088012,19.590093,0 -99.088261,19.589241,0 -99.088912,19.589345,0 -99.089564,19.589448,0 -99.090038,19.589541,0 -99.090343,19.589586,0 -99.09091,19.589723,0 -99.091171,19.589771,0 -99.091573,19.589793,0 -99.091607,19.589793,0 -99.092038,19.589863,0 -99.09229,19.589885,0 -99.092527,19.58984,0 -99.092803,19.589792,0 -99.093118,19.589724,0 -99.093491,19.589679,0 -99.093942,19.589609,0 -99.094295,19.589563,0 -99.094658,19.589518,0 -99.095065,19.58954,0 -99.095414,19.58954,0 -99.09567,19.589563,0 -99.096159,19.589562,0 -99.096513,19.589472,0 -99.097002,19.589379,0 -99.097443,19.589288,0 -99.097816,19.589173,0 -99.098373,19.589012,0 -99.098654,19.588922,0 -99.099443,19.588646,0 -99.099719,19.588575,0 -99.099976,19.588508,0 -99.100208,19.588485,0 -99.100436,19.588485,0 -99.100993,19.58853,0 -99.101491,19.588622,0 -99.102092,19.588692,0 -99.102397,19.588714,0 -99.102702,19.588784,0 -99.103022,19.588944,0 -99.103497,19.589265,0 -99.104073,19.589585,0 -99.104543,19.589953,0 -99.104853,19.590113,0 -99.105274,19.590436,0 -99.105545,19.590619,0 -99.105931,19.590897,0 -99.106119,19.590989,0 -99.106371,19.591084,0 -99.106399,19.591086,0 -99.106586,19.59108,0 -99.107626,19.591051,0 -99.108666,19.591022,0 -99.109706,19.590993,0 -99.110746,19.590964,0 -99.111787,19.590935,0 -99.112827,19.590905,0 -99.113867,19.590876,0 -99.114907,19.590847,0 -99.1159,19.590819,0 -99.116894,19.590791,0 -99.117887,19.590763,0 -99.117888,19.590592,0 -99.118598,19.584462,0 -99.116906,19.581445,0 -99.114662,19.579796,0 -99.112966,19.573742,0 -99.112856,19.573263,0 -99.112392,19.571237,0 -99.111818,19.568727,0 -99.108097,19.564888,0 -99.111241,19.561498,0 -99.114853,19.557596,0 -99.115719,19.55666,0 -99.115685,19.555756,0 -99.115621,19.55404,0 -99.11848,19.552185,0 -99.120373,19.549923,0 -99.120436,19.549848,0 -99.121036,19.549132,0 -99.121218,19.548696,0 -99.12131,19.548476,0 -99.121463,19.548109,0 -99.121634,19.5477,0 -99.121747,19.547429,0 -99.121883,19.547104,0 -99.121979,19.546873,0 -99.122153,19.546542,0 -99.122237,19.546385,0 -99.122566,19.545761,0 -99.122637,19.545625,0 -99.122733,19.545444,0 -99.123227,19.544971,0 -99.123507,19.544703,0 -99.124191,19.544049,0 -99.124214,19.544027,0 -99.124643,19.543422,0 -99.124693,19.543351,0 -99.125288,19.542511,0 -99.125375,19.542389,0 -99.125653,19.542047,0 -99.125693,19.541997,0 -99.125982,19.541641,0 -99.126276,19.541335,0 -99.127435,19.540131,0 -99.128146,19.539391,0 -99.129911,19.536994,0 -99.130277,19.536495,0 -99.130575,19.536091,0 -99.127368,19.535084,0 -99.127378,19.531711,0 -99.128083,19.526609,0 -99.128184,19.525881,0 -99.128106,19.525293,0 -99.128005,19.524531,0 -99.127796,19.524363,0 -99.127733,19.524312,0 -99.127498,19.524171,0 -99.127384,19.524068,0 -99.12735,19.524012,0 -99.127298,19.523911,0 -99.127244,19.523807,0 -99.12709,19.52351,0 -99.127063,19.523458,0 -99.126728,19.522809,0 -99.126721,19.522797,0 -99.126441,19.522255,0 -99.126415,19.522205,0 -99.126167,19.521726,0 -99.126164,19.521721,0 -99.125898,19.521208,0 -99.125738,19.521025,0 -99.125276,19.5205,0 -99.125063,19.520289,0 -99.124771,19.520001,0 -99.124365,19.5196,0 -99.124342,19.519577,0 -99.124248,19.519484,0 -99.124006,19.519246,0 -99.123888,19.519129,0 -99.121015,19.516292,0 -99.120982,19.516267,0 -99.120873,19.516187,0 -99.116882,19.513237,0 -99.115929,19.513052,0 -99.114407,19.511061,0 -99.110589,19.511173,0 -99.11056,19.511162,0 -99.110232,19.511042,0 -99.10999,19.510619,0 -99.109898,19.510458,0 -99.109433,19.510312,0 -99.109227,19.510581,0 -99.109145,19.510742,0 -99.108974,19.51111,0 -99.108869,19.510931,0 -99.108763,19.510752,0 -99.108741,19.510709,0 -99.108668,19.510568,0 -99.108646,19.510491,0 -99.107839,19.510462,0 -99.1077,19.510855,0 -99.107681,19.510906,0 -99.107636,19.511027,0 -99.107512,19.51069,0 -99.107463,19.510407,0 -99.107443,19.510288,0 -99.107389,19.510024,0 -99.107366,19.509934,0 -99.107304,19.509685,0 -99.107094,19.510064,0 -99.107042,19.510178,0 -99.106933,19.51027,0 -99.10674,19.510445,0 -99.106582,19.510426,0 -99.10643,19.510321,0 -99.106224,19.510243,0 -99.106123,19.510155,0 -99.106027,19.509993,0 -99.105932,19.509886,0 -99.105516,19.510328,0 -99.104809,19.510653,0 -99.104203,19.510931,0 -99.10386,19.511089,0 -99.103431,19.511286,0 -99.102828,19.511405,0 -99.102724,19.511426,0 -99.102415,19.511487,0 -99.102325,19.511505,0 -99.102165,19.511536,0 -99.101395,19.511688,0 -99.101084,19.51175,0 -99.100972,19.511772,0 -99.100588,19.511848,0 -99.100521,19.511865,0 -99.099769,19.512049,0 -99.099491,19.512118,0 -99.099433,19.512132,0 -99.0992,19.512189,0 -99.098889,19.512265,0 -99.098622,19.512331,0 -99.098355,19.512397,0 -99.098272,19.512417,0 -99.097857,19.512519,0 -99.0974,19.512631,0 -99.097162,19.512524,0 -99.095811,19.511917,0 -99.095613,19.511828,0 -99.095022,19.511562,0 -99.094896,19.511505,0 -99.09451,19.511332,0 -99.093179,19.510733,0 -99.092897,19.510606,0 -99.091894,19.510155,0 -99.090888,19.509703,0 -99.090558,19.509554,0 -99.090512,19.509534,0 -99.090386,19.509477,0 -99.090353,19.509462,0 -99.090256,19.509418,0 -99.089961,19.509316,0 -99.089493,19.509155,0 -99.089343,19.509103,0 -99.088943,19.508938,0 -99.088297,19.508672,0 -99.087824,19.508476,0 -99.087558,19.508366,0 -99.087371,19.508289,0 -99.08727,19.508247,0 -99.086921,19.508103,0 -99.08648,19.507921,0 -99.085722,19.507608,0 -99.085404,19.507477,0 -99.085071,19.507331,0 -99.0849,19.507255,0 -99.084623,19.507134,0 -99.084147,19.506925,0 -99.083715,19.506735,0 -99.08325,19.506531,0 -99.082799,19.506333,0 -99.082795,19.506331,0 -99.082336,19.506129,0 -99.081888,19.505932,0 -99.081774,19.505882,0 -99.081449,19.50574,0 -99.08101,19.505547,0 -99.080565,19.505351,0 -99.080087,19.505141,0 -99.080042,19.505121,0 -99.07963,19.50494,0 -99.079215,19.504764,0 -99.078852,19.504609,0 -99.077899,19.504202,0 -99.077653,19.504088,0 -99.077475,19.504005,0 -99.077215,19.503885,0 -99.076439,19.503588,0 -99.076048,19.503439,0 -99.075998,19.503419,0 -99.075688,19.5033,0 -99.075227,19.503123,0 -99.074902,19.502998,0 -99.074771,19.502947,0 -99.074278,19.502758,0 -99.074139,19.502704,0 -99.074022,19.502659,0 -99.073505,19.50246,0 -99.073329,19.502392,0 -99.073223,19.502351,0 -99.072982,19.502259,0 -99.072823,19.502197,0 -99.072341,19.502012,0 -99.071433,19.501662,0 -99.070683,19.501374,0 -99.070126,19.501159,0 -99.069193,19.5008,0 -99.068813,19.500656,0 -99.068425,19.500509,0 -99.068092,19.500383,0 -99.067344,19.500099,0 -99.066947,19.499948,0 -99.065979,19.499581,0 -99.065305,19.499326,0 -99.065212,19.49929,0 -99.06463,19.49907,0 -99.063863,19.498779,0 -99.064205,19.498004,0 -99.06431,19.497768,0 -99.064322,19.49774,0 -99.064653,19.496991,0 -99.064707,19.496868,0 -99.064845,19.496558,0 -99.064961,19.496294,0 -99.065119,19.495938,0 -99.065227,19.495694,0 -99.065253,19.495635,0 -99.065271,19.495593,0 -99.065448,19.495192,0 -99.065524,19.495022,0 -99.065935,19.494092,0 -99.066105,19.493678,0 -99.066107,19.493673,0 -99.066109,19.493669,0 -99.066301,19.493201,0 -99.066634,19.49239,0 -99.066667,19.492309,0 -99.066702,19.492224,0 -99.066793,19.492003,0 -99.066947,19.491628,0 -99.067105,19.491242,0 -99.06725,19.49089,0 -99.067441,19.490423,0 -99.067953,19.489178,0 -99.067991,19.489083,0 -99.067923,19.489012,0 -99.067851,19.488937,0 -99.067622,19.488396,0 -99.067585,19.488306,0 -99.067513,19.488138,0 -99.067487,19.488075,0 -99.06731,19.487656,0 -99.067278,19.48758,0 -99.067118,19.487202,0 -99.067036,19.487008,0 -99.066988,19.486894,0 -99.066726,19.486272,0 -99.066714,19.486245,0 -99.066584,19.485936,0 -99.066461,19.485644,0 -99.06632,19.48531,0 -99.066293,19.485247,0 -99.066187,19.484996,0 -99.066073,19.484726,0 -99.066061,19.484699,0 -99.06593,19.484386,0 -99.065785,19.484043,0 -99.065663,19.483754,0 -99.065464,19.483284,0 -99.065408,19.483152,0 -99.065386,19.483098,0 -99.065377,19.483077,0 -99.065153,19.482547,0 -99.065145,19.482528,0 -99.064853,19.481836,0 -99.0647,19.481656,0 -99.064559,19.48155,0 -99.064508,19.481539,0 -99.064177,19.481466,0 -99.063996,19.481426,0 -99.063747,19.481371,0 -99.063745,19.481371,0 -99.063278,19.481268,0 -99.06361,19.47997,0 -99.062997,19.479819,0 -99.063361,19.478609,0 -99.062996,19.47779,0 -99.062632,19.476971,0 -99.062483,19.476637,0 -99.062477,19.476624,0 -99.061831,19.475172,0 -99.061442,19.474267,0 -99.061412,19.474197,0 -99.060859,19.47291,0 -99.0608,19.472773,0 -99.060397,19.471834,0 -99.059454,19.46964,0 -99.059204,19.469083,0 -99.059119,19.468895,0 -99.059118,19.468892,0 -99.059117,19.46889,0 -99.057912,19.466209,0 -99.057736,19.465836,0 -99.05755,19.465442,0 -99.057182,19.464662,0 -99.056545,19.463256,0 -99.056293,19.462652,0 -99.056064,19.462104,0 -99.055953,19.461839,0 -99.05594,19.461806,0 -99.055289,19.460249,0 -99.055037,19.459674,0 -99.054856,19.459262,0 -99.054787,19.459104,0 -99.054675,19.458849,0 -99.05467,19.458836,0 -99.054487,19.458419,0 -99.054439,19.45831,0 -99.054308,19.45801,0 -99.054291,19.457971,0 -99.054128,19.4576,0 -99.054116,19.457573,0 -99.053948,19.457189,0 -99.053938,19.457167,0 -99.053767,19.456777,0 -99.053749,19.456734,0 -99.053586,19.456364,0 -99.053578,19.456344,0 -99.053498,19.456163,0 -99.053401,19.45594,0 -99.053387,19.45591,0 -99.053216,19.455519,0 -99.053214,19.455513,0 -99.053211,19.455508,0 -99.053029,19.455091,0 -99.053027,19.455088,0 -99.053026,19.455084,0 -99.052857,19.454698,0 -99.052843,19.454666,0 -99.052669,19.454271,0 -99.052668,19.454268,0 -99.052536,19.453966,0 -99.052492,19.453864,0 -99.05249,19.453859,0 -99.052317,19.453451,0 -99.052314,19.453444,0 -99.052154,19.45307,0 -99.05212,19.45299,0 -99.05198,19.452661,0 -99.051963,19.45262,0 -99.051838,19.452328,0 -99.051811,19.452263,0 -99.051733,19.452081,0 -99.051147,19.450704,0 -99.05112,19.450639,0 -99.050904,19.450245,0 -99.050869,19.450182,0 -99.050868,19.450181,0 -99.050833,19.450116,0 -99.049806,19.448244,0 -99.049751,19.448143,0 -99.048896,19.446585,0 -99.048816,19.446438,0 -99.048723,19.446268,0 -99.047928,19.44482,0 -99.047895,19.444759,0 -99.047491,19.444022,0 -99.047386,19.443831,0 -99.047141,19.443131,0 -99.046459,19.442365,0 -99.046459,19.442364,0 -99.046652,19.442063,0 -99.046871,19.441723,0 -99.047779,19.440308,0 -99.048209,19.439637,0 -99.048451,19.439131,0 -99.050562,19.434723,0 -99.052332,19.430559,0 -99.052434,19.430333,0 -99.052602,19.429961,0 -99.053998,19.426828,0 -99.054058,19.426701,0 -99.054394,19.425985,0 -99.0544,19.425972,0 -99.054683,19.425368,0 -99.054731,19.425266,0 -99.054934,19.424832,0 -99.055196,19.424273,0 -99.055295,19.423916,0 -99.055622,19.422736,0 -99.055786,19.422141,0 -99.055836,19.421961,0 -99.055888,19.42155,0 -99.056017,19.420538,0 -99.056019,19.420523,0 -99.056116,19.419759,0 -99.056168,19.419348,0 -99.056179,19.41926,0 -99.056311,19.418214,0 -99.056401,19.417507,0 -99.056444,19.417052,0 -99.056475,19.416726,0 -99.056552,19.415902,0 -99.056576,19.415655,0 -99.056639,19.414987,0 -99.056656,19.4148,0 -99.056677,19.414609,0 -99.056727,19.414134,0 -99.056765,19.413783,0 -99.056791,19.413539,0 -99.056823,19.41324,0 -99.056847,19.413018,0 -99.056909,19.412429,0 -99.056922,19.412309,0 -99.057075,19.410879,0 -99.057091,19.410728,0 -99.057156,19.410119,0 -99.057192,19.409787,0 -99.057205,19.409656,0 -99.057237,19.40935,0 -99.057318,19.408572,0 -99.057356,19.408202,0 -99.057386,19.40791,0 -99.057476,19.407045,0 -99.057509,19.40673,0 -99.057525,19.406575,0 -99.05755,19.406334,0 -99.057605,19.405806,0 -99.057652,19.405355,0 -99.057703,19.40486,0 -99.057716,19.404734,0 -99.057758,19.404334,0 -99.057808,19.403851,0 -99.057858,19.403366,0 -99.057925,19.402726,0 -99.058107,19.400972,0 -99.058119,19.40085,0 -99.058133,19.40072,0 -99.058136,19.400692,0 -99.057932,19.400609,0 -99.057611,19.400477,0 -99.056301,19.399939,0 -99.056113,19.399862,0 -99.055571,19.39964,0 -99.054961,19.399389,0 -99.054909,19.399366,0 -99.053929,19.398918,0 -99.053792,19.398856,0 -99.05332,19.398639,0 -99.052906,19.398449,0 -99.052571,19.398297,0 -99.05246,19.398247,0 -99.051861,19.397975,0 -99.051399,19.397766,0 -99.051318,19.39773,0 -99.05087,19.397527,0 -99.050659,19.397431,0 -99.050508,19.397363,0 -99.050111,19.397181,0 -99.049639,19.396965,0 -99.049248,19.396785,0 -99.049153,19.396742,0 -99.048848,19.396602,0 -99.048453,19.396421,0 -99.048153,19.396284,0 -99.048009,19.396218,0 -99.047785,19.396115,0 -99.047397,19.39594,0 -99.047039,19.395779,0 -99.046866,19.395701,0 -99.046314,19.395452,0 -99.045788,19.395215,0 -99.045675,19.395164,0 -99.04525,19.394973,0 -99.044724,19.394736,0 -99.044597,19.394678,0 -99.044474,19.394623,0 -99.044329,19.394557,0 -99.043905,19.394364,0 -99.043483,19.394172,0 -99.043254,19.394068,0 -99.043068,19.393983,0 -99.042699,19.393815,0 -99.042285,19.393627,0 -99.04228,19.393625,0 -99.042275,19.393623,0 -99.041764,19.39339,0 -99.041607,19.393319,0 -99.041204,19.393133,0 -99.040853,19.392972,0 -99.040825,19.392959,0 -99.040446,19.392785,0 -99.04015,19.392648,0 -99.040027,19.392592,0 -99.039718,19.39245,0 -99.039289,19.392252,0 -99.038889,19.392068,0 -99.038505,19.391891,0 -99.038504,19.391891,0 -99.038503,19.39189,0 -99.038105,19.391707,0 -99.037714,19.391527,0 -99.037317,19.391344,0 -99.03713,19.391258,0 -99.036944,19.391173,0 -99.0365,19.390969,0 -99.036153,19.390809,0 -99.035748,19.390623,0 -99.035724,19.390611,0 -99.03532,19.390426,0 -99.034911,19.390238,0 -99.034627,19.390107,0 -99.03459,19.39009,0 -99.033853,19.38975,0 -99.033631,19.389649,0 -99.033454,19.389567,0 -99.033063,19.389387,0 -99.032884,19.389305,0 -99.03267,19.389206,0 -99.032279,19.389027,0 -99.031893,19.388849,0 -99.031489,19.388663,0 -99.03142,19.388631,0 -99.031041,19.388457,0 -99.030807,19.388349,0 -99.030667,19.388286,0 -99.030284,19.388114,0 -99.029954,19.387965,0 -99.029869,19.387927,0 -99.029486,19.387754,0 -99.029078,19.387571,0 -99.029074,19.387569,0 -99.029069,19.387567,0 -99.02869,19.387396,0 -99.028297,19.387219,0 -99.027928,19.387053,0 -99.027667,19.386935,0 -99.02748,19.386851,0 -99.027043,19.386655,0 -99.026667,19.386485,0 -99.026303,19.386321,0 -99.026244,19.386295,0 -99.025885,19.386133,0 -99.025498,19.385959,0 -99.025228,19.385837,0 -99.024959,19.385716,0 -99.024887,19.385684,0 -99.024805,19.385647,0 -99.024407,19.385468,0 -99.024018,19.385292,0 -99.023634,19.385119,0 -99.023502,19.38506,0 -99.023175,19.384913,0 -99.022763,19.384728,0 -99.022714,19.384705,0 -99.022365,19.384548,0 -99.022352,19.384542,0 -99.021958,19.384365,0 -99.021928,19.384351,0 -99.021552,19.384182,0 -99.021167,19.384009,0 -99.021112,19.383984,0 -99.020754,19.383823,0 -99.020348,19.38364,0 -99.020338,19.383635,0 -99.020064,19.3835,0 -99.019949,19.383443,0 -99.019572,19.383256,0 -99.019552,19.383246,0 -99.019146,19.383035,0 -99.018777,19.382842,0 -99.018718,19.382812,0 -99.018329,19.382609,0 -99.017986,19.38243,0 -99.017949,19.382411,0 -99.017529,19.382192,0 -99.017204,19.382023,0 -99.017166,19.382004,0 -99.017015,19.381925,0 -99.016919,19.381874,0 -99.016522,19.381666,0 -99.01642,19.381613,0 -99.016036,19.381413,0 -99.015792,19.381285,0 -99.015606,19.381188,0 -99.015132,19.380941,0 -99.015122,19.380936,0 -99.014661,19.380693,0 -99.01462,19.380672,0 -99.014191,19.380446,0 -99.014074,19.380384,0 -99.013738,19.380207,0 -99.01331,19.379982,0 -99.013284,19.379968,0 -99.012809,19.379718,0 -99.012518,19.379564,0 -99.012363,19.379483,0 -99.01189,19.379234,0 -99.011767,19.379169,0 -99.011473,19.379014,0 -99.010983,19.378756,0 -99.010969,19.378749,0 -99.010533,19.378519,0 -99.010165,19.378325,0 -99.009853,19.378139,0 -99.009621,19.378,0 -99.009575,19.377973,0 -99.009455,19.377901,0 -99.009447,19.377896,0 -99.009324,19.377823,0 -99.009275,19.377794,0 -99.009227,19.377765,0 -99.009222,19.377762,0 -99.009133,19.377709,0 -99.008975,19.377615,0 -99.008771,19.377493,0 -99.008658,19.377426,0 -99.008559,19.377368,0 -99.008442,19.377298,0 -99.008017,19.377044,0 -99.007743,19.376881,0 -99.007683,19.376846,0 -99.007311,19.376624,0 -99.006917,19.376389,0 -99.006518,19.376152,0 -99.00616,19.375938,0 -99.005786,19.375715,0 -99.005691,19.375659,0 -99.005409,19.375491,0 -99.005041,19.375272,0 -99.004792,19.375123,0 -99.004623,19.375023,0 -99.004234,19.374791,0 -99.004223,19.374785,0 -99.003791,19.374535,0 -99.003328,19.374269,0 -99.002947,19.374048,0 -99.002915,19.37403,0 -99.002648,19.373876,0 -99.002238,19.373639,0 -99.001828,19.373403,0 -99.001414,19.373164,0 -99.001015,19.372933,0 -99.000614,19.372702,0 -99.000197,19.372461,0 -99.000157,19.372438,0 -99.000081,19.372394,0 -98.999798,19.372227,0 -98.99945,19.372023,0 -98.999396,19.371991,0 -98.999012,19.371765,0 -98.998624,19.371536,0 -98.998346,19.371372,0 -98.998212,19.371293,0 -98.998052,19.371199,0 -98.997884,19.3711,0 -98.997626,19.370948,0 -98.997493,19.37087,0 -98.997228,19.370714,0 -98.997169,19.370679,0 -98.99681,19.370467,0 -98.996807,19.370466,0 -98.996803,19.370464,0 -98.996471,19.370268,0 -98.996377,19.370213,0 -98.996161,19.370085,0 -98.996049,19.370019,0 -98.995825,19.369887,0 -98.995606,19.369758,0 -98.995604,19.369757,0 -98.995603,19.369756,0 -98.995331,19.369596,0 -98.995132,19.36948,0 -98.994883,19.369333,0 -98.994717,19.369235,0 -98.9946,19.369166,0 -98.994284,19.36898,0 -98.99428,19.368978,0 -98.994277,19.368976,0 -98.993954,19.368785,0 -98.993873,19.368737,0 -98.993612,19.368584,0 -98.993441,19.368483,0 -98.993247,19.368369,0 -98.993049,19.368252,0 -98.992945,19.368191,0 -98.992618,19.367998,0 -98.992613,19.367995,0 -98.992608,19.367992,0 -98.992273,19.367796,0 -98.992194,19.367749,0 -98.991939,19.367599,0 -98.991894,19.367554,0 -98.991365,19.367417,0 -98.991259,19.367358,0 -98.990846,19.367124,0 -98.990422,19.366884,0 -98.98999,19.366641,0 -98.989577,19.366408,0 -98.989226,19.36621,0 -98.988947,19.367174,0 -98.98879,19.367713,0 -98.98866,19.368119,0 -98.988533,19.368593,0 -98.9884,19.369086,0 -98.988334,19.369079,0 -98.987998,19.36904,0 -98.987682,19.369004,0 -98.9873,19.36896,0 -98.987228,19.368951,0 -98.986766,19.368898,0 -98.98644,19.368861,0 -98.986294,19.368844,0 -98.985964,19.368806,0 -98.985645,19.368733,0 -98.985515,19.368763,0 -98.985419,19.368785,0 -98.985136,19.36885,0 -98.984911,19.368901,0 -98.984357,19.369024,0 -98.984226,19.369053,0 -98.984082,19.369085,0 -98.984031,19.369096,0 -98.983726,19.369171,0 -98.983671,19.369184,0 -98.98335,19.369263,0 -98.98316,19.369309,0 -98.982965,19.369355,0 -98.982632,19.369428,0 -98.982583,19.369439,0 -98.982216,19.369519,0 -98.982143,19.369535,0 -98.982109,19.369543,0 -98.981619,19.369655,0 -98.981101,19.369782,0 -98.980951,19.369819,0 -98.980609,19.369904,0 -98.980441,19.369945,0 -98.979978,19.370048,0 -98.979567,19.37014,0 -98.979396,19.370178,0 -98.97908,19.370254,0 -98.978615,19.370365,0 -98.978565,19.370377,0 -98.978428,19.370409,0 -98.978038,19.370492,0 -98.977939,19.370513,0 -98.977802,19.370542,0 -98.977538,19.370608,0 -98.977341,19.370657,0 -98.977026,19.370735,0 -98.976103,19.370965,0 -98.975974,19.370996,0 -98.97585,19.371026,0 -98.975456,19.371111,0 -98.974988,19.371223,0 -98.974933,19.371222,0 -98.974653,19.371303,0 -98.974431,19.37135,0 -98.974205,19.371395,0 -98.973703,19.371524,0 -98.973664,19.371527,0 -98.973451,19.371576,0 -98.973276,19.371619,0 -98.972901,19.371718,0 -98.972682,19.371761,0 -98.972615,19.371777,0 -98.972334,19.371828,0 -98.972069,19.371891,0 -98.971664,19.371987,0 -98.971485,19.372025,0 -98.971437,19.372035,0 -98.971358,19.372051,0 -98.971316,19.37206,0 -98.970892,19.372148,0 -98.97067,19.372205,0 -98.970386,19.372258,0 -98.970213,19.372311,0 -98.970001,19.37235,0 -98.96993,19.372367,0 -98.969858,19.372384,0 -98.969427,19.372487,0 -98.968888,19.37262,0 -98.968749,19.372653,0 -98.96829,19.372765,0 -98.968198,19.372787,0 -98.968137,19.372802,0 -98.967987,19.372837,0 -98.967801,19.372881,0 -98.967282,19.373003,0 -98.967042,19.373058,0 -98.966983,19.373073,0 -98.966429,19.373191,0 -98.966317,19.373208,0 -98.966281,19.373214,0 -98.966164,19.373235,0 -98.966035,19.373246,0 -98.965874,19.37328,0 -98.965768,19.373303,0 -98.965701,19.373315,0 -98.965548,19.373343,0 -98.965144,19.373444,0 -98.964568,19.373587,0 -98.964152,19.373688,0 -98.964119,19.373696,0 -98.963808,19.373722,0 -98.963636,19.374018,0 -98.963048,19.375028,0 -98.962548,19.375885,0 -98.96244,19.37607,0 -98.962131,19.376601,0 -98.961787,19.377178,0 -98.961274,19.378042,0 -98.961063,19.378396,0 -98.959531,19.380968,0 -98.959342,19.381298,0 -98.959271,19.38142,0 -98.959266,19.381429,0 -98.959065,19.381776,0 -98.958855,19.382137,0 -98.958744,19.382328,0 -98.958428,19.382873,0 -98.958168,19.383358,0 -98.958085,19.383514,0 -98.958064,19.383553,0 -98.958099,19.383725,0 -98.957938,19.384047,0 -98.957665,19.384594,0 -98.957196,19.384266,0 -98.956957,19.384099,0 -98.956614,19.383845,0 -98.956388,19.383701,0 -98.956173,19.384178,0 -98.956062,19.384425,0 -98.956001,19.384563,0 -98.955915,19.384758,0 -98.955791,19.384707,0 -98.955448,19.384564,0 -98.955371,19.384787,0 -98.955239,19.385165,0 -98.955025,19.385739,0 -98.954934,19.385981,0 -98.954885,19.386027,0 -98.95462,19.386605,0 -98.954552,19.386609,0 -98.954547,19.386639,0 -98.954505,19.386898,0 -98.954478,19.387068,0 -98.954438,19.387321,0 -98.954403,19.387562,0 -98.95437,19.387793,0 -98.954916,19.387869,0 -98.95506,19.387897,0 -98.955355,19.387931,0 -98.955317,19.388112,0 -98.955243,19.388446,0 -98.955135,19.388946,0 -98.95505,19.38934,0 -98.954967,19.389722,0 -98.9549,19.390032,0 -98.954869,19.390176,0 -98.954716,19.390884,0 -98.954751,19.390986,0 -98.954736,19.391047,0 -98.954597,19.391614,0 -98.954568,19.391733,0 -98.954476,19.392108,0 -98.954463,19.392162,0 -98.954536,19.392416,0 -98.95512,19.394449,0 -98.952337,19.392851,0 -98.95229,19.392827,0 -98.95236,19.392729,0 -98.951977,19.392521,0 -98.951912,19.392486,0 -98.951805,19.392428,0 -98.948119,19.390427,0 -98.948036,19.390374,0 -98.947886,19.390309,0 -98.946633,19.389763,0 -98.94587,19.389451,0 -98.945558,19.389324,0 -98.945208,19.389181,0 -98.945143,19.389155,0 -98.945042,19.389111,0 -98.944806,19.388971,0 -98.944711,19.388914,0 -98.944448,19.388825,0 -98.944065,19.388694,0 -98.943667,19.38856,0 -98.943377,19.388426,0 -98.942721,19.388125,0 -98.942287,19.387917,0 -98.941969,19.387777,0 -98.941533,19.387562,0 -98.941071,19.387361,0 -98.940737,19.387222,0 -98.940631,19.387178,0 -98.940358,19.387065,0 -98.94025,19.38702,0 -98.940036,19.386927,0 -98.939802,19.386826,0 -98.939702,19.386763,0 -98.939296,19.386507,0 -98.938924,19.386483,0 -98.937894,19.386009,0 -98.937857,19.386073,0 -98.93747,19.385892,0 -98.937078,19.385747,0 -98.936538,19.385468,0 -98.935897,19.385185,0 -98.935103,19.384835,0 -98.934648,19.384658,0 -98.932703,19.383899,0 -98.931801,19.383548,0 -98.9309,19.383196,0 -98.927232,19.381767,0 -98.926309,19.381406,0 -98.925725,19.381168,0 -98.925393,19.38104,0 -98.924957,19.380866,0 -98.924546,19.380693,0 -98.924126,19.380526,0 -98.923869,19.380425,0 -98.92338,19.380213,0 -98.922837,19.37997,0 -98.922668,19.379888,0 -98.922828,19.379636,0 -98.922609,19.37954,0 -98.922351,19.379427,0 -98.922249,19.379382,0 -98.922145,19.379334,0 -98.921691,19.379126,0 -98.921611,19.37909,0 -98.921467,19.379267,0 -98.919211,19.378435,0 -98.918232,19.378127,0 -98.917264,19.377754,0 -98.917086,19.377686,0 -98.916973,19.377719,0 -98.916077,19.377507,0 -98.915784,19.377437,0 -98.914917,19.377231,0 -98.914519,19.377137,0 -98.914167,19.377054,0 -98.913866,19.376982,0 -98.913694,19.376942,0 -98.91333,19.376855,0 -98.912906,19.376755,0 -98.912557,19.376664,0 -98.910304,19.376081,0 -98.910243,19.376065,0 -98.908285,19.375557,0 -98.907228,19.375283,0 -98.907022,19.374993,0 -98.906547,19.374593,0 -98.906459,19.374493,0 -98.905421,19.373479,0 -98.904583,19.373481,0 -98.904409,19.373482,0 -98.904161,19.373483,0 -98.903512,19.373485,0 -98.902819,19.373487,0 -98.902346,19.373488,0 -98.901859,19.37349,0 -98.901724,19.37349,0 -98.901508,19.373491,0 -98.899191,19.373499,0 -98.899247,19.373372,0 -98.89805,19.373372,0 -98.899236,19.36859,0 -98.900039,19.366132,0 -98.900042,19.362855,0 -98.899426,19.360455,0 -98.899738,19.357179,0 -98.898447,19.357934,0 -98.897519,19.358717,0 -98.897147,19.359242,0 -98.89651,19.359976,0 -98.895849,19.36062,0 -98.895279,19.361486,0 -98.894053,19.362649,0 -98.892756,19.363955,0 -98.892702,19.365611,0 -98.892754,19.366514,0 -98.892962,19.367725,0 -98.891639,19.36885,0 -98.891159,19.369004,0 -98.889879,19.369275,0 -98.88822,19.370134,0 -98.887263,19.371407,0 -98.887119,19.371878,0 -98.887139,19.372649,0 -98.886682,19.372985,0 -98.885458,19.373064,0 -98.885748,19.373337,0 -98.885787,19.373784,0 -98.886052,19.37503,0 -98.886317,19.376276,0 -98.886263,19.377271,0 -98.886209,19.378265,0 -98.886155,19.379259,0 -98.886101,19.380254,0 -98.885515,19.380665,0 -98.88543,19.380703,0 -98.885363,19.380705,0 -98.885275,19.380674,0 -98.884695,19.380325,0 -98.884545,19.380232,0 -98.884267,19.380304,0 -98.883594,19.380342,0 -98.883227,19.380363,0 -98.883194,19.380734,0 -98.881713,19.381055,0 -98.880423,19.381651,0 -98.879593,19.382104,0 -98.878762,19.382557,0 -98.877932,19.383009,0 -98.87737,19.383046,0 -98.877076,19.382922,0 -98.87674,19.38267,0 -98.876036,19.382263,0 -98.875632,19.383141,0 -98.875553,19.38326,0 -98.874884,19.383842,0 -98.874857,19.384859,0 -98.874831,19.385876,0 -98.874804,19.386892,0 -98.874777,19.387909,0 -98.87475,19.388926,0 -98.874724,19.389943,0 -98.874697,19.390959,0 -98.873748,19.390823,0 -98.872935,19.390755,0 -98.872444,19.390669,0 -98.871744,19.390531,0 -98.871402,19.390467,0 -98.871149,19.390405,0 -98.870811,19.39032,0 -98.870446,19.390215,0 -98.870166,19.39012,0 -98.869109,19.389899,0 -98.868051,19.389678,0 -98.866994,19.389457,0 -98.865937,19.389236,0 -98.86488,19.389014,0 -98.863823,19.388793,0 -98.862851,19.38859,0 -98.86188,19.388387,0 -98.860909,19.388184,0 -98.859938,19.387981,0 -98.858967,19.387778,0 -98.857996,19.387575,0 -98.857025,19.387372,0 -98.856053,19.387169,0 -98.855082,19.386966,0 -98.854111,19.386763,0 -98.85314,19.38656,0 -98.852909,19.387407,0 -98.852546,19.388734,0 -98.852091,19.390397,0 -98.851576,19.392283,0 -98.851303,19.393283,0 -98.85103,19.394283,0 -98.849898,19.394697,0 -98.848766,19.395112,0 -98.847633,19.395527,0 -98.846552,19.396204,0 -98.845417,19.396455,0 -98.844282,19.396706,0 -98.842912,19.397652,0 -98.841609,19.39797,0 -98.84049,19.398463,0 -98.839372,19.398956,0 -98.838253,19.399449,0 -98.837131,19.400012,0 -98.836009,19.400574,0 -98.835024,19.401068,0 -98.834038,19.401562,0 -98.832997,19.401735,0 -98.831956,19.401907,0 -98.830915,19.402079,0 -98.829873,19.402251,0 -98.828832,19.402423,0 -98.827791,19.402595,0 -98.826749,19.402768,0 -98.825797,19.402849,0 -98.824844,19.402931,0 -98.823891,19.403013,0 -98.822939,19.403094,0 -98.821986,19.403176,0 -98.821033,19.403258,0 -98.82008,19.403339,0 -98.819128,19.403421,0 -98.818175,19.403503,0 -98.817222,19.403585,0 -98.81627,19.403666,0 -98.815317,19.403748,0 -98.814364,19.403829,0 -98.813412,19.403911,0 -98.812459,19.403993,0 -98.811506,19.404074,0 -98.811406,19.402804,0 -98.811306,19.401534,0 -98.810938,19.400051,0 -98.810236,19.399868,0 -98.808495,19.399656,0 -98.806622,19.399829,0 -98.80517,19.399606,0 -98.803735,19.399522,0 -98.803175,19.399799,0 -98.801951,19.399119,0 -98.801223,19.398966,0 -98.80096,19.399702,0 -98.800722,19.400369,0 -98.800167,19.401991,0 -98.799612,19.403614,0 -98.799382,19.404502,0 -98.799212,19.405029,0 -98.799119,19.405397,0 -98.798974,19.405428,0 -98.798753,19.405522,0 -98.798576,19.40564,0 -98.79846,19.405709,0 -98.798293,19.405847,0 -98.798148,19.405919,0 -98.798014,19.406034,0 -98.797836,19.406127,0 -98.797485,19.406314,0 -98.79713,19.406526,0 -98.796962,19.406664,0 -98.796717,19.406828,0 -98.796468,19.407036,0 -98.796287,19.407215,0 -98.796013,19.407408,0 -98.795724,19.407525,0 -98.795497,19.407572,0 -98.795165,19.407669,0 -98.794823,19.407764,0 -98.794707,19.407811,0 -98.794109,19.407955,0 -98.793834,19.408027,0 -98.793637,19.408052,0 -98.793332,19.408099,0 -98.793009,19.408125,0 -98.792714,19.40813,0 -98.792403,19.408064,0 -98.7922,19.408018,0 -98.792045,19.407998,0 -98.791792,19.407909,0 -98.79157,19.407864,0 -98.791381,19.407821,0 -98.791202,19.407823,0 -98.790994,19.407825,0 -98.79082,19.407895,0 -98.790623,19.407989,0 -98.790393,19.408129,0 -98.790292,19.408176,0 -98.790109,19.408269,0 -98.789884,19.408456,0 -98.789672,19.408549,0 -98.789533,19.408596,0 -98.789296,19.408645,0 -98.789069,19.40867,0 -98.788784,19.408649,0 -98.788435,19.408653,0 -98.788179,19.408655,0 -98.787841,19.408682,0 -98.787537,19.408709,0 -98.787228,19.408781,0 -98.786977,19.40885,0 -98.786664,19.408922,0 -98.78638,19.409017,0 -98.786124,19.409066,0 -98.785935,19.409091,0 -98.785703,19.40907,0 -98.785461,19.40905,0 -98.785316,19.409029,0 -98.785093,19.408984,0 -98.784709,19.40885,0 -98.784375,19.408739,0 -98.784108,19.40865,0 -98.783831,19.408562,0 -98.783415,19.408496,0 -98.783027,19.40841,0 -98.782663,19.408321,0 -98.782426,19.408253,0 -98.782139,19.408187,0 -98.781781,19.408146,0 -98.781481,19.408125,0 -98.78107,19.408084,0 -98.78079,19.408109,0 -98.780534,19.408181,0 -98.780326,19.408205,0 -98.780071,19.408277,0 -98.779859,19.408349,0 -98.779695,19.408397,0 -98.779551,19.408444,0 -98.779251,19.408468,0 -98.778859,19.408472,0 -98.778579,19.408477,0 -98.778308,19.408433,0 -98.777993,19.408367,0 -98.777735,19.408277,0 -98.777492,19.408121,0 -98.777288,19.408007,0 -98.777141,19.407894,0 -98.776927,19.407781,0 -98.776654,19.407555,0 -98.776343,19.407388,0 -98.775662,19.406664,0 -98.774981,19.40594,0 -98.774301,19.405216,0 -98.77362,19.404493,0 -98.772939,19.403769,0 -98.772258,19.403045,0 -98.771577,19.402321,0 -98.77074,19.401741,0 -98.770372,19.401673,0 -98.770106,19.40158,0 -98.769695,19.401489,0 -98.769391,19.401443,0 -98.769086,19.40135,0 -98.768796,19.401259,0 -98.768317,19.401053,0 -98.767949,19.400938,0 -98.76749,19.400801,0 -98.767273,19.400779,0 -98.76691,19.400663,0 -98.766639,19.400572,0 -98.766315,19.400502,0 -98.765904,19.400479,0 -98.765686,19.400481,0 -98.765435,19.400433,0 -98.76499,19.400249,0 -98.764714,19.400136,0 -98.764211,19.399907,0 -98.763747,19.399769,0 -98.763447,19.399676,0 -98.763147,19.399562,0 -98.762635,19.399286,0 -98.762064,19.399012,0 -98.761682,19.398828,0 -98.761257,19.3986,0 -98.761025,19.398484,0 -98.760435,19.398162,0 -98.760139,19.398024,0 -98.759781,19.397863,0 -98.759313,19.397727,0 -98.758844,19.397611,0 -98.758331,19.397543,0 -98.75761,19.397359,0 -98.757059,19.39729,0 -98.756788,19.397267,0 -98.75657,19.397199,0 -98.756276,19.396993,0 -98.755928,19.396787,0 -98.755528,19.396615,0 -98.755072,19.396373,0 -98.75453,19.396166,0 -98.754051,19.395938,0 -98.753703,19.395822,0 -98.753089,19.395615,0 -98.752673,19.395432,0 -98.752112,19.395225,0 -98.751691,19.395112,0 -98.751271,19.395066,0 -98.750986,19.394996,0 -98.750748,19.39495,0 -98.750516,19.394882,0 -98.750279,19.394837,0 -98.750168,19.394859,0 -98.749965,19.394929,0 -98.749844,19.394996,0 -98.74969,19.395111,0 -98.74953,19.395226,0 -98.749336,19.395364,0 -98.749071,19.395456,0 -98.748766,19.395524,0 -98.748529,19.395548,0 -98.74835,19.395548,0 -98.748224,19.395525,0 -98.748166,19.39557,0 -98.748118,19.395801,0 -98.748132,19.396074,0 -98.747968,19.397131,0 -98.747842,19.397843,0 -98.747775,19.398622,0 -98.747605,19.399333,0 -98.747436,19.399907,0 -98.747305,19.400366,0 -98.747209,19.400917,0 -98.74715,19.401305,0 -98.74703,19.401879,0 -98.746986,19.402177,0 -98.74687,19.403004,0 -98.746638,19.402821,0 -98.746193,19.402614,0 -98.745632,19.402315,0 -98.74525,19.402154,0 -98.744646,19.401858,0 -98.744094,19.401604,0 -98.743596,19.401397,0 -98.742784,19.401191,0 -98.741657,19.400893,0 -98.74113,19.400755,0 -98.74103,19.400747,0 -98.740525,19.400708,0 -98.739617,19.400594,0 -98.739089,19.40048,0 -98.738562,19.400457,0 -98.738079,19.400411,0 -98.737392,19.400365,0 -98.736768,19.400296,0 -98.736125,19.400228,0 -98.735453,19.400204,0 -98.734858,19.400147,0 -98.734263,19.400089,0 -98.733843,19.400055,0 -98.733422,19.40002,0 -98.733037,19.400009,0 -98.732653,19.399997,0 -98.732184,19.399973,0 -98.731777,19.40002,0 -98.731275,19.400042,0 -98.730516,19.400043,0 -98.730327,19.400043,0 -98.729838,19.400112,0 -98.729214,19.400181,0 -98.728248,19.40025,0 -98.727454,19.400271,0 -98.726642,19.400295,0 -98.725627,19.400296,0 -98.725173,19.400622,0 -98.725036,19.40072,0 -98.724446,19.401143,0 -98.723624,19.401843,0 -98.722802,19.402542,0 -98.721963,19.403219,0 -98.721387,19.403684,0 -98.721123,19.403897,0 -98.720284,19.40455,0 -98.719445,19.405203,0 -98.718785,19.405834,0 -98.718125,19.406466,0 -98.717606,19.406846,0 -98.717157,19.407176,0 -98.716638,19.407612,0 -98.71634,19.407862,0 -98.716118,19.408049,0 -98.715704,19.40845,0 -98.715291,19.408852,0 -98.714671,19.40947,0 -98.714116,19.410154,0 -98.713812,19.410528,0 -98.712953,19.411586,0 -98.71268,19.411557,0 -98.711533,19.411434,0 -98.710696,19.411345,0 -98.710019,19.411272,0 -98.709608,19.411228,0 -98.708523,19.411112,0 -98.707387,19.410991,0 -98.706263,19.410871,0 -98.705417,19.410791,0 -98.704572,19.410712,0 -98.703737,19.410472,0 -98.702903,19.410233,0 -98.701877,19.409887,0 -98.700851,19.409542,0 -98.69974,19.409058,0 -98.698628,19.408574,0 -98.698103,19.408396,0 -98.697578,19.408218,0 -98.697161,19.407983,0 -98.696743,19.407748,0 -98.695873,19.407462,0 -98.695004,19.407176,0 -98.693868,19.406899,0 -98.692732,19.406621,0 -98.691438,19.406215,0 -98.690144,19.405808,0 -98.689142,19.405557,0 -98.688494,19.405395,0 -98.687687,19.405194,0 -98.686381,19.404867,0 -98.68523,19.404579,0 -98.683809,19.404533,0 -98.68276,19.404499,0 -98.681808,19.404468,0 -98.68059,19.404428,0 -98.6796,19.404396,0 -98.678077,19.404346,0 -98.677301,19.404321,0 -98.676313,19.404288,0 -98.675601,19.404265,0 -98.674819,19.404239,0 -98.67397,19.404212,0 -98.671688,19.403564,0 -98.669405,19.402916,0 -98.668205,19.402247,0 -98.667004,19.401578,0 -98.666045,19.400935,0 -98.665086,19.400291,0 -98.663278,19.39927,0 -98.661471,19.398249,0 -98.660423,19.397755,0 -98.659725,19.397494,0 -98.658727,19.39732,0 -98.657137,19.397078,0 -98.662848,19.402998,0 -98.662699,19.403232,0 -98.662574,19.403475,0 -98.662331,19.40364,0 -98.662188,19.40375,0 -98.66129,19.403825,0 -98.660805,19.404079,0 -98.660379,19.404391,0 -98.660032,19.404724,0 -98.659925,19.405024,0 -98.659893,19.405534,0 -98.659907,19.406556,0 -98.66003,19.407239,0 -98.660034,19.407345,0 -98.66004,19.407485,0 -98.659818,19.407817,0 -98.659565,19.407981,0 -98.65917,19.408107,0 -98.65881,19.408268,0 -98.658721,19.408657,0 -98.658648,19.409044,0 -98.658577,19.409372,0 -98.658797,19.409406,0 -98.659108,19.409593,0 -98.659009,19.40977,0 -98.659,19.410129,0 -98.659337,19.410525,0 -98.659652,19.410562,0 -98.66006,19.410631,0 -98.66018,19.410873,0 -98.660171,19.411232,0 -98.660224,19.411652,0 -98.660311,19.411953,0 -98.660564,19.411959,0 -98.660724,19.412091,0 -98.660856,19.412135,0 -98.661028,19.41237,0 -98.661046,19.412539,0 -98.661154,19.412646,0 -98.661396,19.412715,0 -98.661693,19.412818,0 -98.661763,19.412911,0 -98.661613,19.413092,0 -98.661393,19.413179,0 -98.661151,19.413173,0 -98.660883,19.413259,0 -98.660828,19.413511,0 -98.660845,19.413787,0 -98.660859,19.414224,0 -98.660434,19.414707,0 -98.658383,19.417776,0 -98.65764,19.419104,0 -98.65678,19.420653,0 -98.656348,19.422093,0 -98.656403,19.423119,0 -98.656374,19.423821,0 -98.656372,19.424887,0 -98.656644,19.425979,0 -98.657026,19.426812,0 -98.65742,19.427605,0 -98.658023,19.428754,0 -98.658963,19.429776,0 -98.659768,19.430447,0 -98.660178,19.432094,0 -98.658456,19.432297,0 -98.656625,19.432473,0 -98.655981,19.432546,0 -98.6549,19.432322,0 -98.652965,19.432329,0 -98.652221,19.432342,0 -98.65073,19.432099,0 -98.649363,19.431699,0 -98.648757,19.431593,0 -98.64924,19.432476,0 -98.649517,19.43302,0 -98.649883,19.433518,0 -98.650186,19.434002,0 -98.650573,19.434656,0 -98.650203,19.434639,0 -98.649726,19.434344,0 -98.649482,19.434193,0 -98.648832,19.433843,0 -98.648333,19.433493,0 -98.647755,19.433018,0 -98.647098,19.432468,0 -98.646627,19.431419,0 -98.646075,19.431019,0 -98.645365,19.430568,0 -98.643682,19.42897,0 -98.642692,19.427809,0 -98.641726,19.427296,0 -98.641229,19.427058,0 -98.640976,19.427682,0 -98.640532,19.427387,0 -98.640114,19.427109,0 -98.639976,19.427465,0 -98.640117,19.428023,0 -98.639925,19.42841,0 -98.639674,19.428849,0 -98.63945,19.429246,0 -98.639354,19.429632,0 -98.639114,19.43,0 -98.638941,19.430107,0 -98.638773,19.429992,0 -98.638602,19.429715,0 -98.638325,19.429003,0 -98.638157,19.428027,0 -98.637976,19.427521,0 -98.637719,19.426443,0 -98.637386,19.425988,0 -98.637072,19.425967,0 -98.63678,19.426696,0 -98.636471,19.427287,0 -98.636033,19.427865,0 -98.635724,19.428231,0 -98.635155,19.428754,0 -98.634697,19.429548,0 -98.634676,19.429914,0 -98.634893,19.430628,0 -98.634913,19.430982,0 -98.634822,19.431242,0 -98.638472,19.434667,0 -98.641285,19.437711,0 -98.642844,19.439399,0 -98.649261,19.445538,0 -98.656074,19.452568,0 -98.657096,19.453603,0 -98.659064,19.455638,0 -98.661435,19.45809,0 -98.65822,19.461183,0 -98.653227,19.465986,0 -98.654347,19.471062,0 -98.661022,19.478433,0 -98.661505,19.480497,0 -98.660405,19.485468,0 -98.660398,19.485502,0 -98.664087,19.489111,0 -98.66546,19.490452,0 -98.668052,19.493413,0 -98.672659,19.495792,0 -98.674863,19.498044,0 -98.675673,19.499461,0 -98.676456,19.502562,0 -98.677138,19.506876,0 -98.678171,19.512098,0 -98.681912,19.518011,0 -98.684432,19.519819,0 -98.685463,19.52054,0 -98.69018,19.523749,0 -98.690169,19.523859,0 -98.6917,19.52509,0 -98.691832,19.524949,0 -98.692735,19.525767,0 -98.693116,19.526335,0 -98.69353,19.52695,0 -98.694195,19.527254,0 -98.695423,19.527816,0 -98.695935,19.528127,0 -98.698147,19.529677,0 -98.698838,19.530282,0 -98.700021,19.531312,0 -98.701577,19.537085,0 -98.701867,19.538114,0 -98.702176,19.539222,0 -98.702342,19.540268,0 -98.702349,19.54289,0 -98.701448,19.545259,0 -98.701611,19.545814,0 -98.703076,19.546546,0 -98.704595,19.545895,0 -98.706119,19.547107,0 -98.708399,19.5476,0 -98.707717,19.549013,0 -98.705936,19.55175,0 -98.705463,19.552477,0 -98.706166,19.552706,0 -98.708132,19.554806,0 -98.706693,19.556444,0 -98.706563,19.557021,0 -98.706488,19.557355,0 -98.706463,19.557471,0 -98.706232,19.558498,0 -98.706196,19.558659,0 -98.706163,19.558807,0 -98.706044,19.559336,0 -98.703842,19.559092,0 -98.704464,19.561323,0 -98.704411,19.561345,0 -98.703059,19.561879,0 -98.702062,19.563748,0 -98.701354,19.563689,0 -98.700091,19.565441,0 -98.699507,19.567151,0 -98.700721,19.567163,0 -98.701214,19.565936,0 -98.701597,19.565152,0 -98.702009,19.565262,0 -98.701764,19.566062,0 -98.702194,19.56624,0 -98.701931,19.567362,0 -98.701382,19.567254,0 -98.701304,19.567367,0 -98.701336,19.567469,0 -98.700925,19.569043,0 -98.701146,19.570507,0 -98.701268,19.570944,0 -98.700851,19.571146,0 -98.700216,19.571202,0 -98.699243,19.571094,0 -98.698153,19.570987,0 -98.697426,19.570921,0 -98.695822,19.570755,0 -98.694807,19.570642,0 -98.694578,19.572177,0 -98.695637,19.57245,0 -98.695209,19.573086,0 -98.694208,19.574546,0 -98.693286,19.576046,0 -98.693267,19.576077,0 -98.692021,19.57591,0 -98.68911,19.576859,0 -98.690621,19.578894,0 -98.691154,19.579434,0 -98.691016,19.581276,0 -98.691107,19.581976,0 -98.691241,19.583007,0 -98.691734,19.58341,0 -98.693007,19.583664,0 -98.692868,19.584384,0 -98.692671,19.585198,0 -98.692432,19.585879,0 -98.690773,19.585866,0 -98.689113,19.585853,0 -98.687453,19.58584,0 -98.681512,19.58792,0 -98.681406,19.592581,0 -98.68171,19.593059,0 -98.681889,19.593558,0 -98.682042,19.594082,0 -98.68208,19.59426,0 -98.681582,19.595134,0 -98.681786,19.595576,0 -98.681782,19.595708,0 -98.681694,19.595793,0 -98.681533,19.595799,0 -98.681632,19.596133,0 -98.681573,19.596152,0 -98.681356,19.597649,0 -98.68138,19.598285,0 -98.678525,19.599791,0 -98.678184,19.599971,0 -98.675372,19.599551,0 -98.674617,19.599573,0 -98.673903,19.599326,0 -98.67322,19.598814,0 -98.67315,19.598787,0 -98.672953,19.598768,0 -98.672804,19.598685,0 -98.672832,19.598513,0 -98.672712,19.598412,0 -98.672554,19.598368,0 -98.672406,19.598368,0 -98.672316,19.598535,0 -98.672196,19.598651,0 -98.671997,19.598649,0 -98.671737,19.598686,0 -98.671529,19.598771,0 -98.671354,19.598749,0 -98.671114,19.598673,0 -98.670947,19.598603,0 -98.670302,19.598634,0 -98.670219,19.598626,0 -98.670259,19.598438,0 -98.670085,19.598483,0 -98.669794,19.598725,0 -98.669536,19.599238,0 -98.669434,19.599441,0 -98.669453,19.599851,0 -98.668552,19.601372,0 -98.667991,19.602122,0 -98.666621,19.602988,0 -98.666599,19.604417,0 -98.666434,19.604437,0 -98.666324,19.605007,0 -98.66623,19.605778,0 -98.665577,19.606154,0 -98.6655,19.606198,0 -98.664873,19.606909,0 -98.664763,19.607016,0 -98.66471,19.606972,0 -98.66427,19.607429,0 -98.662849,19.608945,0 -98.662691,19.609098,0 -98.661747,19.610113,0 -98.661932,19.611693,0 -98.663132,19.612992,0 -98.663815,19.613551,0 -98.663439,19.613783,0 -98.664138,19.614731,0 -98.663826,19.615053,0 -98.66441,19.615579,0 -98.664674,19.615855,0 -98.664984,19.616431,0 -98.665745,19.617113,0 -98.666379,19.617396,0 -98.666626,19.617508,0 -98.666844,19.617637,0 -98.66718,19.617963,0 -98.667922,19.618163,0 -98.668676,19.619175,0 -98.668982,19.620002,0 -98.669017,19.620643,0 -98.669125,19.621337,0 -98.669132,19.621488,0 -98.669623,19.621982,0 -98.669912,19.622387,0 -98.670132,19.623284,0 -98.670095,19.623415,0 -98.670549,19.624828,0 -98.670817,19.625009,0 -98.671391,19.62492,0 -98.671609,19.625164,0 -98.672396,19.625148,0 -98.671988,19.625662,0 -98.671816,19.625721,0 -98.672213,19.626316,0 -98.671974,19.626653,0 -98.672039,19.628021,0 -98.672108,19.628377,0 -98.672155,19.628584,0 -98.672716,19.630065,0 -98.672659,19.630227,0 -98.672616,19.631439,0 -98.671482,19.633127,0 -98.671529,19.633725,0 -98.671637,19.634567,0 -98.671716,19.635144,0 -98.671697,19.635649,0 -98.671817,19.636169,0 -98.672037,19.636729,0 -98.670452,19.638751,0 -98.669273,19.640488,0 -98.66903,19.641126,0 -98.66941,19.642188,0 -98.669458,19.642306,0 -98.66938,19.642662,0 -98.668874,19.64315,0 -98.668551,19.643359,0 -98.668341,19.643427,0 -98.668142,19.643681,0 -98.667631,19.644356,0 -98.667727,19.644636,0 -98.66945,19.647057,0 -98.669824,19.648546,0 -98.670015,19.649886,0 -98.669875,19.650094,0 -98.670414,19.651222,0 -98.670756,19.653283,0 -98.670731,19.653855,0 -98.670695,19.654552,0 -98.670335,19.65559,0 -98.670245,19.657338,0 -98.670055,19.658676,0 -98.668229,19.658504,0 -98.668472,19.658774,0 -98.668664,19.659102,0 -98.668636,19.659212,0 -98.667642,19.659994,0 -98.667141,19.660373,0 -98.666944,19.660571,0 -98.667399,19.660866,0 -98.667778,19.661336,0 -98.667093,19.661917,0 -98.666436,19.662268,0 -98.665791,19.661872,0 -98.666708,19.660903,0 -98.666209,19.660649,0 -98.666006,19.660373,0 -98.665496,19.659789,0 -98.665172,19.660353,0 -98.66553,19.66074,0 -98.665362,19.661608,0 -98.665119,19.661459,0 -98.664743,19.66073,0 -98.664681,19.660405,0 </coordinates> </LinearRing> </outerBoundaryIs> </Polygon> </Placemark> </Document> </kml>`; } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址