Skip to content

Instantly share code, notes, and snippets.

@JeanRoldanDev
Last active February 29, 2024 17:39
Show Gist options
  • Save JeanRoldanDev/e6e7aa1be3613ede8899d1419109a131 to your computer and use it in GitHub Desktop.
Save JeanRoldanDev/e6e7aa1be3613ede8899d1419109a131 to your computer and use it in GitHub Desktop.
Basic steps to understand the construction of a file kml in google maps with flutter, it goes without saying that much more can be done depending on the internal structure of the kml. this is just a start guide.
import 'package:flutter/material.dart';
import 'package:google_maps_flutter/google_maps_flutter.dart';
import 'package:flutter/services.dart' show rootBundle;
import 'package:xml/xml.dart';
/// used packages
/// xml: 4.5.1
/// latlong: 0.6.1
/// google_maps_flutter: 1.2.0
///
/// Documentation oficial:
/// https://developers.google.com/kml/documentation/altitudemode#clamptoseafloor
/// https://developers.google.com/kml/documentation/kmlreference?hl=en
class Kml {
///FILE 1 OR 2
Future<Map<PolylineId, Polyline>> loadKML(int numfile) async {
print("============================LOAD KML==============================");
final newPolylines = Map<PolylineId, Polyline>.from({});
final file = await getJson(numfile);
if (file == null) {
return newPolylines;
}
final data = await parseKML(file).catchError((error) {
print(error);
return newPolylines;
});
if (data != null) {
data.forEach((element) {
PolylineId polylineId = PolylineId(element.id);
final newPolyline = Polyline(
polylineId: polylineId,
points: element.coordinates,
jointType: JointType.round,
width: 3,
color: Colors.blue,
consumeTapEvents: true,
onTap: () {
print('click');
},
);
newPolylines[polylineId] = newPolyline;
});
return newPolylines;
} else {
return newPolylines;
}
}
Future<String> getJson(int file) {
switch (file) {
case 1:
return rootBundle.loadString('assets/kml/kml1.kml');
break;
case 2:
return rootBundle.loadString('assets/kml/kml2.kml');
break;
default:
return null;
}
}
Future<List<Placemarkml>> parseKML(String data) async {
var doc = XmlDocument.parse(data).rootElement;
if (doc.name.toString() != 'kml') {
throw ("ERROR: the file is not a KML compatible file");
}
List<Placemarkml> resp = [];
var elements = doc.findAllElements("Placemark");
int cont = 0;
elements.forEach((element) {
cont++;
String name = element.getElement('name').text;
String altitudeMode = element.getElement('LookAt').getElement('gx:altitudeMode').text.toUpperCase().trim();
bool valid = altitudeMode == 'RELATIVETOSEAFLOOR' ? true : false;
if (!valid) {
resp.add(Placemarkml(
id: "Placemark$cont",
name: name,
altitudeMode: altitudeMode,
coordinates: [],
valid: false,
));
} else {
List<LatLng> points = [];
final coordinates = element.findAllElements('coordinates').first.text.trim().split(' ');
coordinates.forEach((element) {
final dat = element.toString().split(",");
double lat = double.parse(dat[1].toString());
double lng = double.parse(dat[0].toString());
points.add(LatLng(lat, lng));
});
resp.add(Placemarkml(
id: "Placemark$cont",
name: name,
altitudeMode: altitudeMode,
coordinates: points,
));
}
});
return resp;
}
}
class Placemarkml {
String id;
String name;
String altitudeMode;
List<LatLng> coordinates;
bool valid;
Placemarkml({this.id, this.name, this.altitudeMode, this.coordinates, this.valid = true});
}
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom">
<Document>
<name>Ruta Río Aliste.kmz</name>
<Style id="sh_ylw-pushpin200">
<IconStyle>
<scale>1.3</scale>
<Icon>
<href>http://maps.google.com/mapfiles/kml/pushpin/ylw-pushpin.png</href>
</Icon>
<hotSpot x="20" y="2" xunits="pixels" yunits="pixels"/>
</IconStyle>
<LineStyle>
<color>ff00ffff</color>
<width>2</width>
</LineStyle>
</Style>
<Style id="sn_ylw-pushpin200">
<IconStyle>
<scale>1.1</scale>
<Icon>
<href>http://maps.google.com/mapfiles/kml/pushpin/ylw-pushpin.png</href>
</Icon>
<hotSpot x="20" y="2" xunits="pixels" yunits="pixels"/>
</IconStyle>
<LineStyle>
<color>ff00ffff</color>
<width>2</width>
</LineStyle>
</Style>
<StyleMap id="msn_ylw-pushpin010">
<Pair>
<key>normal</key>
<styleUrl>#sn_ylw-pushpin200</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#sh_ylw-pushpin200</styleUrl>
</Pair>
</StyleMap>
<Placemark>
<name>RUTA &quot;RIO ALISTE&quot;</name>
<LookAt>
<longitude>-6.015970795807339</longitude>
<latitude>41.6428301833025</latitude>
<altitude>0</altitude>
<heading>0.1018646617101411</heading>
<tilt>39.21196532994965</tilt>
<range>4969.962406681514</range>
<gx:altitudeMode>relativeToSeaFloor</gx:altitudeMode>
</LookAt>
<styleUrl>#msn_ylw-pushpin010</styleUrl>
<LineString>
<tessellate>1</tessellate>
<coordinates>
-6.380821055076378,41.90483723112418,0 -6.380818363259349,41.90447703835603,0 -6.380427108573609,41.90370610982801,0 -6.380292542411326,41.90349251920007,0 -6.380284195728811,41.9033466637196,0 -6.380314685983802,41.9032250332996,0 -6.380412528355795,41.90307150166758,0 -6.380459302896766,41.90295976528998,0 -6.380477791670188,41.90288554164397,0 -6.380456967961861,41.90275385618388,0 -6.380419314224013,41.90262829984393,0 -6.3804175399687,41.90251783569205,0 -6.38040511241898,41.90241241588305,0 -6.380419541961252,41.90234018346069,0 -6.379987828262243,41.90220211589509,0 -6.379416396193649,41.90199466011504,0 -6.378855647790298,41.90170518563609,0 -6.378825013284526,41.90166455653068,0 -6.378867799972719,41.90161574736209,0 -6.38005916462391,41.90075356391498,0 -6.380048533079795,41.90073797733528,0 -6.379980176283752,41.90073616518826,0 -6.379918671026134,41.9007068481638,0 -6.378085840278632,41.89910109167577,0 -6.377895176110418,41.89892753864137,0 -6.37786078134731,41.89884758154013,0 -6.377790325362764,41.89861397213022,0 -6.377558097929301,41.89759102436416,0 -6.377536998803945,41.89751077339472,0 -6.377491831143322,41.89744849253135,0 -6.377480826304083,41.89740021387019,0 -6.377520963457494,41.89730331318331,0 -6.377573158585194,41.8972158054191,0 -6.377682101635474,41.89697066556373,0 -6.377746600862953,41.89688357242892,0 -6.377778601536904,41.89678527394631,0 -6.377795157947237,41.89671903693805,0 -6.377801002341466,41.89628746808351,0 -6.377806570994165,41.89609070169864,0 -6.377912576781373,41.8955832624729,0 -6.377925823370418,41.89515881702304,0 -6.377942636330383,41.89496691655992,0 -6.377984699152099,41.89474747175599,0 -6.378021236853733,41.89453273172544,0 -6.378060948699514,41.89430201165813,0 -6.378077252886025,41.89403416214105,0 -6.378082634735781,41.89394657086327,0 -6.378094959496234,41.89373195778544,0 -6.37812478536341,41.89349429201064,0 -6.378185935054271,41.89320384849909,0 -6.378263776393554,41.89267604662968,0 -6.378295522511898,41.89235735851179,0 -6.37832653191958,41.89201526580636,0 -6.37843713468119,41.89150344645798,0 -6.378425456014426,41.89107641923882,0 -6.378430676723561,41.89099922865032,0 -6.37872745775663,41.89074569760025,0 -6.379029766227736,41.89051207158668,0 -6.379548679361029,41.88994058827051,0 -6.380041529455145,41.88942237045116,0 -6.380143818381034,41.88935893490535,0 -6.380307961974042,41.88934532956092,0 -6.38140230182457,41.88949532234616,0 -6.381509755092823,41.88952011773936,0 -6.381511326602616,41.88937378553921,0 -6.381562399112458,41.88878587100484,0 -6.381492459023876,41.88840553302798,0 -6.381416888580334,41.88809078837799,0 -6.381316491922786,41.88778659831118,0 -6.381277065561171,41.88756487726154,0 -6.381248882794281,41.88739232746763,0 -6.381166028736656,41.88715546877201,0 -6.381106948870096,41.88689146321752,0 -6.381025024046211,41.88668160794293,0 -6.380914021854184,41.88650766840041,0 -6.380762620750559,41.88632198866882,0 -6.380274006370863,41.88586182120421,0 -6.380164809642944,41.88578132155318,0 -6.380093429052445,41.88574935529331,0 -6.38003249880101,41.88568224550945,0 -6.380044445669765,41.88560529507772,0 -6.380092773160234,41.88554017876322,0 -6.380088497760211,41.88548257065069,0 -6.380097116386223,41.88540967968719,0 -6.380089914084018,41.8849629954417,0 -6.379990890664694,41.88472087902682,0 -6.379978285316959,41.88466278042924,0 -6.380078084334128,41.88451027271394,0 -6.380118490432246,41.88442014632388,0 -6.380120902842108,41.88436620541433,0 -6.380184950610287,41.884296470397,0 -6.380287880342214,41.88425005708566,0 -6.380407111175122,41.88425669566653,0 -6.380537344055601,41.88429876655371,0 -6.380664818140459,41.88435320086317,0 -6.380790047132205,41.8844033665541,0 -6.380983009619604,41.8844114126778,0 -6.381128953635007,41.8844022780438,0 -6.381277902031844,41.88437206506625,0 -6.381423396815844,41.8843218664281,0 -6.381706028572682,41.88417305539849,0 -6.381808682145874,41.88409906182714,0 -6.381868510389643,41.88401156449977,0 -6.381926537465399,41.88388130524909,0 -6.381976173493346,41.88374669414576,0 -6.381994909497763,41.88362133990505,0 -6.381993409128056,41.88349692917181,0 -6.381975386221378,41.88330161490856,0 -6.381877963256003,41.88304452949746,0 -6.381787278641586,41.88281848226015,0 -6.381752826050436,41.88252508957915,0 -6.381739758810126,41.88232082984003,0 -6.381728849001629,41.88208535277688,0 -6.381669113208926,41.88188816521641,0 -6.381575698439597,41.88163149157442,0 -6.381594387048807,41.88144921687739,0 -6.381606754131784,41.88100794980404,0 -6.381559684726171,41.88082983410245,0 -6.381544580779048,41.88054880214565,0 -6.381525519457806,41.88001205692021,0 -6.381549081486886,41.87992250537194,0 -6.381541103963882,41.87969326700453,0 -6.381462245463293,41.87906087970121,0 -6.381395104011535,41.87881875450536,0 -6.381372199712767,41.87859077130683,0 -6.381399606622678,41.87837725074988,0 -6.381379697484371,41.87772739003306,0 -6.381369753704721,41.87739327740066,0 -6.38126598607713,41.8765819412233,0 -6.381219948748591,41.87647588620129,0 -6.381221916040321,41.87614869994216,0 -6.381182296424452,41.87602242146996,0 -6.380883484969213,41.87561033853424,0 -6.380751157696184,41.87539929304831,0 -6.380596121746386,41.87521456862411,0 -6.380522878936689,41.87512010883133,0 -6.380493230656858,41.87500492170791,0 -6.380478993533777,41.8749630730214,0 -6.380447565110902,41.87490937889022,0 -6.380229766735938,41.87400403291206,0 -6.37998243878168,41.87341746837631,0 -6.379559442256584,41.8727967220193,0 -6.379477086169773,41.87261467568043,0 -6.379444965952848,41.8724118666951,0 -6.379250114487015,41.87202473326575,0 -6.379068526674408,41.87181762089458,0 -6.378881023940879,41.87161302298588,0 -6.378821192793752,41.87148229396561,0 -6.378737074259265,41.87136251287261,0 -6.378654217844815,41.87130611466117,0 -6.378536121683585,41.87122580844353,0 -6.378445694923006,41.87108784476595,0 -6.37841690823732,41.87093128794425,0 -6.378401445415227,41.87084115341763,0 -6.378325807372928,41.87048042289636,0 -6.378241223874902,41.87030082225052,0 -6.378096041073711,41.87007882547734,0 -6.377940390575181,41.86990550203563,0 -6.377783099460029,41.86978780170519,0 -6.377651697789054,41.86974433236878,0 -6.377543556046284,41.86970992450087,0 -6.377279115806378,41.86963991371746,0 -6.377178647421326,41.86958928098829,0 -6.377055632039395,41.86944808502634,0 -6.376878828399857,41.86924024186733,0 -6.376785040007954,41.86902006581192,0 -6.376696995365837,41.86889825829815,0 -6.376462387381658,41.86868368883296,0 -6.376326139090228,41.86856718764205,0 -6.376247183426621,41.86850638131597,0 -6.376093653793954,41.86850246826817,0 -6.375940994692744,41.86852888364851,0 -6.375834599489217,41.86855215123562,0 -6.375707396221698,41.86854476736202,0 -6.375003221950555,41.86809973429969,0 -6.374698123596772,41.86809242526822,0 -6.374456582042055,41.86810120464183,0 -6.374337779601,41.86813679243887,0 -6.374207804330304,41.8681940691927,0 -6.374115431893724,41.86824512712006,0 -6.373849492943403,41.86838986559418,0 -6.373779203537517,41.86840806303781,0 -6.373701013243538,41.86840558714184,0 -6.372879291501937,41.86828198010996,0 -6.372410367858722,41.86809756287002,0 -6.372130970269748,41.86800344385173,0 -6.371798786029192,41.86790320157679,0 -6.371574032810456,41.86782679913771,0 -6.371355365951496,41.86768514104453,0 -6.370719201013788,41.86720996365714,0 -6.370180566413955,41.86682893373501,0 -6.370011959278943,41.86661074608475,0 -6.369901241683109,41.86647298759795,0 -6.3698338596332,41.86620888100299,0 -6.369691852466934,41.86599019233392,0 -6.369466896929077,41.86583611740334,0 -6.36913309271065,41.86570964255124,0 -6.368504836665682,41.86552511873675,0 -6.368211096155127,41.86548948814873,0 -6.367474220653071,41.86544453183196,0 -6.367354548922576,41.86539507630278,0 -6.367225731074617,41.8653581813508,0 -6.367099839419936,41.86536891479285,0 -6.366953072359221,41.86535449258422,0 -6.366889295729544,41.86533250481452,0 -6.366253496265028,41.8650714870933,0 -6.365575785491677,41.86474203159598,0 -6.364929142286235,41.86454028556584,0 -6.363794696221287,41.86402593518437,0 -6.363303775204719,41.86355977340585,0 -6.363166697325452,41.86345911899095,0 -6.362911956629135,41.8633877789708,0 -6.36241982869686,41.86329870432814,0 -6.362007731742638,41.8632852587862,0 -6.361751773950576,41.86329348886243,0 -6.361567801737823,41.86327674974476,0 -6.361496211642192,41.8635979854902,0 -6.361369757179011,41.86384808069517,0 -6.361241163740533,41.86399617343301,0 -6.36080334102589,41.86406769935622,0 -6.360210765000102,41.86408263960247,0 -6.359527669677625,41.86401789047778,0 -6.359077207996978,41.86389493019328,0 -6.358852352994571,41.86382844484511,0 -6.358264161286801,41.86378578044193,0 -6.3576642826833,41.86363804284776,0 -6.357276338262302,41.86352530343354,0 -6.35701163004101,41.86342457955616,0 -6.356619533487525,41.86324080893497,0 -6.356365923189382,41.86302173011929,0 -6.356097998064167,41.8628517336827,0 -6.355540714419745,41.86261519149746,0 -6.355086472834319,41.86227398287505,0 -6.3548029123695,41.86194911174009,0 -6.354496259096446,41.86162898627904,0 -6.354519853887966,41.86151513135769,0 -6.354559017327398,41.86123913903285,0 -6.354566593572519,41.8609881242837,0 -6.354391847357172,41.86091199598558,0 -6.354371896899156,41.86085546073767,0 -6.354575022468531,41.86063029823515,0 -6.354602143363051,41.86055873430421,0 -6.354364353336381,41.8604038200263,0 -6.354174564578542,41.8602226615909,0 -6.353900543690911,41.86004673725665,0 -6.352988709714876,41.8598259440238,0 -6.352629590482125,41.85967494510089,0 -6.35242868009184,41.859605305651,0 -6.352181577591709,41.85947909175663,0 -6.351453819371562,41.85928769490567,0 -6.350890605008245,41.8591544306172,0 -6.350547620135272,41.85905017506867,0 -6.350320074031482,41.85894162412313,0 -6.349973442339163,41.85882958654214,0 -6.349203981762807,41.85847251996837,0 -6.347893882736775,41.8577581182412,0 -6.347312684191273,41.85729671315067,0 -6.347044917067359,41.85713957419958,0 -6.346908743708351,41.85707996304372,0 -6.346908462480529,41.85708311316584,0 -6.346785186129063,41.85706281246084,0 -6.346524864626288,41.85698393755446,0 -6.346276906273658,41.85687401885291,0 -6.34610614734615,41.85674614898284,0 -6.346006983879223,41.85663797944223,0 -6.345910665090607,41.85652174048734,0 -6.345844438462716,41.85631284480458,0 -6.345774104971355,41.85620400932197,0 -6.345706762450295,41.85615400734079,0 -6.345190379692282,41.85587328354382,0 -6.34444500146658,41.85562446925137,0 -6.344009346964137,41.85549063243199,0 -6.343715709083476,41.85541166047099,0 -6.343500238646653,41.85537775013118,0 -6.343338700129531,41.85537444635836,0 -6.343064169397962,41.8553602817065,0 -6.342916764837585,41.85535154356405,0 -6.342364716880358,41.85521404226122,0 -6.342155525106814,41.85511059388401,0 -6.341975470169694,41.85493802841322,0 -6.341813318764181,41.85468230495516,0 -6.341536902688812,41.85417794209185,0 -6.34130000718433,41.85368786886187,0 -6.341306020728262,41.85368748017344,0 -6.341072064999662,41.85332652171013,0 -6.340716824102744,41.85277079372897,0 -6.340595687751024,41.8526459087058,0 -6.340562942970457,41.85257787080427,0 -6.340385392367397,41.85226237634505,0 -6.340110566838702,41.85205068976758,0 -6.339641730909963,41.85183880316876,0 -6.339029203513999,41.85160046646337,0 -6.338825413883927,41.85154739030005,0 -6.338592865278385,41.85143594555498,0 -6.338231067737579,41.85127658576172,0 -6.337383698525421,41.85086013066956,0 -6.337063033813687,41.85076565447531,0 -6.336604363893223,41.85065366823534,0 -6.336221349328398,41.85057918219094,0 -6.336037751158541,41.85054441462492,0 -6.335969691683046,41.85056221176747,0 -6.33585976143563,41.85056204368559,0 -6.335701916578586,41.85053045431162,0 -6.33542548884799,41.85045652183412,0 -6.335220129960165,41.85028684337011,0 -6.335045778715363,41.85019174580543,0 -6.334869379814128,41.85010945478476,0 -6.334723992925239,41.85027972076466,0 -6.334623493278765,41.85043627287038,0 -6.33461333965869,41.85064448499157,0 -6.334605580572826,41.85079886571165,0 -6.3345852376245,41.85105121179749,0 -6.334535487562841,41.8510792917085,0 -6.334272049902744,41.85101627984537,0 -6.333822305336475,41.85089597550475,0 -6.332748571871696,41.85061916311596,0 -6.332396014866135,41.85040122837799,0 -6.331726281101848,41.84985332661517,0 -6.330945388150506,41.84909360949335,0 -6.330567826011143,41.84860696122166,0 -6.330008082455557,41.84806442014281,0 -6.329841791870336,41.84794273699853,0 -6.32945721640732,41.84757026318199,0 -6.329211797805529,41.8473135820965,0 -6.329009046191311,41.8470913050525,0 -6.327974901690548,41.84639784031079,0 -6.327746271981933,41.84623871162608,0 -6.327477504318388,41.84614035410252,0 -6.32720998040149,41.84605575833481,0 -6.327035955013659,41.84600241166636,0 -6.326804976107257,41.84591988024214,0 -6.32654288905089,41.84561874197168,0 -6.326374930555758,41.84548703920513,0 -6.326173684875038,41.84513893184644,0 -6.326034311162178,41.84486730849446,0 -6.32596948012385,41.84476433640127,0 -6.325882699236793,41.84468772127352,0 -6.325581122779767,41.84452783825632,0 -6.325202104811356,41.8444042348597,0 -6.324684890754203,41.84430490846326,0 -6.324250271355822,41.84418990272728,0 -6.323751335794686,41.84394077598848,0 -6.323528628772892,41.84369762944411,0 -6.323239191975433,41.84352945693816,0 -6.323011807712645,41.8433976540196,0 -6.322749413903193,41.84331432571323,0 -6.32217921963735,41.84323735888175,0 -6.32178681897138,41.84315997462053,0 -6.321369947806042,41.84305427946392,0 -6.320743690270812,41.84298423114199,0 -6.320146780312761,41.84293456385195,0 -6.319888521481401,41.84289535138849,0 -6.319668511381252,41.84284189235397,0 -6.319290019795059,41.84272591342318,0 -6.318865536993731,41.84249819822592,0 -6.318557059409354,41.84231384837808,0 -6.318240909769496,41.84215059447437,0 -6.317887392213498,41.84202318853272,0 -6.317620789905989,41.84197672927608,0 -6.317332820332531,41.84193511163159,0 -6.317149102445078,41.84190471315441,0 -6.316796281270501,41.84179123645432,0 -6.316468119275523,41.84164928049486,0 -6.316115512827174,41.84146974598486,0 -6.315840633632208,41.84126748692847,0 -6.315662322842245,41.84100391809313,0 -6.315533538209467,41.84087316234023,0 -6.314552263026608,41.84019749003815,0 -6.313908447282341,41.83969717308127,0 -6.313557735121917,41.83933825313024,0 -6.313117622547613,41.83909688548119,0 -6.313086082243594,41.83902530537652,0 -6.313156364505864,41.83888345545837,0 -6.313113202356499,41.83879706141234,0 -6.312667391911859,41.83848072287073,0 -6.312039959025992,41.83808744860463,0 -6.311487765430003,41.83768816052093,0 -6.31108479636297,41.83755092736868,0 -6.310982426211623,41.83743654609629,0 -6.311407685102485,41.83711652981003,0 -6.311654814384204,41.83709807533887,0 -6.311944176974523,41.83698354664601,0 -6.312099583456725,41.83683962749767,0 -6.312149124827111,41.83664796766654,0 -6.312025333033246,41.83640330325993,0 -6.312112981352827,41.83595925017407,0 -6.312167507964613,41.83542844932493,0 -6.312202424503203,41.83511512548777,0 -6.312214405920193,41.83490742809242,0 -6.312156245974483,41.83469130958545,0 -6.311972359492471,41.83445354441034,0 -6.311735405918949,41.83437204314934,0 -6.311470193223354,41.83423113545626,0 -6.311117174205786,41.83407398204611,0 -6.310393922895495,41.83355255446224,0 -6.310155969328513,41.83337526215784,0 -6.310023718243921,41.83322114260716,0 -6.309791074210592,41.83290416529809,0 -6.309662977324305,41.8325894033668,0 -6.30924500927846,41.83215557887088,0 -6.308824455949019,41.83184731189305,0 -6.308327770926359,41.83151158293402,0 -6.30776555726818,41.83115740973714,0 -6.30708217965929,41.83074556117447,0 -6.306521154911231,41.83050344541747,0 -6.30565888017169,41.83015792153357,0 -6.305089306974784,41.8299599862181,0 -6.304650000224826,41.82988156051319,0 -6.304219943092621,41.8297893920404,0 -6.303670563031806,41.82961104633861,0 -6.303503251131344,41.82958525348238,0 -6.303317145814945,41.82958781496561,0 -6.303107733931851,41.82963169129648,0 -6.302875393474378,41.82959531853487,0 -6.30270168655531,41.82954873475703,0 -6.302554209553069,41.82946606991496,0 -6.302424775518288,41.82934942221117,0 -6.302356438765112,41.82929174870326,0 -6.302136139453589,41.82919294814654,0 -6.301929503700561,41.82912998011454,0 -6.301673429336267,41.82907805700129,0 -6.301366134141877,41.82898266251144,0 -6.301075093947432,41.82886548014442,0 -6.300833687580187,41.82880432084126,0 -6.300424900017276,41.82862337803539,0 -6.300136206804321,41.82848758224519,0 -6.299966728307255,41.8284401474485,0 -6.299779763378925,41.82840689325435,0 -6.299363907705189,41.82834552289795,0 -6.298985248135669,41.82823266779478,0 -6.298536175820455,41.82811996767799,0 -6.297933265797688,41.827879899804,0 -6.297292357572547,41.82768183198834,0 -6.29668830180597,41.82732134056089,0 -6.295954587896172,41.8269401739361,0 -6.295778063754238,41.82684334996419,0 -6.295526822233541,41.82663431709465,0 -6.295277390567199,41.82636303753219,0 -6.295112372793204,41.8261038507619,0 -6.294935751288822,41.82609723258244,0 -6.294774444050615,41.82579912460378,0 -6.294495380607911,41.82562825095519,0 -6.293955953671341,41.82546181366519,0 -6.293471618225203,41.82512830072269,0 -6.293133225828528,41.82511965140495,0 -6.292939082698466,41.82506197232846,0 -6.29235541107989,41.82504691826268,0 -6.29197940800947,41.82508576049074,0 -6.29158962809012,41.82516273300768,0 -6.291314801069249,41.82527973502825,0 -6.290788062547739,41.82562785479242,0 -6.290411428629366,41.82574082474404,0 -6.289648247120926,41.82587516614987,0 -6.289295361195385,41.82574546451681,0 -6.288885560609869,41.82563270415557,0 -6.288219267812484,41.82558106495139,0 -6.287823334968962,41.82551298685227,0 -6.287272332898592,41.8253230725459,0 -6.286850101086479,41.82518107915217,0 -6.286484417922928,41.82507548572621,0 -6.286178749931011,41.82492510096966,0 -6.284981991045849,41.82415365325587,0 -6.284940434698746,41.82419289616417,0 -6.284918724165055,41.82429220211796,0 -6.284833312145998,41.8242954308556,0 -6.284713898042183,41.8242894065178,0 -6.284578077104036,41.82435516073045,0 -6.284413060692211,41.82446882815595,0 -6.284179892648708,41.82447899725354,0 -6.284071084599377,41.82431450114289,0 -6.283928530652041,41.82394860388482,0 -6.2838354643198,41.82370048276327,0 -6.283791078780057,41.82355801498563,0 -6.283615063554882,41.82348030445319,0 -6.283481630842203,41.82334085502021,0 -6.283368916633666,41.82320791362056,0 -6.283252313723988,41.82294331962185,0 -6.283202060064415,41.82280256808895,0 -6.283099997089433,41.82266228610521,0 -6.283025229686104,41.82255718073691,0 -6.282868097374222,41.82252023982243,0 -6.282704049535339,41.82250214371128,0 -6.282527390372961,41.82243158801815,0 -6.282332475792105,41.82236535147772,0 -6.282149169798521,41.82230825617511,0 -6.281896943275294,41.82225903216456,0 -6.281697795370727,41.82217549309138,0 -6.281414536564766,41.82199803421409,0 -6.281140663071532,41.82180165453082,0 -6.280771131908902,41.82142799564011,0 -6.280523533884889,41.82096043242738,0 -6.280359383621656,41.82068478352229,0 -6.280100175910062,41.82049973414394,0 -6.279652931783728,41.82045076249634,0 -6.279356776033945,41.82045241018869,0 -6.279075405793138,41.82045873654368,0 -6.278850114068112,41.82036775950955,0 -6.278715437266201,41.82035724813633,0 -6.278510877737745,41.82027835918861,0 -6.278162708333358,41.82027758577841,0 -6.277867144783823,41.8201202955016,0 -6.277687620685946,41.82017164544742,0 -6.277543983941677,41.82025216101667,0 -6.277297573045719,41.82027944569857,0 -6.277149801843075,41.82030626331058,0 -6.276792609977369,41.82023867593976,0 -6.276483243822786,41.8201040851404,0 -6.276279163336086,41.81992212699226,0 -6.276297204953925,41.81980671509704,0 -6.276347608170866,41.81967524935262,0 -6.276477244188456,41.81958429456232,0 -6.276702041895366,41.8194915639539,0 -6.276764835372774,41.81942572764603,0 -6.276780415179388,41.81935006618894,0 -6.276734442935796,41.81932130930704,0 -6.276110678008537,41.81931639713079,0 -6.275293630192692,41.81955411995008,0 -6.275180949884368,41.81959155871915,0 -6.27478657306095,41.81990343287131,0 -6.274365757143517,41.82020282860702,0 -6.274234944871773,41.82029671703432,0 -6.273955468938147,41.82062208470298,0 -6.273599309076744,41.8214146410778,0 -6.271835789523566,41.8212363530811,0 -6.27109282004028,41.82103056018243,0 -6.270651786407855,41.82092499293934,0 -6.270144696882625,41.82083802045156,0 -6.270140290098217,41.82083801808613,0 -6.269920742063585,41.82080690553817,0 -6.269433579559769,41.82068097506121,0 -6.267422453533264,41.82019692974115,0 -6.266007077340356,41.81989021541371,0 -6.264686136503883,41.81949167696358,0 -6.264624825050839,41.81896544766782,0 -6.264690328667739,41.81866655971949,0 -6.264751078924444,41.81842458312378,0 -6.264892484006918,41.81817679460221,0 -6.264877753575343,41.81812197737911,0 -6.264252355703843,41.81802518673352,0 -6.263757696149136,41.81790547449854,0 -6.263586710669671,41.81779296005904,0 -6.262981247379747,41.8175456471505,0 -6.262137953673161,41.81769211560876,0 -6.261758729890076,41.81763029017532,0 -6.261251144776035,41.81731484606022,0 -6.260598095142615,41.81683800289223,0 -6.260120449139885,41.81658840270225,0 -6.259860265999323,41.81644762117332,0 -6.259818596400532,41.81624881340826,0 -6.259380900832552,41.81628159220199,0 -6.258967464177601,41.81626389037811,0 -6.258556345279835,41.81621999656913,0 -6.258188782384615,41.81613805217543,0 -6.258061784113355,41.81610174078582,0 -6.257663382910957,41.81596544709375,0 -6.257666587144616,41.8158966915594,0 -6.257871032047213,41.81568085512741,0 -6.25827603070876,41.81537559696709,0 -6.258921043476727,41.81495670725766,0 -6.258444407615197,41.81477191534129,0 -6.258074543989512,41.81460637460813,0 -6.257813576611953,41.81437398326489,0 -6.257543479517733,41.8140450156323,0 -6.257272431549803,41.81364781624085,0 -6.257019267556075,41.81324005083807,0 -6.25664878963879,41.81283686201939,0 -6.256358178861118,41.81257700904497,0 -6.255971016594931,41.81229009439277,0 -6.255636313029158,41.81199818788276,0 -6.255482466232616,41.81175696849589,0 -6.255313160331087,41.81136162712818,0 -6.255074783157047,41.81092045277149,0 -6.25594702616331,41.81068747498359,0 -6.255696343131217,41.81032248954612,0 -6.255351339323745,41.81027910966149,0 -6.254970196678141,41.8101747295926,0 -6.254687158948986,41.8100057117811,0 -6.254530439710679,41.80984193536472,0 -6.254477589862841,41.80968442261936,0 -6.254218547609933,41.8092680322245,0 -6.254116103488018,41.80912820555329,0 -6.253879906320043,41.80892011572653,0 -6.253645091045329,41.80869267834888,0 -6.253499830090634,41.80844054613583,0 -6.253306732181322,41.80816785939886,0 -6.253248352711723,41.80785634981407,0 -6.25326137861445,41.80761604802149,0 -6.253264662197335,41.80734828536852,0 -6.253360685785676,41.80711289097317,0 -6.253430356401692,41.80691129107448,0 -6.253573184650451,41.80665787288246,0 -6.253554269996967,41.80638760349265,0 -6.253480244994739,41.80618409996725,0 -6.2532666525473,41.80603435011583,0 -6.25316457903268,41.8058964748644,0 -6.25316265908325,41.80567299051361,0 -6.253192633105794,41.805426292146,0 -6.253158387588612,41.80534602263852,0 -6.253095571085353,41.80516717713712,0 -6.253131868328834,41.80507350404773,0 -6.253267112663066,41.80497036998226,0 -6.253258513695307,41.80485545773482,0 -6.253107287294916,41.80463232236424,0 -6.253124226862434,41.80451237241497,0 -6.253124781505376,41.80452173554775,0 -6.253461960306826,41.80446830409864,0 -6.253829145203893,41.80445810344953,0 -6.254553542853318,41.80421634828004,0 -6.254606335364881,41.80395235495167,0 -6.254577160490804,41.80376439871041,0 -6.254447282793767,41.80365208857057,0 -6.254159059129492,41.80344268649695,0 -6.254252209221811,41.80318820468875,0 -6.254252414366243,41.8027947765043,0 -6.25419857763441,41.80232674394323,0 -6.253198649450696,41.80236345679785,0 -6.252729321678452,41.80233086761681,0 -6.252464640466343,41.80231908859816,0 -6.25238160793776,41.80239368022853,0 -6.252336201147543,41.80248317298263,0 -6.252226319631037,41.80249513282776,0 -6.252132126652701,41.8024496528863,0 -6.252105337549264,41.8023271892278,0 -6.252161417486708,41.80212096560824,0 -6.252162894330036,41.80202122521153,0 -6.252036225266227,41.80194149584426,0 -6.251879340381315,41.80188723609439,0 -6.251564818838674,41.80166306011845,0 -6.251328534722651,41.80146736491735,0 -6.250987966866664,41.80125914371801,0 -6.250637422486991,41.8009815475938,0 -6.250051048291512,41.80058394485847,0 -6.24977584985822,41.800529885203,0 -6.249581063100727,41.80044742891295,0 -6.249562519636482,41.8003281995913,0 -6.249582322113171,41.80021258371631,0 -6.249676561699186,41.80002346924796,0 -6.249783875929228,41.79969158095426,0 -6.249795586524901,41.79955444369988,0 -6.249776955712878,41.79936434087598,0 -6.249827099715958,41.79911396919574,0 -6.249463887409147,41.79874699753992,0 -6.249040015272077,41.7981686192899,0 -6.248457304498024,41.79731492428099,0 -6.247881476628308,41.79660946861495,0 -6.247164547647486,41.79590131055759,0 -6.246684405497007,41.79539894191436,0 -6.246163748636942,41.79506639826337,0 -6.246090069745254,41.79498798265872,0 -6.246060086123608,41.79483668075513,0 -6.246013326471898,41.7947389916167,0 -6.245918241604858,41.79471853899842,0 -6.245532141822402,41.79498486088385,0 -6.245093215370877,41.7951709379086,0 -6.244536964233496,41.79522708752744,0 -6.244278055055219,41.79520454262774,0 -6.244101356983275,41.79513191662862,0 -6.243638089257004,41.79494960577066,0 -6.243070414726462,41.79461006572475,0 -6.242437789240805,41.79418494160108,0 -6.241716411697515,41.79360445626882,0 -6.241478603039319,41.79342161133892,0 -6.240940487996514,41.79308400531885,0 -6.240381531720759,41.79257122594064,0 -6.240214812420514,41.79245331292201,0 -6.240036162280822,41.79237569299082,0 -6.239784856386727,41.79230729184079,0 -6.239566056034161,41.79212854631219,0 -6.239146171383703,41.79183108271403,0 -6.23887791652042,41.79165137309413,0 -6.238712479224857,41.79139526310019,0 -6.238555281508853,41.79123267616832,0 -6.238216349259177,41.79112961452387,0 -6.237929908877692,41.79089479369612,0 -6.237762250376821,41.79079760899712,0 -6.237591662554892,41.79072556046453,0 -6.237327867668007,41.79066104905893,0 -6.237197095137004,41.79066968563868,0 -6.236811920915036,41.79097866900254,0 -6.236682423950405,41.79103958707818,0 -6.236568699088458,41.79105551632677,0 -6.236133747700631,41.79089820322349,0 -6.235744270306405,41.79066242679289,0 -6.235539967021046,41.79041399979359,0 -6.235257275338613,41.79029335336121,0 -6.23500838947992,41.79015421685359,0 -6.234768791709387,41.78990355301896,0 -6.234455790739024,41.78956735025129,0 -6.234268751252785,41.78944705031471,0 -6.233980256838238,41.78928448718062,0 -6.233674522654567,41.78889213462348,0 -6.233543917021519,41.78841466399839,0 -6.233515518503522,41.78822448823323,0 -6.233456078566789,41.78790930659361,0 -6.233257059449563,41.78767636142215,0 -6.232995794056703,41.78745102554687,0 -6.23265092042492,41.78709029477682,0 -6.232461248251963,41.78697474434139,0 -6.232298286384093,41.78679186949581,0 -6.23203199702413,41.78664400018629,0 -6.231726951943455,41.78648467071042,0 -6.231483578521889,41.78631212399248,0 -6.231404389190617,41.78628069826939,0 -6.230947680017676,41.78664248848864,0 -6.230610968511959,41.78648654310294,0 -6.230144204449108,41.7861376830019,0 -6.229825802523303,41.78591125815643,0 -6.229210145508724,41.78552751995813,0 -6.228228213725461,41.78473697898381,0 -6.227730109142431,41.78435880361189,0 -6.227407828363127,41.78395123324518,0 -6.227390656312246,41.78365277556848,0 -6.22689199025367,41.78331998750836,0 -6.226396585544105,41.78302723871606,0 -6.22635756329844,41.78295518552429,0 -6.227103348317761,41.78229544687073,0 -6.227702197343,41.78206595629167,0 -6.228642053552847,41.78183652844455,0 -6.229025900915493,41.78173040013748,0 -6.229211654635458,41.78152679868379,0 -6.229308624834339,41.78139301926699,0 -6.229707960133867,41.78092229594,0 -6.230137216245312,41.7804649576352,0 -6.230282390430086,41.78012415531322,0 -6.230255344650091,41.77972846280841,0 -6.230094507468808,41.77915435269865,0 -6.229855493231275,41.77891462833651,0 -6.229426565849713,41.77859613940588,0 -6.228972022556318,41.77821492137348,0 -6.228764506271263,41.77800343849611,0 -6.228456149277943,41.77787646068094,0 -6.228108731093593,41.77740229188969,0 -6.227742855159852,41.77663305047516,0 -6.227544950409035,41.7761147860226,0 -6.227529056029033,41.77583236585935,0 -6.227673637023949,41.77562324722301,0 -6.227883656210621,41.77552653432134,0 -6.228199865881728,41.77550210639811,0 -6.228393079124653,41.77530880425811,0 -6.228450432423144,41.7749741281504,0 -6.228365251877797,41.77481803452749,0 -6.227983470172587,41.77449638357139,0 -6.227806429414193,41.77420265410172,0 -6.227681745055696,41.77380683054833,0 -6.227653956539258,41.7733426478608,0 -6.227663512083973,41.77306405729713,0 -6.227610774224783,41.7729141747006,0 -6.227466617306381,41.7726581328709,0 -6.227324829544659,41.77219402926085,0 -6.227192177960662,41.77177117511156,0 -6.226874686648981,41.77121033457382,0 -6.226692623240412,41.77088095131765,0 -6.226536715185885,41.77067692525946,0 -6.226279694406676,41.77039489160075,0 -6.226107315772809,41.77023311669964,0 -6.225875597403697,41.77010852785141,0 -6.225676361977009,41.77004704256999,0 -6.225476116358023,41.7698924597476,0 -6.225217454509613,41.76958024151572,0 -6.224990626880723,41.76927136573772,0 -6.224503339751296,41.768844124697,0 -6.224331308159714,41.76868421067636,0 -6.224184205474251,41.76850111960356,0 -6.223979377788089,41.7682655713633,0 -6.223742367872566,41.76804744864529,0 -6.223291251329824,41.76774061375284,0 -6.222915755947307,41.76743875444449,0 -6.222454505606235,41.7667720910982,0 -6.222194782457268,41.76627460513796,0 -6.222142261090422,41.76593403942535,0 -6.221987513001269,41.76588301950682,0 -6.221793603581568,41.76588876424513,0 -6.221496170008367,41.76602237856,0 -6.220719567359149,41.76630966236621,0 -6.220548263779677,41.76632780609939,0 -6.220382202678128,41.76622625439602,0 -6.220210953318105,41.76603693426706,0 -6.219751886998097,41.76576947730687,0 -6.219354293179039,41.76549979425727,0 -6.219192791541276,41.76538456571086,0 -6.218929995173699,41.7653341191656,0 -6.218623106148517,41.76522126524761,0 -6.218357223252227,41.76507259293496,0 -6.218206503171471,41.76493981131589,0 -6.217959066743664,41.7648614065824,0 -6.217690965966055,41.76480647189592,0 -6.217399980666919,41.76477945246147,0 -6.216871643791859,41.76477370463389,0 -6.216697203894523,41.76475441601284,0 -6.216605316813518,41.76470600199811,0 -6.216422791229941,41.76446747542028,0 -6.216365217950717,41.76432698991327,0 -6.216360526739687,41.76432711059412,0 -6.216355081299528,41.76422694009598,0 -6.216274086109004,41.7642052227601,0 -6.216095082616016,41.76421500200456,0 -6.215746247664601,41.76415919907232,0 -6.215376483041251,41.76412441077321,0 -6.215177408359941,41.76414769995941,0 -6.214792856721239,41.76422461987162,0 -6.214321391144999,41.76424783659846,0 -6.213759556907875,41.76426353389844,0 -6.213185164299299,41.76431351075944,0 -6.212516898968187,41.76421674197544,0 -6.212011279400493,41.76417342319291,0 -6.211546336394576,41.76413788284067,0 -6.211155775155687,41.76409227901196,0 -6.210761305766214,41.76402511599398,0 -6.210097233517104,41.76375905519944,0 -6.209415322414708,41.76344900200203,0 -6.208750882986172,41.76313173791033,0 -6.207946428643841,41.7627496512402,0 -6.207348478333445,41.76250139904265,0 -6.206848617656426,41.76239671459381,0 -6.206327371140706,41.76219658947297,0 -6.20591050531173,41.76202341771512,0 -6.205791091539239,41.76185798606311,0 -6.205644405672246,41.76170923729544,0 -6.205410605386115,41.76159571581796,0 -6.205149343326678,41.76154400336679,0 -6.204849662698814,41.76142866641483,0 -6.204330839519456,41.76125274584852,0 -6.20381091661108,41.76112924974088,0 -6.203534124532773,41.7611280687001,0 -6.203358449878019,41.76112077959492,0 -6.202902420845193,41.76107352184328,0 -6.202600550420146,41.7611289551656,0 -6.201817663849455,41.76138245945334,0 -6.20126599688983,41.7614991015953,0 -6.200496170481471,41.76156055836091,0 -6.199873904332862,41.76156868883406,0 -6.199279832488564,41.76153507975134,0 -6.199114057479674,41.76147273904541,0 -6.198984832703775,41.7614021883559,0 -6.198848248444422,41.76125184876896,0 -6.198705540735931,41.76110465690205,0 -6.198479978228709,41.76092656322593,0 -6.19812294693431,41.76074346635891,0 -6.197982665672623,41.76059451126026,0 -6.197817806567466,41.76030196865164,0 -6.197681040885347,41.75996499155369,0 -6.197554577539352,41.75967525793536,0 -6.197534859126309,41.75940274398029,0 -6.197613317202335,41.75911834223496,0 -6.197741608260382,41.7588015835783,0 -6.197852565771431,41.75846208605671,0 -6.197918184051091,41.75825912225283,0 -6.197775653345313,41.7581396263978,0 -6.197720020320316,41.75807500667314,0 -6.197586944781149,41.75798554687383,0 -6.197295149709383,41.75786782704598,0 -6.197134658328768,41.75783837500262,0 -6.196919557150759,41.75787440027352,0 -6.196296478570508,41.75814538596257,0 -6.195707365574402,41.75832928271084,0 -6.195124322851631,41.75835429467738,0 -6.19478164977039,41.75827970669307,0 -6.194582041910699,41.75825297145868,0 -6.194349882131958,41.7582604632535,0 -6.194177075427981,41.75823547910527,0 -6.193678024037549,41.75810322514202,0 -6.193268119243232,41.75775815442272,0 -6.192995278987164,41.75737198656142,0 -6.192976707228723,41.75716998758669,0 -6.193036677709344,41.75694003189093,0 -6.193243596000385,41.75652510388125,0 -6.193409749915122,41.75616838292724,0 -6.193628447834366,41.755864647766,0 -6.193932268196005,41.75557667112091,0 -6.194283626851646,41.75520502736221,0 -6.194680549727183,41.75475092872613,0 -6.195145707145816,41.75419159450301,0 -6.195423119736905,41.75388519706483,0 -6.195276679968074,41.75370731191073,0 -6.195264321905011,41.75332961978008,0 -6.195289094322918,41.75312764422036,0 -6.195404909609189,41.75283876876968,0 -6.195503547328112,41.75237976554482,0 -6.195571738110023,41.75215461254087,0 -6.195659236760029,41.75204069419267,0 -6.195626987447348,41.75154522794812,0 -6.195503980933483,41.75096698629016,0 -6.195267389325339,41.75045427085032,0 -6.194995896754454,41.74998397387112,0 -6.194760056983681,41.74954285444474,0 -6.194514267827314,41.74936745967908,0 -6.193973362091432,41.74912623885318,0 -6.19339097376322,41.74904224226549,0 -6.19199083591082,41.74899954234373,0 -6.190948103183357,41.74891899101705,0 -6.190175737162077,41.74902101519098,0 -6.189424800934087,41.74900277559145,0 -6.188777913215785,41.74887359471099,0 -6.188442197777376,41.74877754212173,0 -6.188102614749998,41.74871456178615,0 -6.187653856470852,41.74867247114673,0 -6.187453520203357,41.74861466305316,0 -6.187115924378741,41.74844669642597,0 -6.186941263925901,41.74833997830807,0 -6.18680777943485,41.74827059016206,0 -6.186539497455348,41.74811100389695,0 -6.18613410940408,41.74795026365064,0 -6.186150883404869,41.74771775479879,0 -6.186029569261658,41.74757791893196,0 -6.185826790358389,41.74743139226886,0 -6.185687960253237,41.74726553284113,0 -6.185785903693385,41.74709757894635,0 -6.185857740304645,41.74689108284057,0 -6.186112866759497,41.74659612559735,0 -6.186373358538464,41.74618849124357,0 -6.186656433557449,41.74594883164225,0 -6.186938931874089,41.74572427427372,0 -6.188051357783797,41.74523821849441,0 -6.188170961764206,41.74517400538899,0 -6.188244482934929,41.74504984354257,0 -6.188493479125514,41.74471553329635,0 -6.188774611064403,41.74429225341147,0 -6.189248846461506,41.74388785243271,0 -6.189503638080478,41.7436046574518,0 -6.18979874434869,41.74316281146885,0 -6.189998182088993,41.74275156256012,0 -6.190042296177695,41.74248787182728,0 -6.190126002898929,41.74182633206965,0 -6.19015401117259,41.74157367523542,0 -6.190108383003556,41.74134043307135,0 -6.190024751837743,41.74112620074411,0 -6.189912293706667,41.74089711262526,0 -6.189798575584817,41.74075083109427,0 -6.189629422706303,41.74052686955382,0 -6.189397933133173,41.7403025802682,0 -6.189200096294831,41.74013505142439,0 -6.188386720646427,41.73952076760548,0 -6.187687582566848,41.73900730180786,0 -6.187198774434567,41.73870336129293,0 -6.186707768068621,41.73846552852999,0 -6.186272738053049,41.73831461811401,0 -6.185522534994456,41.73811900629958,0 -6.185099299223626,41.73791343473784,0 -6.184963333091912,41.73778175600453,0 -6.184644857584396,41.73779544913707,0 -6.184359421803604,41.73783138444917,0 -6.183937304922147,41.7378841998911,0 -6.183725707247055,41.73793606733297,0 -6.183401928466948,41.73814355572172,0 -6.183124241244981,41.73830526141509,0 -6.182949263390615,41.73834565291295,0 -6.18263273795831,41.73836194724503,0 -6.182071656238495,41.73829941312935,0 -6.181847149658768,41.73825418010331,0 -6.181547227001398,41.73813399071766,0 -6.18131541200601,41.73807867382866,0 -6.181095725953579,41.73810575078235,0 -6.180911849923727,41.73811689221938,0 -6.180442590202016,41.73800685260579,0 -6.180194054277985,41.73805615352858,0 -6.1798981165773,41.73807054454331,0 -6.179713840682667,41.73800639581858,0 -6.179292574294713,41.73778218689242,0 -6.179052378835012,41.73768391059235,0 -6.178820798033986,41.73760538139914,0 -6.178733967840361,41.73758204032732,0 -6.178520253171529,41.73757645767479,0 -6.178521125262869,41.73758138527686,0 -6.178320270452044,41.73758427674363,0 -6.177753832653669,41.73759524111603,0 -6.177545128556924,41.73755802665424,0 -6.177174632215927,41.73745237382831,0 -6.176389604119619,41.73712794407386,0 -6.176071250718698,41.73689733827217,0 -6.175895119596591,41.7366687337809,0 -6.175807980568467,41.73654819354832,0 -6.175791113326214,41.73635408837448,0 -6.175727514912599,41.73620719504773,0 -6.175447451498699,41.73594431956835,0 -6.175762692725431,41.73570187971215,0 -6.176232019534678,41.73532458606258,0 -6.176563213536861,41.73502334474156,0 -6.177037396852364,41.73467603981913,0 -6.177201809441267,41.73456261747,0 -6.177238229612556,41.73446428059052,0 -6.177231808001284,41.73433821437591,0 -6.177106022976757,41.73427788431094,0 -6.176944489960824,41.73419208788324,0 -6.176890928225597,41.73408923592471,0 -6.176913464875833,41.7340061603737,0 -6.176976019845338,41.73392468838203,0 -6.177088663207315,41.73383907764818,0 -6.177228211884999,41.73378797207084,0 -6.177325850481696,41.73368735975198,0 -6.177382141625852,41.73362123238611,0 -6.17745573857178,41.73351841841388,0 -6.177474654149774,41.73344388605029,0 -6.177458554153359,41.73335723552734,0 -6.17745389860667,41.73325910917296,0 -6.177502828075636,41.73316805147187,0 -6.177550448993465,41.7330475624965,0 -6.177570048280958,41.73293426131458,0 -6.177581942375058,41.73281631697788,0 -6.177592860195605,41.73272844580578,0 -6.177559436013313,41.73261282280139,0 -6.17750587621117,41.73252905691639,0 -6.17743458071849,41.73238531718881,0 -6.177280483945089,41.7322028827365,0 -6.177149388295024,41.73202960293075,0 -6.176985416292168,41.73181614778176,0 -6.176840411714284,41.73167332836674,0 -6.176698570977637,41.73158858142526,0 -6.176470472786003,41.73147042331573,0 -6.176135914025467,41.73129855674075,0 -6.175806955620291,41.73116414867011,0 -6.175584034626796,41.73109185282567,0 -6.175448273886516,41.7310714198135,0 -6.175383563828315,41.73108440770315,0 -6.175358562614985,41.73125034779613,0 -6.175198485830958,41.73123995452173,0 -6.175179708204394,41.73113203869472,0 -6.175122794976623,41.73104255315622,0 -6.175062699965985,41.73101593233869,0 -6.174977237778668,41.73099576212051,0 -6.174762013084152,41.73100432083928,0 -6.174490656960271,41.73102494982894,0 -6.174281100107162,41.73103894499575,0 -6.174136449558132,41.73105187445772,0 -6.173977953770098,41.73106350417871,0 -6.173788713047365,41.73111558233982,0 -6.173623630114642,41.73115396751491,0 -6.1734042787494,41.73117072698496,0 -6.173264609474066,41.73118871802756,0 -6.173109821951136,41.73122161468248,0 -6.172983134941683,41.73125667263793,0 -6.172827566832498,41.73128817188945,0 -6.172683993884178,41.7313198573682,0 -6.172502901151549,41.73136761767408,0 -6.172333104960861,41.73141108311168,0 -6.17214030611822,41.73146706745186,0 -6.171981609419398,41.73151254998415,0 -6.171858306611185,41.73155126333876,0 -6.171704217314272,41.73159538732624,0 -6.171529158300687,41.73166722502607,0 -6.171365732314413,41.73174385167428,0 -6.171181115722639,41.73183469736097,0 -6.1710023555185,41.73194131141005,0 -6.170894687638419,41.73203240295662,0 -6.170772882862283,41.73207556904021,0 -6.170635063556006,41.73210041612897,0 -6.170512398960945,41.7320945758942,0 -6.170403664205985,41.73210784231571,0 -6.170218307432015,41.73213296055618,0 -6.170098609913868,41.73213710852516,0 -6.169954334751941,41.73215570841163,0 -6.169778068859579,41.73218908074252,0 -6.16966291295019,41.73220474438845,0 -6.169588108815204,41.73221134643008,0 -6.169501489706888,41.73216869148985,0 -6.169387358983515,41.73217662663339,0 -6.169221304872604,41.73220799033113,0 -6.169114506626018,41.73222506604175,0 -6.168990752026939,41.73222998037646,0 -6.168815372712459,41.73224920519643,0 -6.168668746958391,41.73227697959451,0 -6.168509357989547,41.73232918493422,0 -6.168350231423463,41.73240761019323,0 -6.1681882783135,41.73251754058489,0 -6.168024093760027,41.73266583961786,0 -6.167855042311199,41.73280004580428,0 -6.167679640107076,41.73294151509497,0 -6.167447062958226,41.73308032356381,0 -6.167270262876472,41.73319956879124,0 -6.167078164810038,41.73330121695176,0 -6.166957540534201,41.73336602901838,0 -6.166802400559104,41.73341354376304,0 -6.166647234896086,41.73346226692439,0 -6.16654053784587,41.73350626698515,0 -6.166348583121915,41.73359276930081,0 -6.166178684302341,41.73364447070964,0 -6.166051110719334,41.73372178527463,0 -6.165963421575778,41.73370440343221,0 -6.165840148718227,41.73366025801873,0 -6.165634473214018,41.73359521033032,0 -6.165452542202162,41.73357199986073,0 -6.165314718410193,41.73358953456584,0 -6.165073492398077,41.73368198738532,0 -6.164703855732462,41.73390628716489,0 -6.16414644031275,41.73414165818218,0 -6.163393326851036,41.73448639606873,0 -6.163217216687155,41.73456377404087,0 -6.16302277324071,41.73468300927655,0 -6.162860760080784,41.73479876324312,0 -6.1619438221995,41.73526256105467,0 -6.161465533596426,41.73546207384042,0 -6.161060639017901,41.73565822470794,0 -6.160868148274266,41.7357264887147,0 -6.160225916821338,41.73595178991649,0 -6.159793329656339,41.73601808263483,0 -6.159371762390944,41.73607662027902,0 -6.159087134458769,41.73614848606659,0 -6.158012104281312,41.73647129859124,0 -6.157331117275886,41.73666231814293,0 -6.156863316443265,41.73671376236431,0 -6.1564943749109,41.73668949837499,0 -6.15620216331496,41.73664865584524,0 -6.155898851245779,41.73664807790009,0 -6.155737961175294,41.73661722565072,0 -6.155594538822788,41.73654819362348,0 -6.155249241194908,41.73636418505641,0 -6.154769277201458,41.73610939896912,0 -6.154092448978731,41.73575228225865,0 -6.153399074754494,41.73531580517323,0 -6.15319397808128,41.735042630354,0 -6.153054335679837,41.73480605321671,0 -6.152954144679841,41.73433486308159,0 -6.152839067699416,41.73376482713039,0 -6.152820109335357,41.73355956218767,0 -6.152832443451106,41.73314304537238,0 -6.152799487317385,41.73297860508544,0 -6.152703211504063,41.73270368777634,0 -6.152634788294055,41.73237729951666,0 -6.152571372078405,41.73188334438362,0 -6.152573620970858,41.73165385539381,0 -6.152599609580543,41.73142522183441,0 -6.15255082093404,41.73116739338288,0 -6.152504918138416,41.73098787824177,0 -6.152521402062051,41.73087699973959,0 -6.15254391153178,41.73067265234973,0 -6.152564335430792,41.73059003213906,0 -6.152372656389162,41.73058229277549,0 -6.152233203599186,41.73056148975179,0 -6.152099736865482,41.73050443016859,0 -6.152066721836751,41.73041512039499,0 -6.152163851180089,41.7300276287739,0 -6.152329534624124,41.72952007650404,0 -6.152417342599205,41.72933018544872,0 -6.152489404545355,41.72911138856664,0 -6.152629075131282,41.72856079467358,0 -6.152657983444286,41.72831865467083,0 -6.152620064635203,41.72814194468982,0 -6.152611248551939,41.72789697298325,0 -6.152652973716962,41.72765970412492,0 -6.152771255116587,41.72726521303623,0 -6.152782061711067,41.72682966380372,0 -6.15276747820892,41.72645823657386,0 -6.152857023113961,41.72585583193859,0 -6.152876472233347,41.7254783795635,0 -6.15289088332054,41.72526203470265,0 -6.15295542086317,41.72502642534913,0 -6.152947044115554,41.72473098128045,0 -6.152877075589581,41.72439967630628,0 -6.152809901476869,41.7241360449467,0 -6.152652294000289,41.72369672020709,0 -6.152371354250805,41.72321719746468,0 -6.152277989884397,41.72298637661555,0 -6.151922707035467,41.72255151218336,0 -6.151545022577039,41.72221421869349,0 -6.151158733016279,41.72181210815523,0 -6.150766146403742,41.72148721882364,0 -6.150444389065798,41.72127498466189,0 -6.149821645426422,41.72083711131116,0 -6.149285793773513,41.72035865224299,0 -6.148702539356848,41.71985859991126,0 -6.148279974820417,41.71948941129365,0 -6.147992574037414,41.71925419388714,0 -6.147632174998671,41.71895577929812,0 -6.147434347266216,41.71870184093158,0 -6.147269586497879,41.71841916496519,0 -6.147054729965602,41.71812229731334,0 -6.146808087243626,41.7178641115713,0 -6.146535531290439,41.71768890738863,0 -6.146225456996508,41.71752244876157,0 -6.145668506322099,41.71727140824142,0 -6.145385628422844,41.71714208976741,0 -6.145086938138958,41.71707367645011,0 -6.144589762359622,41.71700564359433,0 -6.144205288003699,41.7169368462562,0 -6.143765360464173,41.71685598929069,0 -6.143552702214422,41.71688646208158,0 -6.143241676644263,41.71684175446329,0 -6.142850899344934,41.71673272682912,0 -6.142572164289517,41.71658890327258,0 -6.142194972475695,41.71651093248286,0 -6.141946890845985,41.71638031947925,0 -6.141913101160526,41.71630704058442,0 -6.141845365532999,41.7162618682632,0 -6.141671221498246,41.71621266701988,0 -6.14134047615829,41.71610976828109,0 -6.141048786343678,41.71599378154975,0 -6.140802497239458,41.71587233199899,0 -6.140467119274938,41.7157147938571,0 -6.140222906183467,41.71559063637236,0 -6.140032945545099,41.71542398587964,0 -6.139911118551915,41.7151789456278,0 -6.139916440514366,41.7148669390672,0 -6.139972745246602,41.71465064640351,0 -6.140048030163393,41.71409790024539,0 -6.140055737519386,41.71392325781216,0 -6.140121061357705,41.7136348683893,0 -6.140124555601469,41.71322377269114,0 -6.139949468980069,41.71273274253541,0 -6.139728235988152,41.71220322145768,0 -6.139507355765979,41.71183728261877,0 -6.139317583074428,41.71155785412951,0 -6.139116706808317,41.71146217712901,0 -6.138785702165093,41.71138174231629,0 -6.138413520125075,41.71131969899733,0 -6.138057600197935,41.71130937618555,0 -6.137768770229522,41.71137182523034,0 -6.137541813280658,41.71146425660736,0 -6.137421174355699,41.71153280693783,0 -6.137309167428695,41.71158069508198,0 -6.137136358321761,41.71168263004889,0 -6.136896904732554,41.7118254035463,0 -6.136661994729594,41.71194705422695,0 -6.136344354412845,41.71214968611222,0 -6.136006501455085,41.71243181884902,0 -6.13556078373697,41.71278483734239,0 -6.135330553943831,41.71291518240834,0 -6.135115683570817,41.71302004057156,0 -6.134920523059365,41.71318092670766,0 -6.134711332339998,41.71335064674012,0 -6.13442249360272,41.71357628720378,0 -6.134088368278112,41.71371085115098,0 -6.133471944055216,41.71399894150481,0 -6.132958569857814,41.71418418756346,0 -6.132409094833873,41.71440568414756,0 -6.132100229739662,41.71447934277492,0 -6.131782956648733,41.7144998591298,0 -6.131544355770827,41.71450953302985,0 -6.131257131773022,41.71448124242255,0 -6.130972745440019,41.71438558298894,0 -6.130666553533769,41.71428542051038,0 -6.130472603271788,41.71417242221018,0 -6.130059718589884,41.71384758086666,0 -6.129865921045962,41.71371432834111,0 -6.12948431153672,41.71350513684207,0 -6.129159109971153,41.7133330195478,0 -6.128843402307331,41.71312498250508,0 -6.128562429172493,41.71292371963846,0 -6.128105193464547,41.71249849862471,0 -6.127928852886956,41.71229200098354,0 -6.127655603622872,41.71210696461534,0 -6.127468091220126,41.71202820144101,0 -6.12715618991916,41.71192285291065,0 -6.126984317022485,41.71186954786302,0 -6.126839560729422,41.71175983449471,0 -6.126706880568785,41.71167230376318,0 -6.126196988748099,41.711518129508,0 -6.125988971128399,41.71127015631786,0 -6.125745315800385,41.71100034257483,0 -6.125473947041002,41.71077309134368,0 -6.125240798391745,41.71051877360885,0 -6.125064227718753,41.7102733345293,0 -6.124879467363947,41.71006987507165,0 -6.124651989629427,41.70978144582735,0 -6.12443690355057,41.70932133269169,0 -6.124174674623947,41.7088133609823,0 -6.123991468324416,41.70841681698489,0 -6.124034836954353,41.70826930831454,0 -6.12390547410697,41.70793057028416,0 -6.123806486301117,41.70775432633389,0 -6.12380984306879,41.70754445248606,0 -6.123697217744074,41.70734124756066,0 -6.123446220043181,41.70711134469194,0 -6.123205340945392,41.70689063914612,0 -6.122950141840194,41.7067582558183,0 -6.122730773528968,41.70669582440278,0 -6.122559102395609,41.706682021296,0 -6.122426627011118,41.70666613707961,0 -6.122301122178462,41.7066325065858,0 -6.122133864785654,41.7066159947457,0 -6.121641671323918,41.70662342217067,0 -6.121286602684467,41.70668090960878,0 -6.12086936586892,41.70680858497036,0 -6.120303350799396,41.70694524041031,0 -6.120087691736059,41.70697636254688,0 -6.119745918102884,41.70695473154359,0 -6.119505918619357,41.70694270866013,0 -6.119245248026076,41.70695950892804,0 -6.11893068232384,41.70699895126691,0 -6.118505517147874,41.70700335337051,0 -6.118201809934146,41.70698366298444,0 -6.118028731934024,41.7069512723256,0 -6.117791251464714,41.70690329970808,0 -6.117503136688518,41.70684707472963,0 -6.11729430817036,41.70674683978373,0 -6.117150543749212,41.7066514090391,0 -6.116892392246998,41.70647455173708,0 -6.116758307409245,41.70631050261319,0 -6.116635212838459,41.70607681556262,0 -6.116357325689956,41.70547498927584,0 -6.116174846762947,41.70504527858945,0 -6.116085084815563,41.70473490344909,0 -6.116057415203321,41.70456426833522,0 -6.116070732651915,41.70432656973772,0 -6.116108661100537,41.70421404812323,0 -6.116198919120804,41.70403339029727,0 -6.116288473361518,41.70390203531651,0 -6.11641494548628,41.70380941783252,0 -6.116772688561094,41.70367376792306,0 -6.116852147746216,41.70358132960737,0 -6.116897588276284,41.70345272784807,0 -6.117221651668855,41.7030617069578,0 -6.117676323614917,41.70239631236359,0 -6.117818698538398,41.70212138711715,0 -6.11788307550055,41.70193696249308,0 -6.117895756060293,41.70172713422078,0 -6.118078286851274,41.701534410786,0 -6.118827499980041,41.70062775287288,0 -6.118906428717587,41.7005389594168,0 -6.119008924333882,41.7004892740586,0 -6.119126747088014,41.7004636122109,0 -6.119298533878636,41.70041664703662,0 -6.119558348671967,41.70025101701173,0 -6.120012007227408,41.69982344443837,0 -6.120199470445926,41.69962440859338,0 -6.120285546689339,41.69954774560063,0 -6.120468895672495,41.6994806279736,0 -6.120829342283933,41.69933579401205,0 -6.121152308057989,41.69926467118152,0 -6.121478657632922,41.69916699595464,0 -6.121697818402765,41.69911420730227,0 -6.122263766336241,41.69914291126965,0 -6.122504514272389,41.69913933792005,0 -6.122650658162817,41.69909530273539,0 -6.123088889426954,41.69887938101394,0 -6.123517827588843,41.69871231169193,0 -6.123684815698834,41.69854649378725,0 -6.123808028552034,41.69845734871569,0 -6.124020002443983,41.69840459050737,0 -6.124188392871435,41.69836864409879,0 -6.124459892882388,41.69828916879452,0 -6.124737853378658,41.69823937911219,0 -6.125042558010754,41.69826294713944,0 -6.125184969346068,41.69825098225976,0 -6.1252093551916,41.69811515539843,0 -6.125118765775152,41.69806456434007,0 -6.124801398793628,41.69799181860365,0 -6.124462988225869,41.69796991123921,0 -6.124159786962253,41.69789379826162,0 -6.123886806655814,41.69784550559984,0 -6.123315856917676,41.69773689424487,0 -6.122777202667042,41.6975173873595,0 -6.122596594796414,41.69738693257198,0 -6.122398313267018,41.69728356177539,0 -6.122201036022268,41.69714600384426,0 -6.121896786588571,41.69704307632531,0 -6.121746040529805,41.69699635895907,0 -6.121556004371616,41.69698547214549,0 -6.121262169666798,41.69698727598493,0 -6.121121277509348,41.69700677609894,0 -6.121008293527637,41.69704293290562,0 -6.120725664388695,41.69722526194725,0 -6.120523123386405,41.69731044354953,0 -6.120294003054767,41.69735977451157,0 -6.120155479482744,41.69741672851408,0 -6.119956206839468,41.6976334711138,0 -6.119814698723802,41.69771078012951,0 -6.119384616936649,41.69776039718761,0 -6.119100970673101,41.69780757429334,0 -6.118877034281102,41.69787621374689,0 -6.118554711132161,41.69799225033761,0 -6.118232514853913,41.69821802897355,0 -6.117405746519159,41.6986926492247,0 -6.117000809849963,41.69886427730049,0 -6.116740319617219,41.6989157233389,0 -6.116292007369064,41.69894426260689,0 -6.115931517656124,41.69898924170545,0 -6.115548816314846,41.69902795216064,0 -6.11512228673547,41.69912972454093,0 -6.11483691912383,41.69917345517683,0 -6.114401243045485,41.69918562441121,0 -6.114031379065093,41.69915376341144,0 -6.113699506609276,41.69911760519406,0 -6.113446032050503,41.69906458989117,0 -6.113263665158416,41.69907284850556,0 -6.11296501284044,41.69914167451719,0 -6.112489664941247,41.69930235833112,0 -6.11209393155097,41.69941976803843,0 -6.111801906619404,41.69946614100935,0 -6.111375354066755,41.69951818645869,0 -6.110749616919038,41.69955865222936,0 -6.110293946385842,41.69950117378835,0 -6.109889747422042,41.69944053734491,0 -6.109603182827369,41.69945132751261,0 -6.109312028269835,41.69942338340952,0 -6.109009989123572,41.69936965726459,0 -6.108664452551756,41.69937520880735,0 -6.108489579382711,41.69941118935054,0 -6.10829557611646,41.69933084648012,0 -6.108206587738033,41.69934270601006,0 -6.108150686298126,41.69939706053677,0 -6.107968843313576,41.69953788838154,0 -6.107522474679701,41.69976848594456,0 -6.106988227605381,41.7000422642877,0 -6.106795724589743,41.70022191377526,0 -6.106248239347342,41.69996509966301,0 -6.106078281513335,41.69996116576705,0 -6.105860154682707,41.69999323313543,0 -6.105531740320163,41.70011985449995,0 -6.105235954866922,41.70023302950086,0 -6.104680356967325,41.70032661900777,0 -6.103518157445165,41.70049619986695,0 -6.10301365459369,41.70055888159623,0 -6.102493281257998,41.70063819976521,0 -6.10229097479094,41.70066500756006,0 -6.102027818696534,41.70064711592279,0 -6.101644832022739,41.70059917456647,0 -6.101452627671824,41.70057776868785,0 -6.100999893334654,41.70054350363228,0 -6.100651795342613,41.7004830907967,0 -6.100334875032218,41.70040319104608,0 -6.099718915483102,41.70011801282183,0 -6.099267055806906,41.69990455316304,0 -6.098956562511791,41.69975531436112,0 -6.098192195353564,41.6995045767287,0 -6.098236999979533,41.69942435200386,0 -6.098647506295083,41.69955946019073,0 -6.099061022228818,41.69966277029325,0 -6.09922986200294,41.69968899772992,0 -6.099396777393919,41.69965481616255,0 -6.099436664414864,41.69956784484052,0 -6.099388016501087,41.69945485963167,0 -6.099277293639219,41.69930271107652,0 -6.099241478180709,41.69916216515478,0 -6.099303849558321,41.6989291946223,0 -6.099379453198081,41.69875528647445,0 -6.099422759107749,41.6986646595899,0 -6.099438723198478,41.69837066758012,0 -6.099433305279005,41.69826150022269,0 -6.099458298171001,41.6981729065522,0 -6.099511448981384,41.69809627055737,0 -6.099539871100692,41.69800392360749,0 -6.09946175441851,41.69771154645574,0 -6.099560454482401,41.69711969029662,0 -6.099519764832632,41.69704137698404,0 -6.099395948205761,41.69696925574068,0 -6.099377365611497,41.69689456710376,0 -6.09940277567549,41.69683889925457,0 -6.099559422218857,41.69682535880578,0 -6.099728956333184,41.69686159548888,0 -6.100617184483195,41.69664832082257,0 -6.100905568500451,41.6966401799699,0 -6.101011920987109,41.69662562484363,0 -6.101110464941774,41.69654524287724,0 -6.101237444096306,41.69645628294982,0 -6.101301970939924,41.69641194497535,0 -6.101440844364793,41.69626430868996,0 -6.101935943964452,41.69551294338858,0 -6.102177877644901,41.69524401428834,0 -6.103284230486511,41.69408437066628,0 -6.103746682108647,41.69362745601016,0 -6.104034909759134,41.6934526156228,0 -6.104243673434721,41.69327534676557,0 -6.10446555476432,41.69298335078886,0 -6.105595115766124,41.69235419535684,0 -6.105757530253673,41.69219002680757,0 -6.106041578338486,41.69211089974974,0 -6.106331966970457,41.69199288120706,0 -6.107753002476992,41.69120304505839,0 -6.108103059374152,41.69105893709887,0 -6.108300837629255,41.69073118424166,0 -6.108378438673626,41.69050592137732,0 -6.108365207106523,41.69040322233073,0 -6.108301894265933,41.69031600883051,0 -6.108249515823499,41.6902632245798,0 -6.108189973722809,41.69020825300699,0 -6.108217875232413,41.69011309035957,0 -6.108268272193117,41.69005785812288,0 -6.108371233468843,41.68988590072909,0 -6.108393021705417,41.68978052167769,0 -6.10836009946985,41.68961508984312,0 -6.108342637954936,41.68937252824821,0 -6.108410361823019,41.68907200604715,0 -6.108496672169059,41.68875456046397,0 -6.108569055814387,41.68857598192005,0 -6.108724216629064,41.68777548693974,0 -6.108817987657815,41.68719055163042,0 -6.1089238413589,41.68675078528977,0 -6.109038183728492,41.68578494724991,0 -6.108987827134528,41.6851206015212,0 -6.10882429995463,41.6841718913068,0 -6.10876112647882,41.6835254658371,0 -6.108743950906016,41.68309232646821,0 -6.108715606595387,41.68288722797532,0 -6.108593643772807,41.68276924468265,0 -6.107702351783672,41.68239046802497,0 -6.10744304992136,41.68223363946223,0 -6.107107049507478,41.68194463799881,0 -6.10667807530405,41.68154789103495,0 -6.106150060735072,41.68111522390101,0 -6.105976615338006,41.68099224145687,0 -6.105815898454465,41.68096235200012,0 -6.105753195889575,41.68091230885361,0 -6.106106637179501,41.68053121215985,0 -6.106251956869752,41.68036790021144,0 -6.106322761120754,41.68018618050348,0 -6.10629818520675,41.68005455480265,0 -6.106244429695997,41.67995941654704,0 -6.106109421004371,41.67979454066709,0 -6.105772228854179,41.67940651097944,0 -6.10544666501693,41.67900512474333,0 -6.105398057201608,41.6788996047137,0 -6.105412967844218,41.67876667089602,0 -6.105501170728164,41.67837569367257,0 -6.105461958828258,41.67834849156236,0 -6.105374275097831,41.67834774186385,0 -6.105160083849464,41.67839639234668,0 -6.105014399183812,41.67843712053091,0 -6.104808695971339,41.67853912840868,0 -6.104632640818642,41.67859494123464,0 -6.104440150796221,41.67856483459767,0 -6.104273710749766,41.6784984788244,0 -6.104033365293598,41.6784206267726,0 -6.103893196665254,41.67840845407778,0 -6.103790460953027,41.67844309113278,0 -6.103572635171116,41.67868662743913,0 -6.103341110857165,41.67889753792292,0 -6.103064125004501,41.67910175001653,0 -6.102731522599283,41.67926662827433,0 -6.102031781492236,41.67944084970166,0 -6.100798513446989,41.67986469590143,0 -6.100127928132232,41.68013390259474,0 -6.09960837201888,41.68036990073716,0 -6.099395055186681,41.68046722474785,0 -6.099229544465613,41.68052175842446,0 -6.098926709789677,41.68059849151604,0 -6.098362242363836,41.6807368879054,0 -6.09808376233432,41.6808186148655,0 -6.097610596253883,41.68104639531845,0 -6.097384437948661,41.68114138811555,0 -6.096913921941524,41.68122733511101,0 -6.096617541773906,41.68127941953107,0 -6.096347462000671,41.6814316929262,0 -6.09614720191029,41.68155208201996,0 -6.095815888869707,41.6816291188016,0 -6.095436022366005,41.68169905445215,0 -6.095090059312489,41.68175714259168,0 -6.094739280881537,41.6818622110391,0 -6.094498437641266,41.68198328017265,0 -6.093940226025865,41.68249065223979,0 -6.093462866508841,41.682774742763,0 -6.093158270567121,41.68282877157199,0 -6.092525802266788,41.68286606893078,0 -6.091299925660633,41.68304880085811,0 -6.090866513787302,41.6830610714385,0 -6.089936045933387,41.68296462494826,0 -6.08947863034527,41.68290659640072,0 -6.08924405080102,41.68279561468665,0 -6.08891912584345,41.68252784716184,0 -6.088668506422035,41.68221279519707,0 -6.088531007160118,41.68185410582623,0 -6.088570325713781,41.68137860873523,0 -6.088644502132499,41.68113383015409,0 -6.088756613129124,41.68100374774747,0 -6.088940359766062,41.6809028427849,0 -6.089123586917772,41.68082284358919,0 -6.08920625185137,41.68073912163527,0 -6.08924313903236,41.68062635818163,0 -6.089222448943068,41.68051818982298,0 -6.089203080554485,41.68045041906026,0 -6.089176223553462,41.68037605719221,0 -6.089176087720867,41.68028701148115,0 -6.089203987814562,41.68022569530421,0 -6.089229709372956,41.68016958273974,0 -6.089226587781161,41.68009918895964,0 -6.089170528373964,41.68004212149528,0 -6.089058261079603,41.68001160600709,0 -6.088780640582572,41.68001416517549,0 -6.088422818576737,41.68002703983216,0 -6.08829847341373,41.68002337133387,0 -6.088155853288431,41.67998071500813,0 -6.088019279311723,41.67988075389059,0 -6.087941969717416,41.67978242345661,0 -6.087937898437923,41.67969403371325,0 -6.087963153490312,41.6796558159517,0 -6.088005505934714,41.67961356886346,0 -6.088172146676279,41.6794824490398,0 -6.08836904937,41.67935044909894,0 -6.088554643632448,41.67923291659064,0 -6.088750565286488,41.67911410675151,0 -6.088834848154713,41.67903650648614,0 -6.088868304669902,41.67895185702651,0 -6.088852605504453,41.67886626745621,0 -6.08878037649427,41.67882614453217,0 -6.088647941481175,41.67884676236521,0 -6.088428820616762,41.67892811961763,0 -6.088104527131336,41.6790101189385,0 -6.087807832526202,41.67907316939474,0 -6.087563086381492,41.67910305389653,0 -6.087380164019534,41.67908483388255,0 -6.087229480637752,41.6790360499242,0 -6.087148558047573,41.67895330399226,0 -6.087028381603586,41.6787856142105,0 -6.08698309571272,41.67870156268041,0 -6.086957959449249,41.67854476478736,0 -6.086987608363802,41.6783611733284,0 -6.087036440296219,41.67826593488477,0 -6.087141391537098,41.67816457750698,0 -6.087201737908737,41.67810181548109,0 -6.087425273414303,41.67788454519786,0 -6.087546891799965,41.67771778898741,0 -6.087624611516827,41.67757826437185,0 -6.087700126140552,41.67746419225602,0 -6.087854466196268,41.67732775386722,0 -6.08793609951774,41.67723163248483,0 -6.087969580063637,41.67711722031139,0 -6.088518501621264,41.67613559372097,0 -6.08888962945322,41.67547411875621,0 -6.088997319534153,41.67532190389397,0 -6.089124519403341,41.67516863159921,0 -6.08950040989974,41.67482856746459,0 -6.089735229746717,41.67462479540967,0 -6.089864939833309,41.67445153647915,0 -6.090041661309201,41.67430593582296,0 -6.090187620028572,41.67417812188563,0 -6.090327351192752,41.67389270690919,0 -6.090389245399481,41.67366485165984,0 -6.090456717681782,41.67321560803308,0 -6.090508294905824,41.67295251909621,0 -6.090535105269294,41.67287942464424,0 -6.090455576128311,41.67282843260669,0 -6.090267118361109,41.67280506282063,0 -6.090120852859458,41.67282317677447,0 -6.090003775073413,41.67278969334403,0 -6.089614073757805,41.67252147373028,0 -6.089425791855856,41.67237243888106,0 -6.089221162579273,41.67228340308645,0 -6.088657858180816,41.67205377522114,0 -6.088453765872063,41.67194035993914,0 -6.088229502161421,41.671778270468,0 -6.088051541643029,41.67156853543588,0 -6.087929879203636,41.67132505936776,0 -6.087788250031836,41.67083436170274,0 -6.087433340662672,41.67029251308151,0 -6.087107359426688,41.66997734204135,0 -6.08680978351023,41.66970110303861,0 -6.086576669623166,41.66951356712827,0 -6.086264985809048,41.66936022652114,0 -6.085846516768688,41.66921553575749,0 -6.085481436342808,41.66910997893033,0 -6.083902088888601,41.66875312586606,0 -6.083652829757495,41.66865488103841,0 -6.083408747457924,41.66851917202733,0 -6.082427445711293,41.66783247816927,0 -6.082421138802237,41.66775895329548,0 -6.082503004030414,41.66764625618475,0 -6.083163355915257,41.66692292885713,0 -6.083983988893429,41.66603468083641,0 -6.084527998496964,41.66552416745802,0 -6.085343754045995,41.6646651951497,0 -6.086990402574885,41.66333519110858,0 -6.088483781006071,41.66221187204343,0 -6.08907622104217,41.66150811943594,0 -6.089688523284869,41.66075299740937,0 -6.08995495183583,41.66043696084714,0 -6.089999809822295,41.66033489962523,0 -6.089966074627478,41.66025326758768,0 -6.089337057570108,41.65997820970603,0 -6.089012668050141,41.65983188688311,0 -6.08847020851464,41.6596815021623,0 -6.088192319164959,41.65960032424757,0 -6.087391835224556,41.65935667384825,0 -6.086935109355512,41.65919087500165,0 -6.08637078583196,41.65886125970602,0 -6.085905140418063,41.65859406878282,0 -6.085601456911811,41.65834414632099,0 -6.085352419872181,41.65805129926955,0 -6.085121484067252,41.65758558191092,0 -6.084845878517959,41.6572080988935,0 -6.083774665527678,41.65602992799841,0 -6.083436863469372,41.65567492860847,0 -6.083160130899243,41.6554074133415,0 -6.082792359016666,41.65475332376053,0 -6.082524356446919,41.65413574453795,0 -6.082492701496738,41.65401120292783,0 -6.082350462821959,41.65398807378468,0 -6.082153339852391,41.6541045783507,0 -6.081874986091301,41.65425205194658,0 -6.081623530000602,41.65435196755067,0 -6.081327387120503,41.65439111424532,0 -6.080907632461542,41.65432542311709,0 -6.079814290389534,41.65405976923785,0 -6.079244870846416,41.65382652226506,0 -6.078898936332152,41.65353312628893,0 -6.078339030515982,41.6527584759753,0 -6.078208903800788,41.65271675060476,0 -6.07765730696527,41.65282063178097,0 -6.077059265122113,41.6527818168879,0 -6.076611713667047,41.65262761562924,0 -6.076295612184618,41.6524066473168,0 -6.076065729133453,41.65228529427111,0 -6.075728939027609,41.65229791004773,0 -6.075358906559253,41.65240925811654,0 -6.074860431612324,41.65246827509258,0 -6.074520612499095,41.65247662509287,0 -6.074280640285385,41.65256526290887,0 -6.074064134787345,41.65271323777567,0 -6.072855017687772,41.65318643994961,0 -6.072494966468712,41.65331724090742,0 -6.072133631557531,41.65334176038873,0 -6.071216423204272,41.65315403884569,0 -6.070679419253835,41.65306926780605,0 -6.070372331321112,41.65299755360196,0 -6.070199242575106,41.65289492842241,0 -6.069939787985224,41.65269603452022,0 -6.069510301116324,41.65250771098462,0 -6.069186089937151,41.65243872655828,0 -6.068830131779781,41.6524193517732,0 -6.068411416425212,41.65243255296726,0 -6.068056605934094,41.65249702421545,0 -6.067646336747721,41.65257259022287,0 -6.067152591584135,41.65268175899959,0 -6.066587766334395,41.65279495119008,0 -6.066436509508421,41.65289266480407,0 -6.066318876474197,41.6531188069641,0 -6.066269367369461,41.6533273554046,0 -6.066322529290157,41.65350467532201,0 -6.066477215276207,41.65376681883335,0 -6.066684011887102,41.6540639000163,0 -6.066765549850594,41.6543813125366,0 -6.066775308497794,41.65479145482846,0 -6.066790523029878,41.65512440324801,0 -6.066669233096171,41.65550590352061,0 -6.066568913610303,41.65574150933199,0 -6.066326799418178,41.65600547094093,0 -6.066233696871076,41.65640744865189,0 -6.066157451526369,41.65672404419393,0 -6.066059839309509,41.65693732657212,0 -6.065752074849802,41.65718575725029,0 -6.065344353217645,41.6577193664761,0 -6.065200159657613,41.65800566673253,0 -6.065135982730141,41.65823831281698,0 -6.065073153772104,41.65843977564106,0 -6.064941966808832,41.6586660605487,0 -6.064716417393628,41.658956553604,0 -6.064651027407741,41.65909111949313,0 -6.064775148636246,41.65966055550798,0 -6.064169623599245,41.65935516604917,0 -6.064082492350918,41.65935097522267,0 -6.063768036128828,41.65959516819315,0 -6.063015932817067,41.65978666770894,0 -6.062622707119953,41.65983973005322,0 -6.062407286908944,41.65980676476358,0 -6.062199287877146,41.65975967561094,0 -6.062010127685815,41.65979582479189,0 -6.060789800344598,41.66030227960718,0 -6.060313743299103,41.66034981290351,0 -6.059804928218804,41.66035175476283,0 -6.059314443980539,41.660233480046,0 -6.058451257521039,41.66005699727178,0 -6.057891750991442,41.65995392494303,0 -6.057222016537996,41.65976790536287,0 -6.056779840790101,41.66083950364954,0 -6.056500334087087,41.66157455664362,0 -6.055753362250952,41.66367702413588,0 -6.055518996176774,41.66422868608636,0 -6.055345694201194,41.6644649322832,0 -6.055072560357951,41.66469399360507,0 -6.054753557079808,41.66478916442625,0 -6.054359453605064,41.66474793422752,0 -6.054109317101164,41.66450785401597,0 -6.053935489748702,41.66423839024111,0 -6.05384972184827,41.66416885336779,0 -6.05342730551172,41.66420837532803,0 -6.052839702700822,41.66428192608266,0 -6.050829620448076,41.66469600911962,0 -6.050539585140325,41.66489246433775,0 -6.050271392559302,41.66509072706997,0 -6.050078177408543,41.66546372779525,0 -6.049888989446327,41.66575514377534,0 -6.049304877262656,41.66624239696741,0 -6.049202936135086,41.66636427746034,0 -6.049241091265562,41.66653801686962,0 -6.049186008799204,41.66664542894706,0 -6.048977977641194,41.66671257146569,0 -6.048627929051369,41.66681799661381,0 -6.048318571910665,41.66695990448024,0 -6.048171100560193,41.6670800705525,0 -6.048126366894691,41.66724129161723,0 -6.047991262463759,41.66773322938865,0 -6.047923893409664,41.66805543871729,0 -6.047837282451159,41.66816036320726,0 -6.047604576860161,41.66830838861887,0 -6.046920016385745,41.66886805101282,0 -6.046727710032125,41.66911287526047,0 -6.046417489213231,41.66938678905022,0 -6.046127463420729,41.66963972498891,0 -6.045936805762038,41.66988420222147,0 -6.04577257559758,41.66999205933434,0 -6.045531644056032,41.67008056916897,0 -6.04531417946205,41.67013029185333,0 -6.045036129996029,41.67030263384067,0 -6.044388312608735,41.67067363149241,0 -6.044118943692682,41.67075814955802,0 -6.043750309131296,41.6708031630507,0 -6.043407222158544,41.67088630503731,0 -6.043276046320223,41.67088142019635,0 -6.04315075341739,41.67094762867178,0 -6.043081107930164,41.67108334604674,0 -6.043056008686119,41.6712050674366,0 -6.042954203762618,41.67126550615211,0 -6.042826995514703,41.67128623175933,0 -6.042616331457555,41.6713240457408,0 -6.042477368568878,41.67135602302875,0 -6.042156831477739,41.67144367475393,0 -6.041955304886503,41.67155278639848,0 -6.041781511235963,41.67170987398463,0 -6.041636595813081,41.67191671430293,0 -6.04147254798436,41.67207047417723,0 -6.041314849397511,41.67212305126424,0 -6.04106621611214,41.67215761021542,0 -6.040690784740949,41.67220686666626,0 -6.040364969462383,41.67230404824846,0 -6.040188362499799,41.6724469825617,0 -6.039998023905213,41.67259713540586,0 -6.03984737134068,41.67263049480315,0 -6.039756866468823,41.67255866290845,0 -6.039660116518152,41.67243065404551,0 -6.03935010079454,41.67217574599351,0 -6.03863759073066,41.67179576338676,0 -6.037986251145733,41.67131053960451,0 -6.037545886602972,41.67087911259212,0 -6.038644714972497,41.66971746585535,0 -6.038775597195386,41.66838790581935,0 -6.038913912651155,41.66606968375304,0 -6.038982868354203,41.66533614957603,0 -6.038977357687429,41.66523460540862,0 -6.03700053236921,41.66469770948385,0 -6.035731190525835,41.66434790589472,0 -6.034322071733214,41.66395333826026,0 -6.031455275520355,41.66317627074761,0 -6.029498621904894,41.66263435426392,0 -6.028367617861744,41.66233645338625,0 -6.028184114165656,41.6623074730889,0 -6.028060899684697,41.66236747182346,0 -6.028065094408966,41.66236748396108,0 -6.026114824067074,41.66469335865663,0 -6.022948691521614,41.66333539467226,0 -6.019020972786721,41.66165802895068,0 -6.016842054492857,41.66070563647011,0 -6.018342804107207,41.65692447316039,0 -6.01833618524403,41.65686618598694,0 -6.0181736903749,41.65683494246721,0 -6.017590011027835,41.65688177537648,0 -6.015194592912451,41.65614855999912,0 -6.014967823795626,41.6561193970423,0 -6.014330501525698,41.65611391173857,0 -6.01318556022397,41.65605968438965,0 -6.013079071594176,41.65602848047423,0 -6.014100374655658,41.65272054667709,0 -6.014059750596611,41.65267324925751,0 -6.012238261410529,41.6525280053661,0 -6.011403448504415,41.65248178567023,0 -6.010365867016447,41.6524452453348,0 -6.010015197225663,41.65246526076482,0 -6.009571833125309,41.65257967150462,0 -6.009285538091818,41.65265117488594,0 -6.009107158634933,41.65267419601486,0 -6.008001792666766,41.65254657739263,0 -6.007032084470145,41.65245629166886,0 -6.005721844053692,41.65230368766651,0 -6.004458867067508,41.65213958664091,0 -6.003760658609948,41.6520589093176,0 -6.003025496826658,41.65201712994194,0 -6.001888710095161,41.65201128021953,0 -6.001705161061488,41.65204546924757,0 -6.001572227341946,41.65209136123978,0 -6.001352522978384,41.65244128456387,0 -6.001203716239592,41.65246441969583,0 -6.001075693348234,41.65253863734674,0 -6.000916431113135,41.65263749455392,0 -6.000697237239892,41.65262135609713,0 -6.000552335812995,41.65253741448283,0 -6.000558895988598,41.65241568172768,0 -6.000324594900956,41.65216545841044,0 -6.000284307207076,41.65164974107091,0 -6.000212525637907,41.65154546333541,0 -6.000256688947716,41.65142817859978,0 -6.000280653792844,41.65084890613095,0 -6.000098032902186,41.65051861671284,0 -6.000066697550212,41.65035595415404,0 -6.000092290030016,41.65008796704706,0 -6.000078155225211,41.65027264740626,0 -6.000098688849331,41.64993036392517,0 -6.00009932137882,41.64980467806691,0 -6.000060308681397,41.64975345007069,0 -5.99988627485282,41.64980857018444,0 -5.9997117977543,41.64988269905473,0 -5.999601797470868,41.65000622192662,0 -5.999381253519087,41.65016572911983,0 -5.998876407518463,41.6504788510172,0 -5.998516784445962,41.65071338228083,0 -5.998336197707169,41.65084139732998,0 -5.998173369125031,41.65098263156676,0 -5.997984528827772,41.65098677603623,0 -5.997776802590241,41.65092266899149,0 -5.997689289393232,41.65063266301047,0 -5.997583845709587,41.65060304342137,0 -5.997404331010792,41.65060420490759,0
</coordinates>
</LineString>
</Placemark>
</Document>
</kml>
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom">
<Document>
<name>Ruta La Raya.kmz</name>
<StyleMap id="msn_ylw-pushpin5">
<Pair>
<key>normal</key>
<styleUrl>#sn_ylw-pushpin6</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#sh_ylw-pushpin5</styleUrl>
</Pair>
</StyleMap>
<Style id="sn_ylw-pushpin6">
<IconStyle>
<scale>1.1</scale>
<Icon>
<href>http://maps.google.com/mapfiles/kml/pushpin/ylw-pushpin.png</href>
</Icon>
<hotSpot x="20" y="2" xunits="pixels" yunits="pixels"/>
</IconStyle>
<LineStyle>
<color>ff000055</color>
<width>2</width>
</LineStyle>
</Style>
<Style id="sh_ylw-pushpin5">
<IconStyle>
<scale>1.3</scale>
<Icon>
<href>http://maps.google.com/mapfiles/kml/pushpin/ylw-pushpin.png</href>
</Icon>
<hotSpot x="20" y="2" xunits="pixels" yunits="pixels"/>
</IconStyle>
<LineStyle>
<color>ff000055</color>
<width>2</width>
</LineStyle>
</Style>
<Placemark>
<name>RUTA &quot;LA RAYA&quot;</name>
<LookAt>
<longitude>-6.450940982376768</longitude>
<latitude>41.69619682306673</latitude>
<altitude>0</altitude>
<heading>0.09146158515823219</heading>
<tilt>19.71679431806726</tilt>
<range>15621.49454616227</range>
<gx:altitudeMode>relativeToSeaFloor</gx:altitudeMode>
</LookAt>
<styleUrl>#msn_ylw-pushpin5</styleUrl>
<LineString>
<tessellate>1</tessellate>
<coordinates>
-6.477220580854988,41.75385290753513,0 -6.476919652350272,41.75421900816203,0 -6.476798277825932,41.75429337467497,0 -6.476521531962845,41.75435708805146,0 -6.475898101094376,41.75448468615068,0 -6.475380639031737,41.75459724059366,0 -6.474836608610795,41.75473142786747,0 -6.474711994415152,41.75498655755651,0 -6.474639596229126,41.7551856045185,0 -6.474675836154956,41.7552459234055,0 -6.474736164123876,41.75528219821479,0 -6.476257364015218,41.75583163233078,0 -6.480259144323836,41.75723004428177,0 -6.483436155045985,41.75836261576648,0 -6.48423740930143,41.75862501013388,0 -6.484936127559713,41.75879993509627,0 -6.487998114838462,41.75943734336882,0 -6.489407438394828,41.75978434513289,0 -6.491248100479389,41.76023735001033,0 -6.491632444543644,41.76033579221129,0 -6.491948181546027,41.7603935079368,0 -6.492200695286244,41.76045775806716,0 -6.492546064463771,41.76073446159458,0 -6.492779136296005,41.76101066662947,0 -6.492934801323614,41.76118758186391,0 -6.493094872918083,41.76126071797179,0 -6.4936732778535,41.76124545061237,0 -6.494042942673975,41.76128643846096,0 -6.494569697670176,41.7613781097159,0 -6.494946259092,41.76148261721739,0 -6.495287329499318,41.76154883835172,0 -6.49545091870411,41.76152855848932,0 -6.495815532642142,41.76156194159949,0 -6.496139524719508,41.76159892600075,0 -6.496731353135713,41.76163342458369,0 -6.497066995891222,41.76162861156216,0 -6.497661706046413,41.76145632270212,0 -6.498089008047296,41.761312557655,0 -6.498695128444389,41.76122681474543,0 -6.499154887567622,41.76113089068118,0 -6.499431443518901,41.76102898862971,0 -6.499514201784632,41.76103644348736,0 -6.499855484727518,41.76130007254336,0 -6.499940157611952,41.76149625696098,0 -6.499933701687547,41.7616443346223,0 -6.499819323555482,41.76175932000961,0 -6.499440411697951,41.76205801049648,0 -6.498985988532074,41.76249500084026,0 -6.498750776639172,41.76280141702828,0 -6.49857405398661,41.76308312357933,0 -6.4984742609949,41.76381439267362,0 -6.498057359838313,41.76449148086589,0 -6.497967877277851,41.76458044651579,0 -6.497191874386626,41.76502244196342,0 -6.497188444759424,41.76507102348682,0 -6.49726297135383,41.76515312216831,0 -6.497405088792817,41.76523164764881,0 -6.497457386310654,41.76527577214772,0 -6.497455527591224,41.7653332244354,0 -6.497434527270492,41.76542089041611,0 -6.497283303982661,41.76615073741014,0 -6.497546321742452,41.76641219684683,0 -6.497892502768917,41.76673410560161,0 -6.497975107086843,41.76680922279828,0 -6.498336063011044,41.76700058476714,0 -6.498711866259783,41.76719600107361,0 -6.498933268757618,41.76734691053449,0 -6.499630799000914,41.76798818874217,0 -6.500551880721039,41.76870416787924,0 -6.500836279488295,41.7688382163022,0 -6.501392411203915,41.76901690735357,0 -6.502951902758927,41.76934013679254,0 -6.504295078218963,41.76963838883697,0 -6.505059458620007,41.76982271910359,0 -6.505615559213651,41.76997333484344,0 -6.505798663176863,41.77006201984988,0 -6.505978617722917,41.77018991502973,0 -6.506386721033483,41.77054871230118,0 -6.507247950749315,41.77128103477531,0 -6.507671864332272,41.77164839483281,0 -6.507762878885126,41.7717166132776,0 -6.508591300693088,41.77202135506165,0 -6.509485351684079,41.77237658778316,0 -6.510569928728663,41.77287133460414,0 -6.511710096235372,41.77318676572723,0 -6.512692290519636,41.77346337567153,0 -6.513742060252618,41.77404094448868,0 -6.514242757384363,41.77413144915413,0 -6.514484510487011,41.77416229049358,0 -6.514149292459174,41.77382245809773,0 -6.513956135984499,41.77362222662163,0 -6.513891258706309,41.77341106594182,0 -6.513808648864252,41.77286021499833,0 -6.513747938750006,41.77228762609197,0 -6.51361339862008,41.77154910659842,0 -6.513522349297348,41.77111005305225,0 -6.513373082479392,41.77081612603339,0 -6.513068540993543,41.77022161321354,0 -6.513028366065539,41.77000288737241,0 -6.513073242895101,41.76969707506595,0 -6.513108931575942,41.76954950732976,0 -6.513207593606938,41.76939959275978,0 -6.513641300632001,41.76889263307759,0 -6.51375527257971,41.76873935860934,0 -6.513862023319557,41.76866851929142,0 -6.513974437181607,41.76853123077352,0 -6.513995988859749,41.76825143275003,0 -6.513865196349307,41.76756087561495,0 -6.51383542936451,41.76724433845762,0 -6.51389149826766,41.76664556955242,0 -6.513856760156892,41.76639142515437,0 -6.513904404058366,41.76612959410675,0 -6.514003144676438,41.76593760574673,0 -6.514277670110324,41.76568253633275,0 -6.516193074055575,41.76443314001358,0 -6.516229049679565,41.76431890968873,0 -6.516071745285594,41.76385781651607,0 -6.515997872564764,41.76361764987363,0 -6.51590145191337,41.76344097361633,0 -6.515577117794509,41.7631408872196,0 -6.515093661821384,41.76275445971372,0 -6.514912403819696,41.7625938875401,0 -6.514845949456424,41.76240678326528,0 -6.514787453034787,41.76160589635,0 -6.514762677384556,41.7615187244274,0 -6.514994175440561,41.7614243354104,0 -6.515207343623287,41.76135735662007,0 -6.515304210780253,41.761279839944,0 -6.515523184418494,41.76088891862879,0 -6.515570979511267,41.7604022710671,0 -6.515671800229621,41.76018472805199,0 -6.515782411546137,41.759965222157,0 -6.515785335609988,41.75982900853894,0 -6.51563185130799,41.75953390859289,0 -6.51536932624899,41.7594186642736,0 -6.515212008723593,41.75930579430693,0 -6.51512276537736,41.7591674571115,0 -6.515142134858318,41.75882629452198,0 -6.51532212533735,41.75803826260975,0 -6.515543275650682,41.75752915159162,0 -6.515668445799597,41.7572789234349,0 -6.515831942247747,41.75706286313558,0 -6.516291428546407,41.75658619560111,0 -6.516511967317552,41.75631225622414,0 -6.516625418310722,41.7561912117976,0 -6.516746174628727,41.75599615726504,0 -6.516880680094692,41.75555517313212,0 -6.516946594854223,41.75523508917011,0 -6.516969615751211,41.75506026748819,0 -6.517076020473135,41.75475197207005,0 -6.517209314578398,41.7544791710586,0 -6.517550863883697,41.75324526264195,0 -6.517707580606405,41.75288886985169,0 -6.517754543722782,41.75270857846375,0 -6.518300742431993,41.75210888403153,0 -6.518818746335894,41.75160606864503,0 -6.519628000336734,41.75090764349763,0 -6.52112391496992,41.74948499553968,0 -6.522112711971757,41.74863350385763,0 -6.522271168124646,41.74851390047447,0 -6.522258078976391,41.74844212389383,0 -6.521882870525152,41.74784259834348,0 -6.521274280031931,41.7469268213821,0 -6.520650895309579,41.74593941177118,0 -6.520546401244598,41.74584966543776,0 -6.520384428119725,41.74585098591915,0 -6.520013873380322,41.74595050969151,0 -6.519657297918106,41.74606271979737,0 -6.519347086467958,41.7462086174372,0 -6.519073081693538,41.74641307419104,0 -6.518771077691862,41.74668549283958,0 -6.518512841842318,41.74702305174908,0 -6.518392899106674,41.74726379502919,0 -6.518235741214014,41.74777557489919,0 -6.51812003293062,41.74792688509582,0 -6.517885513652363,41.74805231382515,0 -6.517414856197873,41.74810033745127,0 -6.516905113730677,41.74807994564365,0 -6.516546445696204,41.74803420448819,0 -6.516007281974176,41.74787531714271,0 -6.5155382710852,41.7477711045694,0 -6.515229575405601,41.74770402557024,0 -6.515078234271716,41.74762379870503,0 -6.514993081992818,41.74753293604955,0 -6.514846167128584,41.74739552736361,0 -6.514731572125477,41.74727947852057,0 -6.514552912980529,41.74717705260723,0 -6.514508271390024,41.7471044189143,0 -6.514534449286465,41.74702978086718,0 -6.51493560711646,41.74667763255921,0 -6.514989064973181,41.74658484551736,0 -6.5150592618408,41.7461279558304,0 -6.515095538394602,41.74592733903603,0 -6.515467624358221,41.74531671593802,0 -6.515522721922283,41.74507326148299,0 -6.515555011713663,41.7448070621824,0 -6.515623979537365,41.74454237206253,0 -6.51587463601344,41.74389724314953,0 -6.515980231813124,41.74359451340466,0 -6.516039116426949,41.74329234576867,0 -6.516099391391429,41.7431271734572,0 -6.516180466087556,41.74297056184561,0 -6.516312532103379,41.74275462305894,0 -6.516456674445431,41.74254771629018,0 -6.516629383803377,41.74234663070018,0 -6.516719673077674,41.74231986693737,0 -6.516717919771553,41.74213059889776,0 -6.516746616654872,41.74192653054073,0 -6.516813788502067,41.74169560742432,0 -6.516803387587888,41.74131400047403,0 -6.516790089887667,41.74124728889639,0 -6.516883832265807,41.74123839037328,0 -6.517468739345547,41.74131951789787,0 -6.517806987796865,41.74135426914538,0 -6.517860511621078,41.74075009734655,0 -6.517584971774778,41.7407511327786,0 -6.51717151733807,41.74081688485801,0 -6.517043612070563,41.74050339621437,0 -6.516995497239474,41.74034726565493,0 -6.517051149234256,41.73993941813642,0 -6.517186363421513,41.73983122770953,0 -6.517601049877657,41.73962678136696,0 -6.517857538061249,41.73911990945255,0 -6.517999704843196,41.73846480385367,0 -6.518059008268706,41.73822339161017,0 -6.518246265803864,41.73758464370184,0 -6.518435553062202,41.73734261836785,0 -6.518916688070746,41.73689372555984,0 -6.518923390164877,41.73601267671095,0 -6.518939424089244,41.73562453445075,0 -6.518960192135976,41.73539929046718,0 -6.518857093883641,41.73502420059703,0 -6.518720791633774,41.73470475583343,0 -6.518477911559042,41.73423432767554,0 -6.518405161991892,41.73407093251207,0 -6.518280731506966,41.73338525494674,0 -6.518279453203912,41.73333538938131,0 -6.518485577486025,41.73326402457018,0 -6.518672176305631,41.73315436434943,0 -6.519198778569816,41.73303535435552,0 -6.519198105415823,41.73302767372277,0 -6.51996516295466,41.73267966237833,0 -6.520331965862817,41.73240627141367,0 -6.520281862714816,41.73244517731867,0 -6.521233748106675,41.73157754379205,0 -6.521947530273407,41.73094740842611,0 -6.522799385943861,41.73014350147218,0 -6.523751171038729,41.72931596731907,0 -6.524897941584312,41.72829108632059,0 -6.525270989772542,41.72794923376974,0 -6.526049410006864,41.72726090623738,0 -6.52613228066401,41.72726891589833,0 -6.527310388171289,41.72849508290582,0 -6.529260483129433,41.73040820864814,0 -6.530555963924681,41.73163799622829,0 -6.530694960474421,41.73157835023183,0 -6.530888485084168,41.73126507427018,0 -6.531129118586683,41.73062502143162,0 -6.531343676451757,41.72998915236082,0 -6.531501027041795,41.72953049640853,0 -6.531594318614342,41.72929386815009,0 -6.531999072485871,41.72869408395884,0 -6.532286978690568,41.72825538355001,0 -6.532405595520716,41.72814249301359,0 -6.532901475303103,41.72822816128172,0 -6.533243338973914,41.72826858277461,0 -6.533503692297844,41.72833933168069,0 -6.533848465422953,41.72849774133456,0 -6.53411808961078,41.72864663231476,0 -6.534310850248772,41.72886908146332,0 -6.534789613203103,41.72949268338258,0 -6.5348689970726,41.72963093126052,0 -6.534907114936556,41.7297899898605,0 -6.534927789810459,41.72993167284132,0 -6.535020752521867,41.73008709741384,0 -6.535172521449752,41.73033131003848,0 -6.535237777488435,41.7305288719494,0 -6.535300683850364,41.73077453044461,0 -6.535367257197979,41.73102305088207,0 -6.535520152422521,41.73134582946914,0 -6.535657351528807,41.73161834629591,0 -6.535813426560355,41.73179223653535,0 -6.5360417550759,41.73195984585398,0 -6.5362933486052,41.73206379454313,0 -6.536942138202127,41.73225572615221,0 -6.537410448557022,41.73237237840693,0 -6.537752215571961,41.73245028811825,0 -6.538137875251023,41.73250936784286,0 -6.538414228909049,41.73256817293829,0 -6.538520115457009,41.73263309795936,0 -6.538618490194335,41.73272033259534,0 -6.538751970811485,41.73295351403733,0 -6.540020753952676,41.73332563347089,0 -6.541364652598633,41.73366154729843,0 -6.541639745721335,41.7337080147567,0 -6.541994834149985,41.73384947260591,0 -6.54270908266152,41.73393583508653,0 -6.543245623168083,41.73397818359225,0 -6.543404824799631,41.73393863010359,0 -6.543969186439402,41.73377684276084,0 -6.544247865741407,41.7337455269967,0 -6.544637540329804,41.73374620970921,0 -6.544894829682598,41.73376905714562,0 -6.545369123837728,41.73390791220739,0 -6.545712068463216,41.73404036416073,0 -6.545941089178477,41.73406821767988,0 -6.546255994304334,41.73407732431304,0 -6.546539182573597,41.73404123377978,0 -6.546664406308189,41.73408853985531,0 -6.546733982747719,41.73417668146308,0 -6.546832517048458,41.73420404811182,0 -6.546901940049516,41.73417467225141,0 -6.546900345269847,41.73409766602564,0 -6.54682503155713,41.73396947804104,0 -6.546742164782998,41.7339012781047,0 -6.546752375213659,41.73389275282591,0 -6.546784903909286,41.73388237791842,0 -6.54722814192202,41.73391116830607,0 -6.547879557174419,41.73370017334291,0 -6.548103687845302,41.73361873399355,0 -6.5483367963505,41.73351456796242,0 -6.548743521139748,41.73331640779107,0 -6.549228546063553,41.73307321799037,0 -6.54953768228917,41.73284673015138,0 -6.549771967739861,41.73269371109409,0 -6.550047054954008,41.73252406429953,0 -6.550403580994628,41.73221381050914,0 -6.55076532273509,41.7318685288767,0 -6.550994325182716,41.73164625747023,0 -6.551266652782786,41.73147469393948,0 -6.551736539884434,41.73127980446417,0 -6.552119948034722,41.73110251572764,0 -6.552078645602219,41.73103003243213,0 -6.551638493234425,41.73117396113359,0 -6.551221945080395,41.73137149494156,0 -6.550958166418313,41.73148874839315,0 -6.55074808381369,41.73158239381982,0 -6.550429547066181,41.73170134318395,0 -6.550181138381529,41.73181627922513,0 -6.550051891779917,41.7316032130876,0 -6.550308521158556,41.73132439248456,0 -6.55048706833349,41.73118268281171,0 -6.55063059319083,41.73107223549214,0 -6.550794545096461,41.73095784679591,0 -6.550911629983447,41.73090651187764,0 -6.550996985445695,41.73081380476754,0 -6.551037204703599,41.73075373842246,0 -6.55115459145244,41.73061084672573,0 -6.551323224997798,41.73035605022371,0 -6.551354261141204,41.7301685105464,0 -6.55134113268648,41.73005614407404,0 -6.551093856310185,41.72977188059591,0 -6.550932931203215,41.72964384056049,0 -6.550798785064358,41.72957238091973,0 -6.550681328394807,41.72953556992633,0 -6.550585842579332,41.72953763739442,0 -6.550533919752105,41.72959765509466,0 -6.550570042355403,41.72967192781844,0 -6.550703297496185,41.72980033148868,0 -6.550724633868194,41.72987659221241,0 -6.550655105464561,41.72990367461348,0 -6.55048751081659,41.72984233386536,0 -6.550210362089003,41.72977284296119,0 -6.549772409647571,41.7297448748868,0 -6.549237263801704,41.72973878851258,0 -6.54854038007314,41.72984303384037,0 -6.548390618474958,41.72981329006806,0 -6.548448996476041,41.72967539492767,0 -6.548481377254609,41.72939878378105,0 -6.548486468983818,41.72919304531533,0 -6.548482297806883,41.72918150836986,0 -6.548481880124626,41.72917317364076,0 -6.548396269044759,41.72898364190328,0 -6.548289843775472,41.72878084683954,0 -6.548144147111988,41.72856081619193,0 -6.547881729996211,41.72799867179965,0 -6.547636534819269,41.72760649715099,0 -6.547519688979855,41.72741137561656,0 -6.547298497663632,41.72703829209677,0 -6.547077982648374,41.72667382277404,0 -6.546905839089886,41.72634928492029,0 -6.546837212164594,41.72618372017646,0 -6.546852599090976,41.72599328745218,0 -6.546832013774555,41.72593476525515,0 -6.546684012080695,41.72583726309527,0 -6.546585888274934,41.72574074302268,0 -6.546457649929671,41.72561701728822,0 -6.546356401702569,41.72549536883565,0 -6.546294385527633,41.72528364044634,0 -6.546274909454469,41.7251266001304,0 -6.54625839982084,41.72502541060196,0 -6.546135853916884,41.72489763454991,0 -6.545999189562042,41.72484597302648,0 -6.545827638735048,41.7248584436313,0 -6.545655329173359,41.72497190973958,0 -6.54543915174602,41.72507968166111,0 -6.544900542844401,41.72524008947168,0 -6.544650643788232,41.72530520406873,0 -6.544499645034522,41.72531023849244,0 -6.544424167827997,41.72525391858984,0 -6.544394375600062,41.72512809746915,0 -6.544400817036816,41.72498610363322,0 -6.544375030520704,41.72475079580756,0 -6.544201454825896,41.72429879993175,0 -6.543934274918458,41.72395219896153,0 -6.543754228605899,41.72378604656627,0 -6.543122917098828,41.72315698360439,0 -6.54273838275664,41.72283277611263,0 -6.542524426199549,41.72258414205528,0 -6.542282907188469,41.72243138026284,0 -6.542100770258131,41.72238666672347,0 -6.541875863969228,41.72237338800254,0 -6.541789202910588,41.7220411545505,0 -6.541817067028721,41.72195360822231,0 -6.542231037630019,41.72152524712308,0 -6.542331243594905,41.72141718152965,0 -6.542342385951053,41.72132643624259,0 -6.542315860894882,41.7212021507774,0 -6.542178273189393,41.72078831765884,0 -6.542091373365926,41.72056740350658,0 -6.541903994172545,41.7203476409512,0 -6.54158956801949,41.72008939118491,0 -6.541501071889156,41.71998719138431,0 -6.541494720326111,41.71987463979745,0 -6.5415498321574,41.71974987627147,0 -6.541698547884154,41.7195108010288,0 -6.541697797836209,41.71945515940424,0 -6.541617089038843,41.71937742149206,0 -6.541610449215153,41.71937745824692,0 -6.541359319918275,41.71926513042288,0 -6.54099124653809,41.71912245490109,0 -6.54090681124854,41.71908421358965,0 -6.540656875471456,41.71881112641585,0 -6.540363793486515,41.71834695983434,0 -6.540217206945488,41.71806673098966,0 -6.540168342544764,41.71785654824108,0 -6.540155742926206,41.71765462413091,0 -6.540077020316054,41.71752192601989,0 -6.539755891630651,41.71720519940327,0 -6.539595266578702,41.71709271929785,0 -6.539477248069677,41.71703948680826,0 -6.539352397324204,41.71701078725671,0 -6.53928490223047,41.71697247102119,0 -6.539357487989733,41.71692556780675,0 -6.53952200148445,41.71688742468362,0 -6.539705823302597,41.71689011968696,0 -6.539951662734889,41.71694863366105,0 -6.540181402966548,41.71704024784457,0 -6.540247369686753,41.71707014701291,0 -6.540227408641637,41.71700069984559,0 -6.540051954067147,41.71674281657285,0 -6.539842841828143,41.71663252707608,0 -6.539486974814635,41.71645494601669,0 -6.539232222410264,41.71629144243952,0 -6.539070956833571,41.7162191896529,0 -6.538940787191367,41.71618357584492,0 -6.538624402159982,41.71618472736245,0 -6.538370998491194,41.71619400430493,0 -6.538295982862385,41.71615253468665,0 -6.538176622181247,41.71617439043594,0 -6.538019388831886,41.71606745029894,0 -6.537917259939004,41.71596904955749,0 -6.537709089105532,41.71586824685162,0 -6.537521033533827,41.71579208767408,0 -6.537083329747771,41.7156527361814,0 -6.536861447741583,41.71555541526707,0 -6.536708997980908,41.71551127633649,0 -6.536441313154033,41.71546368817853,0 -6.536098976383512,41.71545428535993,0 -6.535842315075685,41.71544092859291,0 -6.535543514222615,41.71533858280332,0 -6.534868711373326,41.71511797154484,0 -6.534691001418205,41.71508333528302,0 -6.534352556734656,41.71501930148945,0 -6.534088331308288,41.71498004357658,0 -6.533930929184622,41.71501576198754,0 -6.533726476732435,41.71498811348235,0 -6.533552128565071,41.71496469072037,0 -6.533190777985302,41.71498254510033,0 -6.532766234101205,41.71500567587961,0 -6.532504796627805,41.71501401227839,0 -6.532257269378148,41.71498915375864,0 -6.532095129098446,41.71497460751029,0 -6.531896138606261,41.71497377499462,0 -6.531692445793304,41.71502365372606,0 -6.531375337107434,41.71520189197056,0 -6.530996539612533,41.71542605458933,0 -6.530654189365812,41.71573616165912,0 -6.530452107102349,41.71591476337996,0 -6.530302617957007,41.71617331426519,0 -6.5302192797271,41.71626534760056,0 -6.529962843712578,41.71632957548468,0 -6.529592056433517,41.71628876701048,0 -6.529214142729836,41.71621970129275,0 -6.52899393679384,41.71617385466512,0 -6.528538309439105,41.71596145045031,0 -6.528303386349933,41.71588380363247,0 -6.528029222653827,41.71581546430294,0 -6.527798375690413,41.71576778853434,0 -6.527781168868605,41.71576701460651,0 -6.527449556894714,41.71570953080077,0 -6.526992521853032,41.71566043820832,0 -6.526424917601991,41.71557004562062,0 -6.526116465115649,41.71555755911204,0 -6.525786385470063,41.71556697716471,0 -6.525521934649431,41.71553992050668,0 -6.525250251080159,41.71549303245502,0 -6.52476472616108,41.71536306850342,0 -6.524490828995242,41.71528115277273,0 -6.52422691285526,41.71515042549714,0 -6.523991456437167,41.71501344873089,0 -6.523847383012137,41.71494994057861,0 -6.523708715783277,41.71494218785375,0 -6.523562137808049,41.71496267007927,0 -6.523342106530992,41.71504365969329,0 -6.523273782570752,41.71504489747704,0 -6.523281337352602,41.7149911320708,0 -6.523414356016946,41.71485775977103,0 -6.52420867412923,41.71429474036582,0 -6.524667964706121,41.71399371148736,0 -6.524962475786724,41.71372014606256,0 -6.525127158446024,41.71349267921766,0 -6.525187397255564,41.71334334919229,0 -6.525226652483822,41.71324736778055,0 -6.525480571766752,41.71324503214249,0 -6.525745218788629,41.71323269785025,0 -6.526117376484489,41.71320742827662,0 -6.527072329481118,41.71314956843929,0 -6.52743484753965,41.71312506904641,0 -6.527453575292829,41.71311984662418,0 -6.527474162252366,41.71310349029879,0 -6.527487843565698,41.71309262055302,0 -6.527773517797399,41.71305811711741,0 -6.528485999584617,41.7127712672071,0 -6.529036294097725,41.71252449516442,0 -6.529627417661042,41.71233116484719,0 -6.530173726540097,41.71224699086343,0 -6.530680781922959,41.71223917737848,0 -6.531274117453116,41.71233600716082,0 -6.532061277815818,41.71248914283176,0 -6.532587764560999,41.71259470976636,0 -6.532988753856227,41.7126380669063,0 -6.533685428441918,41.71269188670352,0 -6.53430844422785,41.71266418640082,0 -6.534981075944444,41.71252185764293,0 -6.535593195422549,41.71254626401493,0 -6.53559516501311,41.71243749772323,0 -6.535485245366914,41.7123112402591,0 -6.535324963776104,41.7121776472359,0 -6.534888101674641,41.71203631784171,0 -6.53431456655956,41.71178615789288,0 -6.533827162708422,41.71159867605847,0 -6.533553963409058,41.7114534788602,0 -6.533389761053845,41.71133695556275,0 -6.533251458237096,41.71120994847815,0 -6.533120309060717,41.71113692877795,0 -6.533023818721758,41.711154533137,0 -6.53299824543484,41.71122751303116,0 -6.532952180389092,41.71139218733423,0 -6.532836028145469,41.71147787327421,0 -6.532734337473077,41.71146561674721,0 -6.532527709665382,41.71127486582762,0 -6.532158784099286,41.71097749578264,0 -6.531637514686941,41.71062610668785,0 -6.53117957378761,41.71033709608236,0 -6.530953009341416,41.71027211998521,0 -6.530759783153476,41.71025642177904,0 -6.530597149235703,41.71033377962195,0 -6.53052800468248,41.71040436247945,0 -6.530269624699361,41.71046344291128,0 -6.529953791394142,41.71049065918198,0 -6.529798721006362,41.71046447553427,0 -6.529723679146625,41.71037506409283,0 -6.529737094735815,41.71028548632655,0 -6.529779472544117,41.71019357408273,0 -6.52990397060192,41.71010121337375,0 -6.530026796154069,41.70991171373125,0 -6.53020694618758,41.70963751186334,0 -6.530320478905947,41.70949005472539,0 -6.530406322285791,41.70932117051591,0 -6.530476479818224,41.70897691925597,0 -6.530462616719875,41.70874168533052,0 -6.530339879018562,41.70840490817834,0 -6.530123238655414,41.70809700093515,0 -6.530012470969052,41.70790714599964,0 -6.529899682073619,41.70755390786209,0 -6.52980758116286,41.70734185741188,0 -6.529725595930937,41.70723608557694,0 -6.529492899409234,41.70719106987594,0 -6.529310458384558,41.70714330123261,0 -6.529180535552305,41.70707475657915,0 -6.529079548880859,41.70699717283053,0 -6.528783516821014,41.70646613436352,0 -6.528648017159034,41.70613192819045,0 -6.528653392796259,41.70595855608018,0 -6.528573051015081,41.70577640500813,0 -6.528327219360528,41.70560469993684,0 -6.52810552161032,41.70537580997842,0 -6.527986631257478,41.70519139433076,0 -6.5279914719682,41.70502380198943,0 -6.528043172251595,41.70446483474485,0 -6.528036206789567,41.70426785609495,0 -6.527971315163235,41.70413393775245,0 -6.527841929893916,41.70402981879534,0 -6.527693391211372,41.70392977186501,0 -6.527010294068751,41.70317818388249,0 -6.526591332737503,41.70289352653857,0 -6.526491161071142,41.70280495180418,0 -6.526514900910456,41.7024480976452,0 -6.526456757414547,41.70185068240901,0 -6.526494166916184,41.7016725977335,0 -6.526655190955888,41.70149850408095,0 -6.527027842740107,41.7012628040297,0 -6.52738274726004,41.70122368443168,0 -6.52757079644915,41.70114973662949,0 -6.527808080845652,41.70094521680642,0 -6.528752985339961,41.70007433136777,0 -6.528771262981451,41.69995418223396,0 -6.528774771249298,41.6999510148943,0 -6.528725749544112,41.69986743637575,0 -6.528967954631049,41.69955822512321,0 -6.529068714497889,41.69939720203502,0 -6.529091502594008,41.69922745065235,0 -6.529279439967103,41.69879128393973,0 -6.529613728103415,41.69822762400744,0 -6.529841129631393,41.69796660926866,0 -6.530204263091955,41.69769180714535,0 -6.530664603090805,41.69738088970146,0 -6.5308434308944,41.69722012832219,0 -6.531012123620537,41.69698815380217,0 -6.531074257758323,41.69682503436307,0 -6.53108844958107,41.69658930679651,0 -6.531102219456999,41.69631884286962,0 -6.531155065154577,41.69604703294275,0 -6.53133848311257,41.69571887057732,0 -6.531475195793375,41.69554917192264,0 -6.531597822735725,41.69544044122849,0 -6.531721502678653,41.69528885086935,0 -6.531917658289517,41.6949505022352,0 -6.5320718376825,41.6946596910819,0 -6.532189323202243,41.69427785401488,0 -6.532248686397262,41.69403392623597,0 -6.532244800731802,41.69389397828039,0 -6.532197275345406,41.69378860862923,0 -6.532128813815131,41.69357585609868,0 -6.532016049611855,41.69334395935152,0 -6.531786608163865,41.69304603457794,0 -6.531647270278965,41.69284288676734,0 -6.531608887269394,41.69262052660914,0 -6.531624609242478,41.69244205185778,0 -6.531731691726668,41.69229248553862,0 -6.53188109065039,41.69215198539713,0 -6.531991041010836,41.69200014595216,0 -6.532043971179665,41.69182396050775,0 -6.532035406199379,41.69153769592773,0 -6.531979837660039,41.69124576508556,0 -6.531914561623244,41.69093371841257,0 -6.531930956028257,41.69069124679094,0 -6.53206957279794,41.69044230176233,0 -6.532236690002894,41.6902097388953,0 -6.532502911589839,41.68984599064505,0 -6.53307118589863,41.68931769127559,0 -6.534111811981173,41.68852046720338,0 -6.534472071571774,41.68827966600095,0 -6.534738979608296,41.68814789791743,0 -6.534945034416902,41.6879816162998,0 -6.535172224305454,41.68774070786268,0 -6.53531840022703,41.68750406464861,0 -6.535498490366622,41.68711440982243,0 -6.535540052328174,41.68683937451559,0 -6.535432815406791,41.68640439972996,0 -6.535366155082141,41.68624556044869,0 -6.535048961805776,41.68546724087533,0 -6.534929008026326,41.68501411300795,0 -6.53481617830611,41.68469096123376,0 -6.534726673608466,41.68452979103381,0 -6.534562297025492,41.68430643349469,0 -6.534380644666666,41.68417396979853,0 -6.534159190999072,41.6841112870258,0 -6.533862076260521,41.68413750365295,0 -6.533430078298448,41.68419239587954,0 -6.533083384443793,41.68416485638522,0 -6.532807080630923,41.68416255274268,0 -6.532536488283356,41.68419635020653,0 -6.532318678390223,41.68431716920768,0 -6.532038407095911,41.68447612411799,0 -6.531839679944915,41.68458870373726,0 -6.531699471017177,41.68473770387536,0 -6.531626023411859,41.68524763700948,0 -6.531305596338984,41.68589871901404,0 -6.531052639513968,41.68639356606192,0 -6.530938975486757,41.68646101410776,0 -6.530688659737639,41.68656219011047,0 -6.530397214200336,41.68670227693822,0 -6.530176172248943,41.68678401799784,0 -6.529909020321043,41.68684892311133,0 -6.529612899781155,41.68692659942757,0 -6.529500829268654,41.68700142365611,0 -6.529475584737079,41.68715707111188,0 -6.529404167021088,41.68721768497763,0 -6.529270929749663,41.68719216112712,0 -6.52922837137185,41.68702224032923,0 -6.529198632183528,41.68682805105432,0 -6.529094960753987,41.6865564709184,0 -6.529068017331764,41.68644185863135,0 -6.529132689538434,41.68630977302833,0 -6.529340958571124,41.68606918573519,0 -6.529598811317019,41.68582045854933,0 -6.529615435592825,41.68565719636682,0 -6.529626572472793,41.68547730513473,0 -6.529560325398447,41.68525554194468,0 -6.529477344024734,41.68511748825295,0 -6.529254215192664,41.68481974578315,0 -6.529075731802546,41.68452590621429,0 -6.529014727293262,41.68435277471766,0 -6.52903669214369,41.68402997085129,0 -6.529084363744907,41.68354272390671,0 -6.529160179591647,41.68331675964868,0 -6.529234746442602,41.68315203955995,0 -6.529461787430072,41.68286643574074,0 -6.529532198055542,41.68276177281634,0 -6.529567160375901,41.68264015006383,0 -6.529532073487456,41.68254085611161,0 -6.52940935770613,41.68246869823275,0 -6.52923547231903,41.68247115916161,0 -6.528956945661343,41.68252832034285,0 -6.528409160647204,41.68270947472342,0 -6.527938674381817,41.68283201975356,0 -6.527463772419062,41.68296476307035,0 -6.52708181383516,41.68311455673599,0 -6.526817090496681,41.68327919625006,0 -6.526632643760626,41.68350348299165,0 -6.52644918235323,41.68367744210608,0 -6.526271905746206,41.68376380162515,0 -6.526069577613159,41.68377752129864,0 -6.525847338844261,41.68372844285951,0 -6.525585444600829,41.68360570420269,0 -6.525086482458286,41.68340565989249,0 -6.524827385657411,41.68333763183067,0 -6.524602666191866,41.68330790724663,0 -6.524500404711552,41.68324355405466,0 -6.524236305368677,41.68280588442427,0 -6.524131320187799,41.6825507990631,0 -6.524017261399225,41.68224218412312,0 -6.523844701636945,41.68201800549685,0 -6.523606837528155,41.68176573058075,0 -6.523394266948746,41.681535240962,0 -6.523214350530213,41.68145476908119,0 -6.522991094878168,41.68137631459461,0 -6.522778613622947,41.68127943841233,0 -6.52248320873041,41.68108224354399,0 -6.522193081588728,41.68085520010479,0 -6.52188285295031,41.68061171062545,0 -6.521703834452515,41.68049693296783,0 -6.52151409949408,41.6804222095555,0 -6.52130082415567,41.68040429180835,0 -6.520888108705415,41.6804332980851,0 -6.520740853613195,41.6804137013812,0 -6.520307905575015,41.68025994908084,0 -6.519620920970402,41.68005586293732,0 -6.519121463384462,41.67987820043229,0 -6.518716792051469,41.67977212319995,0 -6.518535342737176,41.67975997726524,0 -6.518223437251356,41.67980192366844,0 -6.517911881414037,41.67992208712422,0 -6.517584792032427,41.68009486153593,0 -6.517236152183116,41.68035471921131,0 -6.516866972535085,41.68072090203617,0 -6.516700833166123,41.68093450060383,0 -6.516539196830716,41.68122635164459,0 -6.516277884071765,41.68164378994926,0 -6.516145681454971,41.68190058211498,0 -6.516107722863631,41.68203473133305,0 -6.516023564890671,41.68208657098141,0 -6.515917590746851,41.68205532219499,0 -6.515765642684897,41.68184752626359,0 -6.515346386407343,41.68122809532789,0 -6.515116984429598,41.68100098448598,0 -6.514904462507668,41.68088948188139,0 -6.514630710043231,41.68080880129816,0 -6.514258903751078,41.68076212434409,0 -6.513871519376908,41.68077168730719,0 -6.513607621357841,41.68084232908598,0 -6.51330877561432,41.6809326140456,0 -6.51302322299419,41.68111770229506,0 -6.512800524647366,41.681440271396,0 -6.512617977544633,41.6816103698097,0 -6.512409783067085,41.68168571007968,0 -6.512272645660104,41.68162425195602,0 -6.512198077929514,41.68140246192249,0 -6.512088261385516,41.6811749559561,0 -6.511908077486864,41.68103138609505,0 -6.511697364917652,41.68093546910171,0 -6.51143637324159,41.68092985922633,0 -6.511183259587305,41.68101452655048,0 -6.510584556060129,41.68131234262243,0 -6.510291001690307,41.68145552942127,0 -6.510042399751982,41.68147164304115,0 -6.509789869228879,41.68138332423973,0 -6.509722494950703,41.68127794617805,0 -6.509758262635277,41.68097746310922,0 -6.509701196145503,41.68053007348392,0 -6.509544949349762,41.68029137889659,0 -6.509313749643921,41.68023022676025,0 -6.508997985365847,41.68025100866384,0 -6.508770527483158,41.68016328335738,0 -6.508520533042409,41.6798618928491,0 -6.508152567232576,41.67945996527861,0 -6.507906137439425,41.67927552747076,0 -6.507898920710171,41.6792679246519,0 -6.507695515321249,41.67914615904788,0 -6.507538973010295,41.67905787197233,0 -6.507454292320045,41.67885478625264,0 -6.507347002161088,41.67863782563676,0 -6.507185101030746,41.67846899253139,0 -6.506773333781898,41.67829657747357,0 -6.506223844093877,41.67811418701802,0 -6.505772494748938,41.67791682330103,0 -6.505290769907671,41.67773314733842,0 -6.504909701414721,41.67753665085477,0 -6.504226748849719,41.67719168898391,0 -6.503475447566673,41.67700005966811,0 -6.503020589019855,41.67696112835089,0 -6.502828658655204,41.67701409747762,0 -6.502581865941819,41.6769966689441,0 -6.502341332758918,41.67682775159511,0 -6.501824154729335,41.67659405778439,0 -6.501464603166433,41.67643090700813,0 -6.501072322088771,41.67628282603283,0 -6.500569118203961,41.67616025271213,0 -6.500116025669129,41.67609161393492,0 -6.499900176997303,41.67604364272429,0 -6.499567062184499,41.67591832885218,0 -6.499119276886688,41.67583362539723,0 -6.498755624989943,41.67583187192891,0 -6.498229775610762,41.67585301732319,0 -6.49769676126693,41.67588829471359,0 -6.497190363144076,41.67590700228295,0 -6.496599095305625,41.6760044349873,0 -6.496620592732424,41.67607172965769,0 -6.496817302691875,41.67608106322654,0 -6.49701225016475,41.67607557023511,0 -6.497673222827263,41.67608109631299,0 -6.498191742583165,41.67615293261605,0 -6.498737823148161,41.67624768104976,0 -6.49922044295553,41.6764012723304,0 -6.499807899314498,41.67665101382766,0 -6.500170595009395,41.6768315774786,0 -6.500647208192306,41.67718253557994,0 -6.501014047638206,41.67748249064152,0 -6.501248681193031,41.6777596800681,0 -6.501373689824639,41.67798229000155,0 -6.501554428655579,41.67813058979308,0 -6.501768381029297,41.67822327801034,0 -6.502080214305738,41.6784595102183,0 -6.502622132889825,41.67893211164255,0 -6.5030146377731,41.67923960815259,0 -6.503489189524535,41.679588122748,0 -6.503776547989528,41.67981995965153,0 -6.504081836566097,41.68014878408436,0 -6.504448310117063,41.68067698857351,0 -6.504671633836479,41.68099350180521,0 -6.504749973810807,41.68116311295072,0 -6.504736490056605,41.68130809948642,0 -6.504629545610645,41.68139860595353,0 -6.504281179163196,41.68149810345899,0 -6.503902306482777,41.68159037535238,0 -6.503496404776881,41.68176689346853,0 -6.503170028427064,41.68195950404303,0 -6.502882906118906,41.68216769725678,0 -6.502803038811258,41.68233393584779,0 -6.502812742743966,41.68256051541678,0 -6.503169613124841,41.68303749543409,0 -6.503694693649422,41.68345546124134,0 -6.503949309687496,41.68385069043046,0 -6.504015116670638,41.6841664615206,0 -6.503973495373759,41.68438739498784,0 -6.503726698017758,41.68461051074321,0 -6.503409954953781,41.68483944288191,0 -6.503331335565681,41.68499395108504,0 -6.503378657004588,41.68513436033152,0 -6.503619461754458,41.68541434673498,0 -6.503821554202834,41.6856314813387,0 -6.504278162933861,41.68592662843195,0 -6.504648171754782,41.68600242049605,0 -6.505019118230618,41.68617933303888,0 -6.505196103219922,41.68636786576827,0 -6.505234993192614,41.68684138819238,0 -6.505185428986545,41.68708691133835,0 -6.504964397734714,41.68729392480492,0 -6.504712523772027,41.68738879777325,0 -6.504640736591387,41.6874104537901,0 -6.504636723332332,41.68740976067103,0 -6.504558976614838,41.68754227866041,0 -6.504395010817329,41.68772084651714,0 -6.504273002626798,41.68788392691354,0 -6.504101007215974,41.68806664143555,0 -6.504319185082288,41.68815232395006,0 -6.504553357186476,41.68816798597279,0 -6.50472229812909,41.68817909384516,0 -6.504745564267656,41.68824590840139,0 -6.504653050243626,41.68832646224308,0 -6.504545165944061,41.68834963901225,0 -6.504407891325439,41.68837476563878,0 -6.504345861642399,41.6884125379183,0 -6.504351741713538,41.68845490822498,0 -6.504534416649147,41.68850049685383,0 -6.504643257799759,41.68852547324116,0 -6.504894542572629,41.68863213550329,0 -6.505062615839053,41.68869581552891,0 -6.50519168038934,41.68865350912565,0 -6.505328222563228,41.68858125926648,0 -6.50553869637081,41.68854039115491,0 -6.505659535377232,41.68852816109388,0 -6.505815429785304,41.68862159920065,0 -6.506153886096172,41.68894296528642,0 -6.505971343953791,41.68922739450642,0 -6.505802241958224,41.6896603376043,0 -6.5055809880625,41.68997904140936,0 -6.505151469482816,41.69044714966596,0 -6.504769003200702,41.6907555872751,0 -6.503817793598696,41.69122804336398,0 -6.503225193358348,41.69130884893785,0 -6.502777138071175,41.69138610955566,0 -6.5018803377754,41.69136670006473,0 -6.50094341823467,41.69132388238773,0 -6.500714930018683,41.69132596575136,0 -6.500480785038578,41.69136155266398,0 -6.500251049364565,41.69143228254497,0 -6.500017216338682,41.69153960215132,0 -6.499767625978952,41.69161440852283,0 -6.499615320623354,41.69165301524691,0 -6.499420783384147,41.69165736882782,0 -6.499106469487247,41.69168800775152,0 -6.498875382291089,41.69174388128547,0 -6.49864444884762,41.69181999182223,0 -6.498452892177444,41.69191018753965,0 -6.498303070651708,41.69202719403334,0 -6.498229296180277,41.69219546885918,0 -6.498263224849321,41.6924540625295,0 -6.498250834410716,41.69260230979048,0 -6.498157982823967,41.69290656416303,0 -6.497993197441078,41.6934481575901,0 -6.497817157045876,41.69383772697292,0 -6.495991740262057,41.69370519415357,0 -6.495331680676529,41.69409086183355,0 -6.494787685812823,41.69444027321425,0 -6.494266592932277,41.69459450204949,0 -6.493428399126944,41.69480386995763,0 -6.492997271185067,41.69523496289161,0 -6.492503072938032,41.69562158444244,0 -6.491886455665369,41.69598186270578,0 -6.491447337873801,41.69632448926513,0 -6.490955991746217,41.69669904220505,0 -6.490535828017547,41.69681187635526,0 -6.489815549885979,41.69691532084344,0 -6.489426699424438,41.69706142393688,0 -6.488483949125571,41.69745919798524,0 -6.488250171831998,41.69767077647605,0 -6.487924709520497,41.69801372798928,0 -6.487939738808962,41.6982813417057,0 -6.487248968464306,41.69865212029718,0 -6.486743454305733,41.69907406722525,0 -6.486258312648037,41.69942704279697,0 -6.485926683416661,41.69953715044113,0 -6.485249048366688,41.70056522824417,0 -6.484603309848861,41.7014013733677,0 -6.484253159829762,41.70192641569746,0 -6.484206579278795,41.7021292733643,0 -6.4840338410435,41.70244857125059,0 -6.483600631388002,41.703402496934,0 -6.483207025289577,41.70385772041507,0 -6.482879830207688,41.70409112456052,0 -6.481727816643815,41.70536028096834,0 -6.480296925083586,41.70628528157695,0 -6.480420170970803,41.70635670573267,0 -6.48080279442751,41.70634939876973,0 -6.482031666343207,41.70657268878429,0 -6.482649608921774,41.70664623561186,0 -6.483956880521005,41.70675878678537,0 -6.485162258091152,41.70677651808317,0 -6.485985336855537,41.70678894929402,0 -6.486515104183752,41.7069267868648,0 -6.486999503021114,41.7069828869007,0 -6.487654791922045,41.70694032406055,0 -6.489558893839104,41.70663384024243,0 -6.490926728509123,41.70640562515447,0 -6.492384369658765,41.70631490052298,0 -6.49318339899768,41.70617235061101,0 -6.494090421526214,41.70601586403396,0 -6.494438123434519,41.70597358303964,0 -6.494905136129385,41.70598121061506,0 -6.49516944025585,41.7059514066607,0 -6.495537756456459,41.70583375758608,0 -6.495776633587055,41.70575339447684,0 -6.496102863465576,41.70570085757058,0 -6.496677407144179,41.70569369470346,0 -6.496915517641898,41.70566263198164,0 -6.497131569482326,41.70549464770836,0 -6.497394091034902,41.70531891290683,0 -6.497679160266952,41.70516705957133,0 -6.498513732425394,41.70486785365889,0 -6.498937166211518,41.70468297634759,0 -6.499189219201558,41.70464188791656,0 -6.499551946535547,41.70464909366874,0 -6.4997354498749,41.70462578492671,0 -6.499843174734213,41.70451841625275,0 -6.499979829199707,41.70437293059651,0 -6.500075905597234,41.70423588228717,0 -6.500311025258615,41.70407914762491,0 -6.500595965801356,41.70396358537947,0 -6.500977919776494,41.70388204253037,0 -6.501335811333554,41.70383858830552,0 -6.501947558778585,41.70371697798029,0 -6.502308438774172,41.70368464677632,0 -6.503002139356728,41.70373103134553,0 -6.503539725321632,41.70382266418814,0 -6.503895523548203,41.70385294131932,0 -6.50409797685745,41.70383579605205,0 -6.504296982344919,41.7037766486354,0 -6.504372336638494,41.70380493879085,0 -6.504428959932098,41.70385324403591,0 -6.504473772784667,41.70405360579711,0 -6.504618497407183,41.70426955470383,0 -6.504717185006755,41.70458700512379,0 -6.504839399657935,41.70498753485816,0 -6.504947806816165,41.70527027994501,0 -6.505074259181933,41.70561743811594,0 -6.505042164097463,41.70591564455437,0 -6.504753151495573,41.70630042616156,0 -6.504377608232106,41.70669350959461,0 -6.504032886597698,41.70698191546406,0 -6.503677905364061,41.70710326563734,0 -6.503472585173022,41.70716431387319,0 -6.503229937964825,41.70728907503035,0 -6.502815334020308,41.70740433677821,0 -6.502439728022925,41.70748142570834,0 -6.501860195424134,41.70762088068653,0 -6.501365393507444,41.70768159691246,0 -6.501030591191183,41.7076788110686,0 -6.50058951945356,41.7076042133758,0 -6.500230306825808,41.70755423914896,0 -6.499932286695753,41.70752834720618,0 -6.499554757526247,41.70754183008517,0 -6.499266888406465,41.70755710268539,0 -6.499217916845649,41.70761943977185,0 -6.499274002552897,41.70767408313534,0 -6.500790728650983,41.70825535872949,0 -6.502467293315762,41.70886256787316,0 -6.502783966017823,41.70892939873637,0 -6.502768442868487,41.70897479494445,0 -6.502445394566049,41.70897971086185,0 -6.502137646030813,41.70896625067044,0 -6.501873838048034,41.70892162497955,0 -6.501597295608907,41.70882690111243,0 -6.501292263875664,41.70877506525667,0 -6.500913563464074,41.70873159118381,0 -6.50052061375825,41.70868176273974,0 -6.500036410881257,41.70859422354449,0 -6.499568978235577,41.70852327546178,0 -6.499132242215389,41.70842317960565,0 -6.497916621195543,41.70817296938955,0 -6.497855521815628,41.70821038484888,0 -6.497749679992502,41.70841342753288,0 -6.497738063100313,41.70860213901841,0 -6.497781855057464,41.70876877048128,0 -6.497745212503573,41.70890878475185,0 -6.497601368037984,41.70911275053406,0 -6.497447875732308,41.70926127651619,0 -6.497314312013874,41.70935317147977,0 -6.497206610502923,41.70950950857209,0 -6.497188337023355,41.70969536777783,0 -6.497107187850444,41.70979915130148,0 -6.496965371142766,41.70998278103052,0 -6.496775208606358,41.71018566091609,0 -6.496632115496697,41.71050730035029,0 -6.496377734529516,41.71067542474426,0 -6.496093537852664,41.71103554315701,0 -6.495784785604216,41.71126088269262,0 -6.495410397821231,41.71149275452665,0 -6.49510867446676,41.71175365884817,0 -6.494793043176435,41.71209068826474,0 -6.494525656080521,41.71230902465982,0 -6.494204082932931,41.71260552237298,0 -6.494159431443914,41.71267894921413,0 -6.494064626480204,41.71269939673081,0 -6.493843812747936,41.71268903053531,0 -6.493497340983238,41.71258422020513,0 -6.493152573737605,41.7124473742234,0 -6.492726907566095,41.71228722940207,0 -6.492388879104113,41.71219267935519,0 -6.492176638291598,41.71213014178854,0 -6.491934430713384,41.71209623001214,0 -6.491692120307795,41.7120040254121,0 -6.490854108148109,41.71162188669526,0 -6.490122707889761,41.71132297383171,0 -6.489732560252564,41.71120113127263,0 -6.489388491945488,41.71114639267472,0 -6.489027832795154,41.71114193034229,0 -6.488555458881988,41.71117645053391,0 -6.488151976980069,41.71119391866299,0 -6.487748021517319,41.71119514427226,0 -6.48760751407155,41.71122855577479,0 -6.487287774781486,41.71083738755572,0 -6.487019760717684,41.71072015180169,0 -6.486801795119104,41.71058043277228,0 -6.486568062272027,41.7105023276776,0 -6.486447362402098,41.71048148550673,0 -6.486259253334516,41.71025812563039,0 -6.486150534256165,41.7101774308175,0 -6.4859999059722,41.71013179664806,0 -6.485842761171219,41.71018494140791,0 -6.485644406018225,41.71020381880203,0 -6.484841452828547,41.71007350104696,0 -6.483829766680271,41.70992004936892,0 -6.483176121129386,41.7097988767317,0 -6.482721300457452,41.70970709661216,0 -6.482493278156411,41.70973707304347,0 -6.482164999729719,41.70977522394236,0 -6.481942833701604,41.70976493323074,0 -6.481656413996041,41.7097414980127,0 -6.481340843534809,41.70973065428601,0 -6.481067735229008,41.70978633864152,0 -6.48096071657447,41.70985796277851,0 -6.480605538583611,41.70990738263259,0 -6.480310660848092,41.70986813607204,0 -6.480114478314613,41.70981133660241,0 -6.479753493400652,41.70988443790414,0 -6.479378009976689,41.71043798400034,0 -6.479096718806313,41.71066449223043,0 -6.478839393020603,41.71086116761721,0 -6.478733470034122,41.71102446995302,0 -6.478622407583655,41.7111176313503,0 -6.478026911515049,41.71139553183698,0 -6.478029626263215,41.71149301275429,0 -6.477916121939265,41.71181545850215,0 -6.477677982140745,41.71222863460782,0 -6.477570711099795,41.71234004032186,0 -6.477410268534132,41.71243110195972,0 -6.477131052963108,41.71247972474394,0 -6.476865794693229,41.7124902571203,0 -6.476736412555395,41.71253314541362,0 -6.476723714692454,41.712642183928,0 -6.476797364217193,41.71282814400031,0 -6.476944298796306,41.71314875176154,0 -6.476957960006081,41.7133624950462,0 -6.476926780327471,41.71354222285683,0 -6.476842603893617,41.71374279270556,0 -6.476704307028099,41.71395584143588,0 -6.476479544490196,41.7142345812033,0 -6.476394389586149,41.71441288437491,0 -6.476257245818177,41.71459004894543,0 -6.47619254562986,41.71467038638776,0 -6.476245249663457,41.71474174856138,0 -6.476588091205543,41.71471033938605,0 -6.477006950480647,41.71472495062584,0 -6.477244928315865,41.71475288790857,0 -6.477427444295455,41.71485061667574,0 -6.477647822796303,41.71494437017525,0 -6.47790568649095,41.71500578385725,0 -6.478419384528418,41.71516189410055,0 -6.478745124828441,41.71524429824704,0 -6.478952416019753,41.71535074300814,0 -6.479162250712954,41.71544285189058,0 -6.479328727124671,41.71562292546196,0 -6.479534551821187,41.71581496812856,0 -6.480128216634325,41.71619004774245,0 -6.481199426553603,41.71684237926474,0 -6.481679895980478,41.7171096653073,0 -6.482136205137408,41.71726398762807,0 -6.482468924240297,41.71740559663358,0 -6.482591963993802,41.71755510744347,0 -6.48260554065282,41.71775779366545,0 -6.482606913230571,41.71801164490829,0 -6.482606050555699,41.7182829550318,0 -6.482732973264352,41.71869684084491,0 -6.482814943073073,41.71910590544521,0 -6.482819226327624,41.71955544799791,0 -6.482943554060404,41.71990607738761,0 -6.483029756185561,41.72011686646442,0 -6.482999338163939,41.72021193090286,0 -6.482880285194566,41.72029376503856,0 -6.482730913776083,41.72036026295541,0 -6.48273107428273,41.72046181161305,0 -6.482821042325137,41.72055211873433,0 -6.482945119685942,41.72063723473618,0 -6.483085811748993,41.72078757159676,0 -6.483271174399831,41.72104623045509,0 -6.483505488335855,41.72142010197364,0 -6.483614242186271,41.72160363997932,0 -6.483615145362283,41.72170671772451,0 -6.483449814914481,41.72191447325744,0 -6.483343773216498,41.72207395332264,0 -6.483209673612188,41.72224733877305,0 -6.483036181172044,41.72258164413572,0 -6.482953381804482,41.72273108577736,0 -6.482853605807667,41.722861609428,0 -6.482836905461901,41.72298374111433,0 -6.482817925239457,41.72313558988876,0 -6.482831625225113,41.72321171566421,0 -6.48291591902934,41.72320989961624,0 -6.483015964273609,41.72317895813435,0 -6.483262720481255,41.72306068928049,0 -6.483531165532034,41.72296357184325,0 -6.48376395506994,41.72295133729085,0 -6.483814108529975,41.72302818194542,0 -6.483819278867603,41.72313982619892,0 -6.483589855355165,41.72348429090409,0 -6.483459153876686,41.72371545883711,0 -6.483420250924476,41.72396629034687,0 -6.483466084608494,41.72428815472205,0 -6.48362273160198,41.72461680801757,0 -6.483918692203906,41.72490846783702,0 -6.483913310706159,41.72499685454687,0 -6.483756861020772,41.72515225074186,0 -6.483744691203658,41.72523987582273,0 -6.483816369699166,41.72534558466094,0 -6.484038861682754,41.72549966137374,0 -6.484193931665898,41.72561667155429,0 -6.484333870567145,41.72582076606976,0 -6.484519403947724,41.72602511600042,0 -6.484867695250562,41.72630866435909,0 -6.485543664698828,41.72686090604172,0 -6.485858346902963,41.72714516203321,0 -6.486187447298498,41.72748980760765,0 -6.486358173516822,41.72776816967033,0 -6.48647650716555,41.72807015934712,0 -6.486553804416031,41.72833509029735,0 -6.486576237143336,41.72846014138975,0 -6.486568298393729,41.72853969816686,0 -6.486484980053952,41.72863908090603,0 -6.486323072161408,41.72881412305637,0 -6.486236882854238,41.72895990421541,0 -6.486142179489567,41.72918082609423,0 -6.485953667484141,41.72941654015318,0 -6.485865523816116,41.72955731740628,0 -6.485832020192571,41.72975015600714,0 -6.485827079383759,41.72987267358085,0 -6.485878189912588,41.73008660784028,0 -6.485992486600093,41.73028163016162,0 -6.486314662678058,41.73079301498957,0 -6.486777151425538,41.73150212516692,0 -6.488747247483878,41.73477557587798,0 -6.488758812357787,41.73483926206153,0 -6.488711649425807,41.73548201956739,0 -6.488619207370806,41.73619907077583,0 -6.488493015604969,41.73674791899932,0 -6.488281412593246,41.73760121454286,0 -6.488068941872659,41.73834681121997,0 -6.488101890655401,41.73843227514254,0 -6.488203282613021,41.73839421111136,0 -6.488619100308467,41.73819873794506,0 -6.489165377865716,41.73787588544617,0 -6.489640708136271,41.73758892371174,0 -6.489797647278842,41.73750311455827,0 -6.489959876082883,41.73749016963757,0 -6.490087059351569,41.7375183476145,0 -6.490125928839468,41.73753932676137,0 -6.490171715274941,41.7375390292605,0 -6.490571337934444,41.737583699444,0 -6.490683238912568,41.73766016381266,0 -6.491046020176677,41.73791847448906,0 -6.491438422630278,41.73824563182453,0 -6.491692280764561,41.73864578426475,0 -6.491882255077572,41.73888285435805,0 -6.492044668999784,41.73912687171165,0 -6.492195244223433,41.73927272116299,0 -6.49227175906092,41.73943720791154,0 -6.49238989633803,41.73981368146136,0 -6.492446799070746,41.74010872097626,0 -6.492474945135164,41.7404443694989,0 -6.492512334047241,41.74063249267383,0 -6.492606860041254,41.74074758208791,0 -6.49277932964824,41.74090201745337,0 -6.492841420369894,41.74097724869208,0 -6.492962069060052,41.74107919511705,0 -6.49375285197771,41.74155009224465,0 -6.494132540833526,41.74185512721999,0 -6.494473844722717,41.7421717029295,0 -6.494598342726404,41.74235972237586,0 -6.494697345992599,41.74254994216676,0 -6.494770138723681,41.74276545415133,0 -6.494873082624145,41.74298633934215,0 -6.494994528455466,41.74313000506555,0 -6.495214949489681,41.74324071589471,0 -6.495485492126495,41.74330386764312,0 -6.496272995461877,41.74348381744564,0 -6.496751876332895,41.74367945021977,0 -6.496854467734928,41.74379312680279,0 -6.496567591034024,41.74389475342404,0 -6.49609399591855,41.74392992489327,0 -6.495786400568858,41.7439710309307,0 -6.495171879501296,41.74411839953129,0 -6.494805742214287,41.74422042096605,0 -6.494637508930044,41.7444309394613,0 -6.494284506771379,41.74478328878165,0 -6.493866981274364,41.7450196708291,0 -6.493525088921326,41.74516972858596,0 -6.493116319167829,41.7453471876474,0 -6.492367697213661,41.745247246034,0 -6.491951519709752,41.74515205772802,0 -6.491678846335082,41.74512208640417,0 -6.491454459488709,41.74521805935108,0 -6.491231358562976,41.7453496242447,0 -6.491044833516398,41.74537793561822,0 -6.490803777971363,41.74540580476496,0 -6.490624188697181,41.74551766683349,0 -6.490482566855876,41.74560311310559,0 -6.490177477541375,41.74560257169753,0 -6.489813431385024,41.74563585119741,0 -6.489504156211814,41.74570964563227,0 -6.489213610925033,41.74581472767606,0 -6.48892244867816,41.74591817656832,0 -6.488694758589667,41.74600420469076,0 -6.488299025363399,41.7462357769425,0 -6.488023538923039,41.74644169180336,0 -6.487828440845915,41.74649235876908,0 -6.487782845422588,41.74661512181706,0 -6.487541309702024,41.74661235195094,0 -6.487097349963552,41.74662131118429,0 -6.486757581831933,41.74666142348146,0 -6.486521266978716,41.74672159888793,0 -6.486008544296127,41.74682701836566,0 -6.485495610899379,41.7470641583819,0 -6.485091382313595,41.7474223159647,0 -6.484589749840764,41.74783910787271,0 -6.484316490322541,41.74800427096472,0 -6.483904398188095,41.74824373404462,0 -6.48322306195828,41.74847893680762,0 -6.481783848304806,41.74903326546921,0 -6.481451241990626,41.7491934122064,0 -6.480721193003463,41.74969994563086,0 -6.480480871053413,41.74982673098969,0 -6.479745622372294,41.7508428588429,0 -6.479025513101941,41.7518732780385,0 -6.478773547066444,41.75221899739429,0 -6.478460001021147,41.75251505604296,0 -6.477220580854988,41.75385290753513,0
</coordinates>
</LineString>
</Placemark>
</Document>
</kml>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment